/* ============================================================
   K.K. SINHA MULTILEVEL SERVICES — Main Stylesheet
   Color Palette:
     Primary Blue : #1a3a6b
     Gold Accent  : #c9a227
     Light Blue   : #2563eb
     White        : #ffffff
     Light Gray   : #f7f8fc
     Dark Text    : #1e2d3d
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1e2d3d;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.topbar {
  background: #1a3a6b;
  color: #ffffff;
  font-size: 0.78rem;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-right a {
  color: #e0e8f5;
  transition: color 0.3s;
}
.topbar-right a:hover { color: #c9a227; }
.topbar-right i { margin-right: 4px; }
.wa-btn {
  background: #25d366;
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.wa-btn:hover { background: #1ebe57 !important; }

/* ===== NAVBAR ===== */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e8ecf5;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(26,58,107,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(26,58,107,0.15); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a3a6b;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.75rem;
  font-weight: 800;
  color: #c9a227;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu-logo {
  display: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e2d3d;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #1a3a6b; background: #f0f4ff; }
.nav-link i { font-size: 0.65rem; margin-left: 3px; }

/* Dropdown & Mega Menu */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e8ecf5;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(26,58,107,0.15);
  min-width: 230px;
  padding: 8px;
  z-index: 9999;
  animation: fadeDown 0.25s ease;
}

/* Invisible bridge to keep hover active across the gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
@media (min-width: 1281px) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { display: block; }
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.83rem;
  color: #1e2d3d;
  border-radius: 6px;
  transition: all 0.2s;
}
.dropdown-menu li a:hover { background: #f0f4ff; color: #1a3a6b; padding-left: 18px; }

/* Nested Dropdown Sub-menus (Large Screens) */
@media (min-width: 901px) {
  .dropdown-menu.nesting-menu {
    overflow: visible; /* Allows flyouts to show to the right */
  }
  .submenu {
    position: relative;
  }
  .submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    font-size: 0.83rem;
    color: #1e2d3d;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .submenu-toggle i {
    font-size: 0.65rem;
    color: #8a9ab5;
    transition: transform 0.2s;
  }
  .submenu:hover > .submenu-toggle,
  .submenu-toggle:hover {
    background: #f0f4ff;
    color: #1a3a6b;
  }
  .submenu:hover > .submenu-toggle i {
    color: #1a3a6b;
  }
  
  /* Flyout List positioning */
  .submenu .submenu-list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    border: 1px solid #e8ecf5;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(26,58,107,0.15);
    min-width: 240px;
    padding: 8px;
    z-index: 10000;
    margin-left: 2px;
    animation: fadeRight 0.2s ease;
  }
  
  /* Invisible bridge for nested submenus to prevent losing hover when moving diagonally */
  .submenu-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 15px;
    height: 100%;
    background: transparent;
  }
  
  .submenu:hover .submenu-list,
  .submenu:focus-within .submenu-list {
    display: block;
  }
  
  .submenu-list li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.82rem;
    color: #5a6a82;
    border-radius: 6px;
    transition: all 0.2s;
  }
  .submenu-list li a:hover {
    background: #f0f4ff;
    color: #c9a227;
    padding-left: 18px;
  }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: 20px;
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.45);
  background: linear-gradient(135deg, #2563eb, #1a3a6b);
  color: #ffffff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1a3a6b;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d2247 0%, #1a3a6b 50%, #1e4d8c 100%);
  min-height: calc(100vh - 110px); /* Covers full page minus header */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,39,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(37,99,235,0.2) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px; /* Increased vertical padding */
  max-width: 1200px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.2);
  color: #c9a227;
  border: 1px solid rgba(201,162,39,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: #c9a227;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #b8cce8;
  max-width: 100%; /* Spans full width of the container */
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  color: #ffffff;
}
.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 500;
}
.hero-features-list i {
  color: #c9a227;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a227, #e8bc2a);
  color: #1a3a6b;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201,162,39,0.55);
  background: linear-gradient(135deg, #e8bc2a, #c9a227);
  color: #1a3a6b;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.55);
  background: #1ebe57;
  color: #ffffff;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space items evenly */
  background: #112240; /* Solid dark navy to match cards */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 40px;
  width: 100%; /* Stretch full width to align with the grid */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 16px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #c9a227;
  display: inline;
}
.stat-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: #c9a227;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #b8cce8;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* Hidden as the Hero is now content-compact and doesn't cover the full screen */
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* Hero Services Grid (Full Cards) */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 36px;
  margin-bottom: 48px;
}
.hero-service-card {
  background: #112240; /* Solid dark navy background to stand out from gradient */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  min-height: 160px; /* Enforces exact height boxes */
}
.hero-service-card:hover {
  background: #172a45; /* Slightly lighter navy on hover */
  border-color: #c9a227; /* Rich Gold Border */
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.25); /* Vibrant Gold Glow Shadow */
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.hero-card-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #c9a227;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hero-service-card:hover .hero-card-icon {
  background: #c9a227;
  color: #1a3a6b;
  transform: scale(1.05);
}
.hero-service-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: left;
  transition: color 0.3s ease;
}
.hero-service-card:hover h3 {
  color: #c9a227; /* Turn heading gold on hover */
}
.hero-service-card p {
  font-size: 0.78rem;
  color: #b8cce8;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
  text-align: left;
}
.hero-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c9a227;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto; /* Aligns all links exactly at the bottom */
  transition: all 0.3s ease;
}
.hero-card-link i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}
.hero-service-card:hover .hero-card-link {
  color: #ffffff;
}
.hero-service-card:hover .hero-card-link i {
  transform: translateX(4px);
}

