/* ==========================================
   MBM Avrupa Kurye - Design System CSS
   Kurumsal Palette: Navy + Gold
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

/* ================================
   CSS Custom Properties (Tokens)
   ================================ */
:root {
  /* Colors */
  --navy-dark:   #0A1628;
  --navy:        #1B3A6B;
  --navy-light:  #2A5298;
  --gold:        #C9A84C;
  --gold-dark:   #9C7F31;
  --gold-light:  #F0D080;
  --gold-pale:   #FBF3DC;
  --white:       #FFFFFF;
  --off-white:   #F8F9FF;
  --bg-section:  #F2F5FA;
  --text-dark:   #1A1A2E;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --border:      #E5E7EB;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(10,22,40,0.10);
  --shadow-lg:   0 10px 40px rgba(10,22,40,0.14);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);

  /* Spacing */
  --container:   1200px;
  --header-h:    80px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: var(--header-h);
}

main {
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Keep media fitted and prevent visual overflow on content sections */
.service-card-image,
.service-detail-hero-image,
.about-real-image,
.blog-card-image {
  overflow: hidden;
}

.service-card-image img,
.service-detail-hero-image img,
.about-real-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-page img,
.about-dynamic-content img,
.service-detail-content img,
article img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-intro-grid > div,
.service-detail-grid > div {
  min-width: 0;
}

/* ================================
   Utility Classes
   ================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--gold-dark); }

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 16px;
}

.text-center .section-title::after { margin-left: auto; margin-right: auto; }

.section-desc {
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #B8952B);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ================================
   Header / Navigation
   ================================ */
 .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header > .container {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text .logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-dropdown { position: relative; }

.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark) !important;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  background: none !important;
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--off-white) !important; color: var(--navy) !important; padding-left: 26px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.header-phone i { font-size: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================
   Mobile Menu
   ================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.1rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }

/* ================================
   Hero Slider
   ================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: min(640px, 80vh);
  background: var(--navy-dark);
  width: 100%;
  max-width: 100vw;
  padding-top: var(--header-h);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  width: 100%;
}

.slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.90) 0%, rgba(27,58,107,0.65) 60%, rgba(10,22,40,0.40) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: min(700px, 100%);
  width: 100%;
  color: var(--white);
}

.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.slide-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.slide-content h1 span { color: var(--gold); }

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
}

.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 10px solid transparent; /* Increase hit area without changing visual size much */
  background-clip: padding-box;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.05); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ================================
   Stats Bar
   ================================ */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ================================
   Service Cards (Image-Based)
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Image area */
.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  background: var(--navy-dark);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-icon-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon-fallback i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.7;
}

/* Icon overlay badge on image */
.service-card-icon-overlay {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.service-card-icon-overlay i {
  font-size: 1.1rem;
  color: var(--navy-dark);
}

.service-card:hover .service-card-icon-overlay {
  background: var(--navy);
}
.service-card:hover .service-card-icon-overlay i {
  color: var(--gold);
}

/* Gold top bar on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }

/* Body */
.service-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* Keep old .service-icon for backward compat */
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27,58,107,0.08), rgba(201,168,76,0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.6rem; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--navy); }
.service-card:hover .service-icon i { color: var(--gold); }

/* ================================
   Service Detail Hero Image
   ================================ */
.service-detail-hero-image {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--navy-dark);
  box-shadow: var(--shadow-lg);
}

.service-detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-hero-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-hero-fallback i {
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.8;
}

.service-detail-hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
}

.service-detail-hero-badge i {
  font-size: 1.6rem;
  color: var(--navy-dark);
}

/* ================================
   About Real Image
   ================================ */
.about-real-image {
  position: relative;
  border-radius: var(--radius-lg);
  height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
}

.about-real-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-real-image img {
  transform: scale(1.03);
}

