/* Desktop safe: Hide mobile drawer close button completely on desktop */
.mobile-drawer-close {
  display: none !important;
}
@media (max-width: 1024px) {
  .mobile-drawer-close {
    display: flex !important;
  }
}

/* Fixed Header with Glassmorphism */
.header-fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(10, 45, 42, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* SignMumbai - Regal Emerald Velvet & Champagne Gold Luxury Theme */
:root {
  --emerald-dark: #0a2d2a;
  --emerald-primary: #0f4c47;
  --emerald-rich: #145e57;
  --emerald-light: #1b7a72;
  --emerald-subtle: rgba(15, 76, 71, 0.08);
  --gold-light: #f5dc8a;
  --gold-primary: #d4af37;
  --gold-dark: #a67c1e;
  --gold-gradient: linear-gradient(135deg, #f7df94 0%, #d4af37 50%, #a67c1e 100%);
  --gold-glow: rgba(212, 175, 55, 0.45);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --bg-white: #ffffff;
  --bg-offwhite: #f8faf9;
  --bg-surface: #f1f6f5;
  --text-dark: #12211f;
  --text-body: #3d524f;
  --text-muted: #6b807d;
  --border-light: #e0e8e6;
  --border-gold: rgba(212, 175, 55, 0.4);
  --whatsapp-green: #25d366;
  --call-blue: #0284c7;
  --radius-pill: 50px;
  --radius-card: 14px;
  --shadow-sm: 0 4px 15px rgba(10, 45, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 45, 42, 0.1);
  --shadow-gold: 0 10px 28px rgba(212, 175, 55, 0.35);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  padding-top: 0px; /* For fixed top-bar + navbar on desktop */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-white);
  color: var(--text-body);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

body {
  padding-top: 122px; /* For fixed top-bar + navbar on desktop */
  padding-bottom: 70px;
}
@media (min-width: 769px) {
  body {
  padding-top: 122px; /* For fixed top-bar + navbar on desktop */
    padding-bottom: 0;
  }
}

/* Custom Interactive Gold Cursor (Desktop) */
@media (min-width: 1025px) {
  * {
    cursor: default;
  }
  a, button, input, select, textarea, .submenu-card, .service-card, .faq-header, .btn-instant-quote-pill {
    cursor: pointer;
  }
  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.08s ease-out;
    box-shadow: 0 0 10px var(--gold-primary);
  }
  .custom-cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.18s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
  }
  .cursor-hover .custom-cursor-ring {
    transform: scale(1.65);
    border-color: var(--emerald-primary);
    background: rgba(212, 175, 55, 0.1);
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fluid & Standard Containers */
.container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    padding-left: 54px;
    padding-right: 54px;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Top Announcement Bar */
.top-bar {
  background: var(--emerald-dark);
  color: #c7dedb;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-contact {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e5f2ef;
  font-size: 12px;
}
.top-bar-contact a:hover {
  color: var(--gold-light);
}
.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 76, 71, 0.05);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--emerald-dark);
}
.logo span {
  color: var(--gold-primary);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}
.logo-badge {
  font-size: 10px;
  background: var(--emerald-primary);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 2px;
  border: 1px solid var(--gold-primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item {
  position: static;
}
.nav-link {
  color: var(--emerald-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 28px 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.dropdown-icon {
  font-size: 10px;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Full Width Mega Menu (Regal Velvet Emerald Surface) */
.fullwidth-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--gold-primary);
  border-bottom: 3px solid var(--emerald-primary);
  box-shadow: 0 25px 50px rgba(10, 45, 42, 0.15);
  padding: 30px 0 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
}
.has-dropdown:hover .fullwidth-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}
.megamenu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.megamenu-header-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--emerald-primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.megamenu-header-badge {
  font-size: 12px;
  color: var(--text-muted);
}

.megamenu-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 18px;
}
.megamenu-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}
.megamenu-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 26px;
}

.submenu-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: var(--transition);
}
.submenu-card:hover {
  background: var(--emerald-subtle);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.submenu-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--emerald-primary);
  border: 1px solid var(--gold-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.submenu-card:hover .submenu-icon {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 14px var(--gold-glow);
}
.submenu-info {
  display: flex;
  flex-direction: column;
}
.submenu-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--emerald-dark);
  line-height: 1.3;
}
.submenu-card:hover .submenu-title {
  color: var(--emerald-primary);
}
.submenu-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* User's Exact Instant Quote Pill Button (Gold Gradient on Emerald Base) */
.btn-instant-quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-instant-quote-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.55);
  color: #000;
}
.btn-instant-quote-pill:active {
  transform: scale(0.97);
}