/* Subpage Layout */
.subpage-hero {
  background: linear-gradient(135deg, #0d2247 0%, #1a3a6b 50%, #1e4d8c 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
}
.subpage-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: #b8cce8;
}
.breadcrumbs a {
  color: #c9a227;
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: #ffffff;
}

.subpage-grid {
  max-width: 1550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.4fr 1.5fr;
  gap: 40px;
  padding: 60px 0;
}
.service-details-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1.5px solid #e8ecf5;
  box-shadow: 0 4px 20px rgba(26,58,107,0.05);
}
.service-details-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a3a6b;
  margin-bottom: 20px;
  border-left: 4px solid #c9a227;
  padding-left: 12px;
}
.service-details-card p {
  color: #5a6a82;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.details-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-top: 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.details-section-title i {
  color: #c9a227;
}
.details-list {
  margin-bottom: 24px;
  padding-left: 20px;
}
.details-list li {
  font-size: 0.95rem;
  color: #3a4a60;
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
}
.details-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #c9a227;
  position: absolute;
  left: -20px;
}
.steps-timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: 30px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e0e8f5;
}
.timeline-step {
  position: relative;
  margin-bottom: 24px;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.step-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f4ff;
  border: 2px solid #1a3a6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a3a6b;
  z-index: 2;
}
.timeline-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 6px;
}
.timeline-step p {
  font-size: 0.88rem;
  color: #5a6a82;
  margin-bottom: 0;
  line-height: 1.5;
}
.faq-accordion {
  margin-top: 30px;
}
.faq-item {
  border-bottom: 1px solid #e8ecf5;
  padding: 16px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a6b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-answer {
  font-size: 0.9rem;
  color: #5a6a82;
  margin-top: 10px;
  line-height: 1.6;
}

/* Sidebar Inquiry Form */
.sidebar-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1.5px solid #e8ecf5;
  box-shadow: 0 4px 20px rgba(26,58,107,0.05);
  position: sticky;
  top: 92px;
}
.sidebar-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a3a6b;
  margin-bottom: 18px;
}
.locked-service {
  background: #f7f8fc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a3a6b;
  border: 1.5px solid #e0e8f5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.locked-service i {
  color: #16a34a;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #e8ecf5;
  padding: 22px 0;
  overflow: hidden;
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.trust-item[aria-hidden="true"] {
  display: none;
}

@media (max-width: 768px) {
  .marquee-wrapper {
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
    max-width: none;
    width: auto;
    gap: 32px;
    animation: scrollMarquee 25s linear infinite;
  }
  .trust-item[aria-hidden="true"] {
    display: flex;
  }
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 16px)); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a3a6b;
}
.trust-item i {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
  color: #1a3a6b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-badge {
  display: inline-block;
  background: #f0f4ff;
  color: #1a3a6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #1a3a6b;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-header p {
  color: #5a6a82;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 0;
  background: #f7f8fc;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  background: #ffffff;
  color: #5a6a82;
  border: 1.5px solid #e0e8f5;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.tab-btn:hover { border-color: #1a3a6b; color: #1a3a6b; }
.tab-btn.active {
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26,58,107,0.3);
}