.about-image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-fallback i {
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ================================
   Why Us Section
   ================================ */
.why-us { background: var(--navy-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.why-item { text-align: center; padding: 32px 24px; }

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(201,168,76,0.12);
  border: 2px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.why-icon i { font-size: 1.8rem; color: var(--gold); }

.why-item:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.why-item:hover .why-icon i { color: var(--navy-dark); }

.why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ================================
   Regions Section
   ================================ */
.regions-section { background: var(--bg-section); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.region-card {
  background: #f6f8fc;
  border-radius: 10px;
  padding: 14px 10px;
  min-height: 72px;
  text-align: center;
  border: 1px solid #dfe5ef;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.region-card span { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.region-card small { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; line-height: 1.3; }

.view-all-wrap { text-align: center; margin-top: 40px; }

/* ================================
   CTA Section
   ================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.cta-phone .phone-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.cta-phone .phone-icon i { color: var(--navy-dark); font-size: 1.3rem; }
.cta-phone .phone-number { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.cta-phone .phone-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ================================
   Page Hero (Inner Pages)
   ================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.7rem; }

/* ================================
   Blog Cards
   ================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-card-image {
  height: 220px;
  background: var(--bg-section);
  overflow: hidden;
}

.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 28px; }

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

/* ================================
   Contact
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item-text strong { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.contact-item-text span { color: var(--text-muted); font-size: 0.9rem; }

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,58,107,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* ================================
   Map
   ================================ */
.map-section { margin-top: 60px; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-md);
}

/* ================================
   Footer
   ================================ */
.site-footer { background: var(--navy-dark); }

.footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img { height: 48px; }

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}

.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-bottom a { color: var(--gold-light); font-weight: 600; }

/* ================================
   About Page
   ================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .badge-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mv-card.navy { background: var(--navy); border: none; }
.mv-card.navy h3, .mv-card.navy p { color: var(--white); }
.mv-card.navy p { opacity: 0.8; }

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--navy));
}

.mv-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h3 i { color: var(--gold); }
.mv-card p { color: var(--text-muted); line-height: 1.8; }

/* ================================
   Service Detail
   ================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.service-detail-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

.service-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-services-list a:last-child { border-bottom: none; }
.sidebar-services-list a:hover { color: var(--navy); padding-left: 4px; }
.sidebar-services-list a i { color: var(--gold); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
}

.sidebar-cta h4 { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sidebar-cta p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; }

/* ================================
   Pagination
   ================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.pagination .page-link:hover, .pagination .active .page-link {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ================================
   Alerts
   ================================ */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }

/* ================================
   Corporate / Generic Content Page
   ================================ */
.content-page {
  max-width: 860px;
  margin: 0 auto;
}

.content-page h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 32px 0 12px;
}

.content-page p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.content-page ul { padding-left: 24px; list-style: disc; color: var(--text-muted); margin-bottom: 16px; }
.content-page ul li { margin-bottom: 8px; }

/* ==================================================
   RESPONSIVE BREAKPOINTS
   ================================================== */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }

  /* Header nav condensed */
  .main-nav { gap: 0; }
  .main-nav a { padding: 8px 10px; font-size: 0.85rem; }
  .header-phone { font-size: 0.9rem; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  /* Container */
  .container { padding: 0 16px; }

  /* Header */
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .hamburger { display: flex; }

  /* Hero Slider */
  .hero-slider { height: min(520px, 85vh); }
  .slide-content { padding: 0; }
  .slide-content h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .slide-content p { display: none; }
  .slide-actions { gap: 10px; }
  .slide-actions .btn { padding: 12px 20px; font-size: 0.85rem; }
  .slider-arrow { display: flex; transform: translateY(-50%) scale(0.8); }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .slider-controls { bottom: 20px; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 16px 12px; }
  .stat-number { font-size: 1.8rem; }

  /* Sections */
  .section-py { padding: 60px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; }

  /* Why Grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-item { padding: 24px 16px; }

  /* Regions */
  .regions-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; gap: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-phone .phone-number { font-size: 1.2rem; }

  /* Page Hero */
  .page-hero { padding: 52px 0; }
  .page-hero::before { height: 40px; }
  .page-hero-content h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; gap: 6px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .map-section iframe { height: 280px; }

  /* About */
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-badge { bottom: -12px; right: -8px; padding: 14px 18px; }
  .about-image-badge .badge-number { font-size: 1.8rem; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 28px 24px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-image { height: 180px; }

  /* Service Detail */
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-sidebar { position: static; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { padding: 50px 0 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Section title */
  .section-title::after { width: 36px; }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
  :root { --header-h: 60px; }

  .container { padding: 0 14px; }

  /* Logo */
  .logo-text .logo-name { font-size: 0.95rem; }
  .logo-text .logo-sub { display: none; }
  .site-logo img { height: 40px; }

  /* Hero */
  .hero-slider { height: 480px; }
  .slide-content h1 { font-size: clamp(1.25rem, 6.5vw, 1.7rem); }
  .slide-actions { flex-direction: column; align-items: flex-start; gap: 8px; }
  .slide-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 14px 8px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }

  /* Section py */
  .section-py { padding: 48px 0; }
  .section-py-sm { padding: 36px 0; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Regions */
  .regions-grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact form */
  .contact-form { padding: 20px 16px; }
  .form-group input, .form-group textarea { padding: 12px 14px; }

  /* Buttons */
  .btn { padding: 12px 20px; font-size: 0.875rem; }

  /* Block mobile CTA */
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Blog */
  .blog-card-image { height: 160px; }
  .blog-card-body { padding: 20px 16px; }

  /* Service card */
  .service-card { padding: 24px 16px; }
  .service-icon { width: 52px; height: 52px; }
  .service-icon i { font-size: 1.3rem; }

  /* Sidebar */
  .sidebar-card { padding: 20px; }

  /* Footer */
  .footer-main { padding: 40px 0 24px; }
  .footer-desc { max-width: 100%; }

  /* Misc */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .section-desc { font-size: 0.95rem; }
}

/* ================================
   Floating Contact Buttons
   ================================ */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}
.floating-btn.whatsapp { background-color: #25D366; }
.floating-btn.phone { background-color: #a91414; }
.floating-btn:hover { transform: translateY(-5px) scale(1.05); color: #fff; }

.floating-btn::before, .floating-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
}
.floating-btn.whatsapp::before, .floating-btn.whatsapp::after { border-color: rgba(37, 211, 102, 0.8); }
.floating-btn.phone::before, .floating-btn.phone::after { border-color: rgba(27, 58, 107, 0.8); }
.floating-btn::after { animation-delay: 1s; }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; border-width: 4px; }
  100% { transform: scale(1.6); opacity: 0; border-width: 0px; }
}
@media (max-width: 768px) {
  .floating-contact { bottom: 20px; right: 20px; gap: 10px; }
  .floating-btn { width: 50px; height: 50px; font-size: 24px; }
}