/* Hero Section (Velvet Emerald Backdrop with Gold Light Aura) */
.hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #186059 0%, #0a2d2a 70%);
  color: #fff;
  padding: 65px 0 85px;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary);
}
@media (min-width: 992px) {
  .hero {
    padding: 95px 0 115px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGold 6s ease-in-out infinite alternate;
}
@keyframes pulseGold {
  0% { transform: scale(0.92); opacity: 0.65; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (min-width: 600px) {
  .hero-title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 46px;
  }
}
.hero-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}
.hero-desc {
  font-size: 15.5px;
  color: #d1e5e2;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}
@media (min-width: 500px) {
  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-highlight-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 12px 14px;
  border-radius: 10px;
  transition: var(--transition);
}
.hero-highlight-item:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.hero-highlight-item strong {
  display: block;
  font-size: 16.5px;
  color: var(--gold-light);
}
.hero-highlight-item span {
  font-size: 11.5px;
  color: #e0ecea;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.btn-whatsapp-hero {
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--whatsapp-green);
  color: #fff;
  transition: var(--transition);
}
.btn-whatsapp-hero:hover {
  background: var(--whatsapp-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Lead Card (White Card with Gold Border on Dark Emerald) */
.lead-card {
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(10, 45, 42, 0.35);
  position: relative;
  color: var(--text-dark);
}
.lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 3px;
  background: var(--gold-gradient);
}
.lead-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--emerald-dark);
  margin-bottom: 4px;
}
.lead-card-header p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 13px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--emerald-dark);
  font-weight: 600;
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
  font-family: inherit;
  min-height: 44px;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px var(--gold-subtle);
  background: #fff;
}
.form-control option {
  background: #fff;
  color: var(--text-dark);
}
.btn-submit-lead {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--emerald-dark);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-submit-lead:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Trust Bar */
.trust-bar {
  background: #ffffff;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--emerald-primary);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.trust-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald-dark);
}
.trust-info p {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--emerald-primary);
  background: var(--emerald-subtle);
  border: 1px solid var(--border-gold);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 38px;
  }
}
.section-desc {
  font-size: 15px;
  color: var(--text-body);
}

/* Sections Wrapper */
.home-section {
  padding: 65px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 768px) {
  .home-section {
    padding: 85px 0;
  }
}
.home-section.alt-bg {
  background: var(--bg-offwhite);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 650px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}
.service-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--emerald-dark);
}
.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-thumb img {
  transform: scale(1.08);
}
.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--emerald-dark);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.service-card-body {
  padding-top: 122px; /* For fixed top-bar + navbar on desktop */
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--emerald-dark);
}
.service-card-body p {
  color: var(--text-body);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.btn-card-quote {
  font-size: 13px;
  font-weight: 800;
  color: var(--emerald-dark);
  background: var(--gold-gradient);
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-card-quote:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald-primary);
}
.service-link:hover {
  color: var(--gold-dark);
}

/* Why SignMumbai Matrix */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 650px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px 22px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--emerald-subtle);
  border: 1px solid var(--border-gold);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-box h4 {
  font-size: 17px;
  color: var(--emerald-dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.why-box p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* About SignMumbai Section */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-preview-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }
}
.about-preview-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--emerald-dark);
  margin-bottom: 16px;
}
.about-preview-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold-primary);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--emerald-primary);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 14px;
  opacity: 0.9;
}
.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}
.process-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--emerald-dark);
}
.faq-icon {
  font-size: 20px;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.faq-body {
  padding-top: 122px; /* For fixed top-bar + navbar on desktop */
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
}
.faq-item.active {
  border-color: var(--gold-primary);
  background: var(--bg-offwhite);
}
.faq-item.active .faq-body {
  padding-top: 122px; /* For fixed top-bar + navbar on desktop */
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Gallery Showcase */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--emerald-dark);
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 45, 42, 0.92) 0%, rgba(10, 45, 42, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.gallery-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.gallery-card-sub {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
}

/* Detail Pages Layout */
.page-header {
  background: radial-gradient(circle at center, #1b7a72 0%, #0a2d2a 100%);
  color: #fff;
  padding: 55px 0;
  text-align: center;
  border-bottom: 2px solid var(--gold-primary);
}
.page-header h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}
.breadcrumbs {
  font-size: 13px;
  color: #d1e5e2;
}
.breadcrumbs a {
  color: var(--gold-light);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.service-detail-section {
  padding: 60px 0 85px;
  background: var(--bg-white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: 44px;
  }
}
.service-main-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 26px 0 14px;
  color: var(--emerald-dark);
}
.service-main-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 22px 0 12px;
  color: var(--emerald-primary);
}
.service-main-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-feature-bullets {
  list-style: none;
  margin: 18px 0 26px;
}
.service-feature-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 14.5px;
  color: var(--text-body);
}
.service-feature-bullets li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 900;
}

/* Table Responsive */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 32px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 480px;
}
.spec-table th, .spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.spec-table th {
  background: var(--emerald-dark);
  font-weight: 700;
  color: var(--gold-light);
}
.spec-table tr:nth-child(even) {
  background: var(--bg-offwhite);
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.sidebar-widget {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-widget h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-primary);
}
.sidebar-service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
}
.sidebar-service-list a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--emerald-dark);
  background: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}