/* Tab Panel */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Services Slider Buttons */
.services-slider-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1a3a6b;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.services-slider-btn:hover { background: #c9a227; color: #1a3a6b; }
.services-slider-btn.prev { left: -22px; }
.services-slider-btn.next { right: -22px; }

/* Services Dots (Hidden on Desktop) */
.services-dots {
  display: none;
}

/* Services Grid Slider */
.services-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 18px); /* 4 items per view */
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.services-grid::-webkit-scrollbar { display: none; }
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1.5px solid #e8ecf5;
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a3a6b, #c9a227);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover, .service-card:focus {
  border-color: #1a3a6b;
  box-shadow: 0 12px 40px rgba(26,58,107,0.12);
  transform: translateY(-6px);
}
.service-card:hover::before, .service-card:focus::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #1a3a6b;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  color: #ffffff;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: #5a6a82;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a3a6b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; color: #c9a227; }

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 80px 0;
  background: #ffffff;
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 20px 12px;
  position: relative;
}
.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0f4ff;
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(26,58,107,0.25);
  transition: transform 0.3s;
}
.process-step:hover .step-icon { transform: scale(1.1); }
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: #5a6a82;
  line-height: 1.6;
}
.process-arrow {
  font-size: 1.5rem;
  color: #c9a227;
  flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: #f7f8fc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrapper { position: relative; }
.about-badge-floating {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #c9a227;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}
.about-img-block {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(26,58,107,0.15);
}
.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-block:hover img {
  transform: scale(1.05);
}
.about-text-col .section-badge { margin-bottom: 14px; display: inline-block; }
.about-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #1a3a6b;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}
.about-text-col p {
  color: #5a6a82;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-features {
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 500;
  color: #1e2d3d;
}
.about-features li i { color: #1a3a6b; margin-top: 2px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: #ffffff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #f7f8fc;
  border-radius: 16px;
  padding: 30px;
  border: 1.5px solid #e8ecf5;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: #e0e8f5;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,58,107,0.1);
  border-color: #1a3a6b;
}
.stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card p {
  color: #3a4a60;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #1a3a6b; }
.testimonial-author span { font-size: 0.78rem; color: #8a9ab5; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0d2247 0%, #1a3a6b 50%, #1e4d8c 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 8px;
}
.cta-text p { color: #b8cce8; font-size: 0.95rem; }
.cta-text p strong { color: #c9a227; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: #f7f8fc;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1.5px solid #e8ecf5;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f4ff;
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
  color: #1a3a6b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 0.9rem;
  color: #1e2d3d;
}
.contact-item a:hover { color: #1a3a6b; }

/* Contact Form */
.contact-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  border: 1.5px solid #e8ecf5;
  box-shadow: 0 4px 24px rgba(26,58,107,0.06);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a3a6b;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: #3a4a60;
  margin-bottom: 6px;
}
.form-group label span { color: #e74c3c; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #e0e8f5;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: #1e2d3d;
  background: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a3a6b;
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-success {
  margin-top: 14px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1f3d;
  color: #e0e8f5;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.footer-brand-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.footer-brand-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: #c9a227;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  color: #8a9ab5;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-address {
  font-size: 0.82rem;
  color: #8a9ab5;
  line-height: 1.6;
}
.footer-address i { margin-right: 6px; color: #c9a227; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  color: #8a9ab5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: #c9a227;
  color: #ffffff;
  transform: translateY(-3px);
}
.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: #c9a227;
  border-radius: 2px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  font-size: 0.84rem;
  color: #8a9ab5;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul li a::before {
  content: '›';
  color: #c9a227;
  font-size: 1rem;
  line-height: 1;
}
.footer-links ul li a:hover { color: #c9a227; padding-left: 4px; }
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: #c9a227;
  border-radius: 2px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #8a9ab5;
  margin-bottom: 12px;
}
.footer-contact-item i { color: #c9a227; width: 14px; }
.footer-contact-item a { color: #8a9ab5; }
.footer-contact-item a:hover { color: #c9a227; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.3s;
}
.footer-wa-btn:hover {
  background: #1ebe57;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: #8a9ab5;
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: pulseWA 2.5s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.12);
  background: #1ebe57;
  color: #ffffff;
  animation: none;
}
.float-wa-tooltip {
  position: absolute;
  right: 70px;
  background: #1e2d3d;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* Typewriter Cursor */
.txt-rotate > .wrap {
  border-right: 0.08em solid #c9a227;
  padding-right: 2px;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: #c9a227; }
}

/* Map */
.map-embed { 
  border-radius: 12px; 
  overflow: hidden; 
  flex-grow: 1; 
  display: flex; 
  flex-direction: column;
}
.map-embed iframe {
  flex-grow: 1;
  height: 100% !important;
  min-height: 220px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .navbar-inner { justify-content: center; position: relative; }
  .hamburger { display: flex; position: absolute; left: 24px; z-index: 1001; transition: opacity 0.3s; }
  .hamburger.open { opacity: 0; pointer-events: none; }
  .brand { transition: opacity 0.3s; }
  .navbar-inner:has(.hamburger.open) > .brand { opacity: 0; pointer-events: none; }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #f0f4ff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 24px;
    gap: 8px;
    box-shadow: 4px 0 25px rgba(26,58,107,0.15);
    transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
  }
  .mobile-menu-logo {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(26,58,107,0.1);
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
  .nav-links.open { left: 0; }
  .nav-link { padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; }
  .nav-cta { text-align: center; margin-top: 24px; margin-left: 0; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f7f8fc;
    border-radius: 8px;
    padding: 4px 8px;
    margin-top: 4px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  
  /* Mobile Nested Submenus */
  .submenu-list {
    display: none;
    background: rgba(26, 58, 107, 0.04);
    border-radius: 8px;
    padding: 4px 8px;
    margin-top: 4px;
  }
  .submenu.open .submenu-list {
    display: block;
  }
  .submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: #1a3a6b;
    font-weight: 600;
  }
  .submenu-toggle i {
    font-size: 0.75rem;
    color: #8a9ab5;
    transition: transform 0.2s;
  }
  .submenu.open .submenu-toggle i {
    transform: rotate(90deg);
  }
  .submenu-list li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: #5a6a82;
  }
  .navbar { position: sticky; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; padding: 8px 16px; }
  .topbar-left { justify-content: center; text-align: center; gap: 8px; }
  .hero-stats {
    padding: 12px 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
  }
  .stat-item {
    padding: 0;
    flex: 1;
    min-width: 0;
  }
  .stat-number { font-size: 1.1rem; }
  .stat-plus { font-size: 0.9rem; }
  .stat-label { font-size: 0.55rem; letter-spacing: 0; }
  .stat-divider {
    display: none;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-features-list li {
    font-size: 0.85rem;
    gap: 8px;
  }
  .hero-features-list i {
    font-size: 0.95rem;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-btn {
    font-size: 0.82rem;
    padding: 10px 18px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-text-col { text-align: center; }
  .about-image-col { display: none; }
  .about-text-col h2 { font-size: 1.3rem; }
  .about-text-col p { font-size: 0.82rem; }
  .about-features li { font-size: 0.75rem; text-align: left; }
  .subpage-grid { grid-template-columns: 1fr; }
  .service-details-card h2 { font-size: 1.3rem; margin-bottom: 14px; }
  .service-details-card p { font-size: 0.9rem; margin-bottom: 18px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info { display: none; }
  .contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
  }
  .contact-item {
    border-bottom: none;
    padding: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
  .contact-item > div:last-child { 
    text-align: center; 
  }
  .contact-item strong { 
    font-size: 0.85rem; 
    margin-bottom: 4px; 
    display: block; 
  }
  .contact-item:nth-child(3) { order: 2; }
  .contact-item:nth-child(2) { order: 3; }
  .contact-item:nth-child(1) { 
    order: 1; 
    grid-column: 1 / -1; 
    margin-bottom: 12px; 
  }
  .contact-item span { white-space: normal; font-size: 0.75rem; }
  .contact-item:nth-child(4) { display: none; }
  .contact-item .contact-icon { width: 22px; height: 22px; font-size: 0.65rem; border-radius: 6px; flex-shrink: 0; }
  .map-embed { display: none; }
  .contact-form { padding: 16px; }
  .contact-form h3 { font-size: 1.1rem; }
  .contact-item span, .contact-item a { font-size: 0.75rem; white-space: nowrap; }
  
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .process-step { min-width: 0; flex: 1; }
  .step-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .process-step h4 { font-size: 0.7rem; }
  .process-step p { font-size: 0.6rem; }
  .process-arrow {
    transform: none;
    font-size: 0.7rem;
    margin-top: 18px;
  }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 1.3rem; }
  .cta-text p { font-size: 0.8rem; }
  .cta-actions { justify-content: center; gap: 10px; }
  .cta-actions a { padding: 10px 18px; font-size: 0.82rem; }
  .about-features { grid-template-columns: 1fr; }

  .services-slider-wrapper {
    padding-bottom: 0;
  }
  .services-slider-btn {
    display: none;
  }
  
  .services-dots {
    display: flex;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
  }
  .dot {
    width: 8px;
    height: 8px;
    background: #e0e8f5;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active {
    background: #c9a227;
    transform: scale(1.3);
  }

  .services-grid {
    grid-template-rows: 1fr 1fr;
    grid-auto-columns: calc(50% - 6px);
    gap: 12px;
  }
  .service-card {
    min-width: 0;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .service-icon { width: 36px; height: 36px; font-size: 1.1rem; margin-bottom: 12px; }
  .service-card h3 { font-size: 0.85rem; }
  .service-card p { font-size: 0.7rem; flex-grow: 1; }
}

@media (max-width: 540px) {
  .hero-stats { width: 100%; flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-grid { justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1440px) {
  .navbar-inner, .topbar-inner {
    padding: 0 24px;
  }
}

@media (max-width: 1440px) and (min-width: 1281px) {
  .nav-link {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

/* Responsive styles for Hero services grid */
@media (max-width: 1200px) {
  .hero-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 36px;
  }
}
@media (max-width: 900px) {
  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
}
@media (max-width: 600px) {
  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .hero-service-card {
    padding: 20px;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
  display: none !important;
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
  padding: 4rem 0;
  background-color: var(--white);
  color: var(--text-color);
}
.seo-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.seo-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.seo-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.seo-text strong {
  color: var(--primary-color);
}