.sidebar-service-list a:hover, .sidebar-service-list a.active {
  background: var(--emerald-primary);
  color: #ffffff;
  border-color: var(--emerald-primary);
}
.sidebar-cta-card {
  background: linear-gradient(135deg, #0a2d2a, #135d57);
  border: 2px solid var(--gold-primary);
  color: #fff;
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
}
.sidebar-cta-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.sidebar-cta-card p {
  font-size: 12.5px;
  color: #d1e5e2;
  margin-bottom: 18px;
}
.sidebar-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13.5px;
  background: var(--gold-gradient);
  color: var(--emerald-dark);
  margin-bottom: 8px;
}
.sidebar-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid var(--whatsapp-green);
  color: #fff;
}

/* Footer (Regal Velvet Emerald with Champagne Gold Accents) */
.site-footer {
  background: var(--emerald-dark);
  color: #c0dad6;
  padding: 65px 0 25px;
  border-top: 2px solid var(--gold-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 45px;
}
@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
  }
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 6px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #c0dad6;
  font-size: 13.5px;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
}
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 12.5px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-legal-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: #e5f2ef;
}
.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 85px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 990;
}
@media (min-width: 769px) {
  .floating-actions {
    bottom: 25px;
    right: 25px;
  }
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 45, 42, 0.4);
  transition: var(--transition);
}
.float-btn:hover {
  transform: scale(1.08);
}
.float-btn.whatsapp {
  background: var(--whatsapp-green);
}
.float-btn.call {
  background: var(--emerald-primary);
  border: 1.5px solid var(--gold-primary);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--emerald-dark);
  border-top: 2px solid var(--gold-primary);
  padding: 8px 12px;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid;
  }
}
.mobile-sticky-btn {
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
}
.mobile-sticky-btn.call {
  background: var(--emerald-rich);
  color: #fff;
  border: 1px solid var(--gold-primary);
}
.mobile-sticky-btn.whatsapp {
  background: var(--gold-gradient);
  color: var(--emerald-dark);
  font-weight: 800;
}

/* Mobile Drawer Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 45, 42, 0.75);
  z-index: 998;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-toggle {
  display: none;
  background: var(--emerald-subtle);
  border: 1px solid var(--border-gold);
  color: var(--emerald-dark);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  body {
    padding-top: 75px; /* On mobile top-bar is hidden */
  }
  .top-bar {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    padding: 75px 16px 40px;
    border-left: 2px solid var(--gold-primary);
    box-shadow: -10px 0 30px rgba(10, 45, 42, 0.4);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--emerald-subtle);
    border: none;
    color: var(--emerald-dark);
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-item {
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }
  .nav-link {
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 700;
    justify-content: space-between;
    width: 100%;
    color: var(--emerald-dark);
  }
  .fullwidth-megamenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-offwhite);
    width: 100% !important;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: none;
    box-shadow: none;
  }
  .has-dropdown.mobile-open .fullwidth-megamenu {
    display: block;
  }
  .has-dropdown.mobile-open .dropdown-icon {
    transform: rotate(180deg);
  }
  .megamenu-header {
    display: none;
  }
  .megamenu-grid-4, .megamenu-grid-3, .megamenu-grid-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Fix Hero Grid & Slider Overlap */
.hero {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #186059 0%, #0a2d2a 70%);
  color: #fff;
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary);
}
@media (min-width: 992px) {
  .hero {
    padding: 85px 0 105px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.hero-content {
  max-width: 100%;
  z-index: 3;
}
@media (min-width: 992px) {
  .hero-content {
    padding-right: 15px;
  }
}

.hero-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
  word-break: break-word;
}
@media (min-width: 600px) {
  .hero-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }
}

.hero-slider-col {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 440px;
  margin: 0 auto;
  overflow: hidden; /* Prevents 3D elements from bleeding into left text */
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(10, 45, 42, 0.45);
  border: 2px solid var(--gold-primary);
  background: var(--emerald-dark);
}
@media (max-width: 768px) {
  .hero-slider-container {
    height: 360px;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.65s;
  background: var(--emerald-dark);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

.hero-slide.prev, .hero-slide.next {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  z-index: 1;
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 45, 42, 0.95) 0%, rgba(10, 45, 42, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 26px;
  color: #fff;
}

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: var(--emerald-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-slide-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.hero-slide-desc {
  font-size: 13.5px;
  color: #d1e5e2;
  margin-bottom: 14px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--gold-primary);
  color: var(--emerald-dark);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.slider-nav-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-gold);
}
.slider-nav-prev {
  left: 14px;
}
.slider-nav-next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  width: 26px;
  border-radius: 10px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-glow);
}
