/***********************************************
  AGRAWAL GLASS HOUSE â€” ULTRA PREMIUM STYLESHEET
  Design System: Logo Deep Navy Blue (#0B2545) + Luxury Gold (#C9A84C)
  Version: 3.1 â€” 2026 (Refined Rhythm & Compact Banners)
************************************************/

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Header Height Dynamic Calculation (JS syncs this) */
  --header-height: 104px;

  /* Primary Palette (Matches Agrawal Glass House Logo: Deep Navy Blue #0B2545 & Luxury Gold #C9A84C) */
  --navy:          #0B2545;
  --navy-mid:      #0F3460;
  --navy-light:    #1B3B6F;
  --navy-pale:     #E8EEF5;

  /* Backward Compatibility Tokens */
  --forest:        #0B2545;
  --forest-mid:    #0F3460;
  --forest-light:  #1B3B6F;
  --forest-pale:   #E8EEF5;

  /* Secondary (Logo Deep Navy Charcoal) */
  --charcoal:      #0A1C36;
  --charcoal-mid:  #16213E;
  --charcoal-soft: #1F3150;

  /* Accent Gold */
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     #FDF3DC;
  --gold-grad:     linear-gradient(135deg, #C9A84C 0%, #E8C97A 60%, #C9A84C 100%);

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #FAFBF9;
  --gray-soft:     #F4F6F3;
  --gray-border:   #E0E6E0;
  --gray-mid:      #8D9B8D;
  --text-dark:     #1A1A2E;
  --text-body:     #3A4A3A;
  --text-muted:    #6B7B6B;
  --text-light:    #A8B8A8;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(11, 37, 69,0.06);
  --shadow-sm:  0 4px 12px rgba(11, 37, 69,0.08);
  --shadow-md:  0 8px 28px rgba(11, 37, 69,0.12);
  --shadow-lg:  0 16px 48px rgba(11, 37, 69,0.16);
  --shadow-xl:  0 28px 80px rgba(11, 37, 69,0.20);

  /* Spacing */
  --section-gap: 80px;
  --section-gap-md: 50px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease:      all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
    --section-gap: 60px;
    --section-gap-md: 40px;
  }
}

/* ============================================================
   3. GLOBAL RESET & BASE TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.font-heading, .font-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.font-sans { font-family: 'Inter', system-ui, sans-serif !important; }

p { line-height: 1.75; }
a { transition: var(--ease); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-soft); }
::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

/* Selection */
::selection { background: var(--forest-pale); color: var(--forest); }

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.text-forest    { color: var(--forest) !important; }
.text-gold      { color: var(--gold) !important; }
.text-charcoal  { color: var(--charcoal) !important; }
.text-muted-premium { color: var(--text-muted) !important; }
.text-light-gray { color: #A8B8A8 !important; }

.bg-forest      { background: var(--forest) !important; }
.bg-charcoal    { background: var(--charcoal) !important; }
.bg-gold        { background: var(--gold) !important; }
.bg-off-white   { background: var(--off-white) !important; }
.bg-gray-soft   { background: var(--gray-soft) !important; }

.text-primary   { color: var(--gold) !important; }
.bg-primary     { background: var(--forest) !important; }

.bg-gold-gradient {
  background: var(--gold-grad) !important;
  color: var(--charcoal) !important;
}

.py-section    { padding: var(--section-gap) 0; }
.py-section-md { padding: var(--section-gap-md) 0; }

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin: 0 auto;
}
.gold-divider-left { margin: 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-eyebrow i { font-size: 10px; }

.section-title-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0;
}
.section-title-xl.light { color: var(--white); }

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}
.section-subtitle.light { color: rgba(255,255,255,0.72); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn:active::after {
  width: 250px; height: 250px;
  opacity: 1;
  transition: 0s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(11, 37, 69,0.28);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-light) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 37, 69,0.38) !important;
  color: var(--white) !important;
}

.btn-gold {
  background: var(--gold-grad) !important;
  color: var(--charcoal) !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover, .btn-gold:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5) !important;
  color: var(--charcoal) !important;
}

.btn-outline-forest {
  background: transparent !important;
  color: var(--forest) !important;
  border: 2px solid var(--forest) !important;
}
.btn-outline-forest:hover {
  background: var(--forest) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.7) !important;
}
.btn-outline-white:hover {
  background: var(--white) !important;
  color: var(--forest) !important;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent !important;
  color: var(--text-dark) !important;
  border: 2px solid var(--text-dark) !important;
}
.btn-outline-dark:hover {
  background: var(--text-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-whatsapp-cta {
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp-cta:hover {
  background: #1DA851 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45) !important;
  color: var(--white) !important;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}

/* ============================================================
   6. LOADING SPINNER
   ============================================================ */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  background: var(--charcoal) !important;
}
#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
#spinner .spinner-border {
  color: var(--gold) !important;
  border-width: 3px;
}

/* ============================================================
   7. TOP INFO BAR
   ============================================================ */
.top-info-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-info-bar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.top-info-bar a:hover { color: var(--gold); }
.top-info-bar .top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.top-info-bar .top-bar-item i {
  color: var(--gold);
  font-size: 11px;
}
.top-info-bar .top-bar-separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  margin: 0 14px;
  vertical-align: middle;
}
.top-bar-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ============================================================
   8. NAVBAR â€” PREMIUM STICKY HEADER
   ============================================================ */
.ai-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9990;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.ai-navbar.nav-transparent {
  background: linear-gradient(180deg, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0) 100%) !important;
  box-shadow: none;
  border-bottom: none;
}
.ai-navbar.nav-transparent .navbar-brand .ai-logo-dark { display: none; }
.ai-navbar.nav-transparent .navbar-brand .ai-logo-light { display: block !important; }
.ai-navbar.nav-transparent .nav-link { color: rgba(255,255,255,0.9) !important; }
.ai-navbar.nav-transparent .nav-link:hover { color: var(--gold-light) !important; }

.ai-navbar.nav-solid {
  background: var(--white) !important;
  box-shadow: 0 2px 30px rgba(0,0,0,0.09);
  border-bottom: 1px solid var(--gray-border);
}
.ai-navbar.nav-solid .nav-link { color: var(--text-dark) !important; }
.ai-navbar.nav-solid .navbar-brand .ai-logo-dark { display: block !important; }
.ai-navbar.nav-solid .navbar-brand .ai-logo-light { display: none; }

.ai-logo {
  height: 52px;
  width: auto;
  transition: height 0.35s ease;
}
.ai-navbar.nav-solid .ai-logo { height: 46px; }
.ai-logo-light { display: none; }

.ai-navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px !important;
  position: relative;
  letter-spacing: 0.2px;
}

.ai-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ai-navbar .nav-link:hover::after,
.ai-navbar .nav-link.active::after { transform: scaleX(1); }
.ai-navbar.nav-solid .nav-link.active { color: var(--navy) !important; font-weight: 700; }
.ai-navbar.nav-solid .nav-link:hover { color: var(--gold) !important; }

/* WhatsApp Navbar CTA Button */
.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
}

.btn-nav-whatsapp:hover {
  background: #1ebc59;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.btn-nav-whatsapp i {
  font-size: 15px;
  color: #ffffff !important;
}

.ai-nav-cta-call {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  border: 2px solid var(--forest) !important;
  color: var(--forest) !important;
  background: transparent !important;
  transition: var(--ease);
  white-space: nowrap;
}
.ai-nav-cta-call:hover {
  background: var(--forest) !important;
  color: var(--white) !important;
}
.ai-nav-cta-quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid)) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(11, 37, 69,0.25);
  white-space: nowrap;
  transition: var(--ease);
}
.ai-nav-cta-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 37, 69,0.4) !important;
}

/* ============================================================
   9. MEGA DROPDOWN MENU
   ============================================================ */
.ai-mega-dropdown { position: static !important; }

.ai-mega-menu {
  position: fixed !important;
  top: auto;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  background: var(--white);
  border: none !important;
  border-top: 3px solid var(--forest) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
  border-radius: 0 0 16px 16px !important;
  padding: 28px 0 20px !important;
  margin-top: 0 !important;
  animation: megaSlideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 9998;
}

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

.ai-mega-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-mega-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.ai-mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body) !important;
  text-decoration: none;
  transition: var(--ease-fast);
}
.ai-mega-link:hover {
  background: var(--forest-pale);
  color: var(--forest) !important;
  transform: translateX(4px);
}
.ai-mega-link i {
  width: 26px; height: 26px;
  background: var(--gray-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--forest);
  flex-shrink: 0;
  transition: var(--ease-fast);
}
.ai-mega-link:hover i {
  background: var(--forest);
  color: var(--white);
}

.mega-cta-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(201,168,76,0.2);
}
.mega-cta-card h6 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.mega-cta-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

/* Standard Single Dropdown (e.g. Our Services) */
.ai-dropdown {
  position: relative;
}

.ai-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--forest);
  padding: 12px 10px;
  margin-top: 8px;
  display: none;
  z-index: 9999;
  animation: megaSlideDown 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-dropdown-menu.show,
.ai-dropdown:hover .ai-dropdown-menu {
  display: block;
}

.ai-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body) !important;
  text-decoration: none;
  transition: var(--ease-fast);
}

.ai-dropdown-item:hover {
  background: var(--forest-pale);
  color: var(--forest) !important;
  transform: translateX(4px);
}

.ai-dropdown-item i {
  width: 28px;
  height: 28px;
  background: var(--gray-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--forest);
  flex-shrink: 0;
  transition: var(--ease-fast);
}

.ai-dropdown-item:hover i {
  background: var(--forest);
  color: var(--white);
}

/* ============================================================
   10. MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #061426;
  z-index: 9995;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.is-open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(11, 37, 69, 0.95);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-nav-logo-badge {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.mobile-nav-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease-fast);
}
.mobile-nav-close:hover {
  background: var(--gold);
  color: #061426;
}

.mobile-nav-body { padding: 16px 18px 40px; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  color: #f1f5f9 !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: var(--ease-fast);
  cursor: pointer;
}
.mobile-nav-link:hover,
.mobile-nav-link.active-link {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold) !important;
}

.mobile-nav-submenu {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin: 4px 0 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-nav-submenu.open {
  max-height: 2000px;
  padding: 8px 0;
}
.mobile-nav-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: var(--ease-fast);
}
.mobile-nav-submenu a:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light) !important;
  padding-left: 20px;
}
.mobile-nav-submenu a i {
  width: 24px;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
}

.ai-hamburger,
.hamburger-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 9995;
  transition: var(--ease-fast);
}
.nav-solid .ai-hamburger {
  background: rgba(11, 37, 69, 0.08);
  border-color: rgba(11, 37, 69, 0.15);
}
.ai-hamburger .bar,
.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-solid .ai-hamburger .bar {
  background: var(--navy);
}
.ai-hamburger.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ai-hamburger.is-open .bar:nth-child(2) {
  opacity: 0;
}
.ai-hamburger.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .ai-logo {
    height: 38px !important;
    max-width: 170px !important;
    object-fit: contain;
  }
  .navbar-brand {
    max-width: 70%;
    flex-shrink: 1;
  }
  .ai-navbar .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
.hamburger-btn span:nth-child(1) { width: 22px; }
.hamburger-btn span:nth-child(2) { width: 16px; }
.hamburger-btn span:nth-child(3) { width: 22px; }
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }
.ai-navbar.nav-transparent .hamburger-btn span { background: var(--white); }

/* ============================================================
   11. HERO SECTION
   ============================================================ */
.ai-hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.ai-hero-slide {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ai-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
  transform: scale(1.05);
}
.owl-item.active .ai-hero-bg { transform: scale(1); }

.ai-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.88) 0%,
    rgba(11, 37, 69,0.68) 100%
  );
  z-index: 1;
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}
.hero-heading span { color: var(--gold-light); font-style: italic; }

.hero-para {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Hero Carousel Controls (Prev/Next & Dots Absolute Positioning) */
.header-carousel {
  position: relative;
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 10;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  pointer-events: auto;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  margin: 0 !important;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark-navy) !important;
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.header-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.header-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  background: rgba(255, 255, 255, 0.35) !important;
  border-radius: 50%;
  display: block;
  transition: all 0.35s ease;
}

.header-carousel .owl-dots .owl-dot.active span,
.header-carousel .owl-dots .owl-dot:hover span {
  background: var(--gold) !important;
  width: 34px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .ai-hero-slide {
    height: auto;
    min-height: 480px;
    padding-top: calc(var(--header-height) + 15px);
    padding-bottom: 50px;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .hero-heading {
    font-size: 1.65rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .hero-para {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 10px;
  }
  .header-carousel .owl-nav {
    padding: 0 6px;
  }
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    font-size: 12px !important;
  }
  .header-carousel .owl-dots {
    bottom: 12px;
  }
}

/* ============================================================
   12. REDESIGNED BREADCRUMB / PAGE HEADER BANNER (SITE-WIDE)
   ============================================================ */
/* 
   - Zero gap below fixed header
   - Height: Desktop 180-230px, Mobile 130-160px
   - Seamless top padding using var(--header-height)
*/
.page-header-banner,
.page-header {
  position: relative !important;
  width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: var(--header-height) !important;
  padding-bottom: 0 !important;
  min-height: calc(var(--header-height) + 210px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

@media (max-width: 991px) {
  .page-header-banner,
  .page-header {
    min-height: calc(var(--header-height) + 175px) !important;
  }
}

@media (max-width: 576px) {
  .page-header-banner,
  .page-header {
    min-height: calc(var(--header-height) + 150px) !important;
  }
}

.page-header-banner::before,
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(201, 168, 76, 0.16) 0%, rgba(11, 37, 69, 0.92) 55%, rgba(6, 20, 38, 0.98) 100%) !important;
  z-index: 1;
}

/* Subtle Architectural Grid Overlay */
.page-header-banner::after,
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.page-header-content,
.page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px !important;
  padding-bottom: 48px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 991px) {
  .page-header-content,
  .page-header .container {
    padding-top: 30px !important;
    padding-bottom: 36px !important;
  }
}

@media (max-width: 576px) {
  .page-header-content,
  .page-header .container {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }
}

/* Breadcrumb Eyebrow Badge */
.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 20, 38, 0.92);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-header-banner h1,
.page-header h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.75rem, 3.8vw, 2.85rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.22 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
  width: 100% !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: -0.2px;
}

.page-header-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem) !important;
  font-weight: 500 !important;
  color: #f1f5f9 !important;
  max-width: 780px !important;
  margin: 0 auto 20px !important;
  line-height: 1.65 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

/* High-Contrast Luxury Breadcrumb Capsule Pill */
.breadcrumb-premium,
.page-header .breadcrumb {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  padding: 10px 26px !important;
  background: rgba(6, 20, 38, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 100px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.3) !important;
  text-align: center !important;
}

.breadcrumb-premium a,
.page-header .breadcrumb-item a {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.breadcrumb-premium a i,
.page-header .breadcrumb-item a i {
  color: var(--gold-light) !important;
  font-size: 14px !important;
}
.breadcrumb-premium a:hover,
.page-header .breadcrumb-item a:hover {
  color: var(--gold-light) !important;
  transform: translateY(-1px);
}

.breadcrumb-premium .sep,
.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--gold) !important;
  font-size: 11px !important;
  opacity: 1 !important;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-premium .current,
.page-header .breadcrumb-item.active {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  color: #0B2545 !important;
  font-weight: 800 !important;
  background: var(--gold) !important;
  padding: 4px 14px !important;
  border-radius: 100px !important;
  border: 1px solid #dfc26a !important;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4) !important;
  letter-spacing: 0.2px;
}

/* ============================================================
   13. REDESIGNED ABOUT SECTION (INTERNATIONAL CORPORATE LOOK)
   ============================================================ */
.about-section-luxury {
  background: var(--white);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* Rich Multi-Photo Architectural Collage (Right Column) */
.about-rich-collage-stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-collage-main-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  background: #0B2545;
  transition: all 0.3s ease;
}

.about-collage-main-frame:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(11, 37, 69, 0.12);
}

.about-collage-main-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-collage-main-frame:hover .about-collage-main-img {
  transform: scale(1.02);
}

.collage-store-tag {
  background: linear-gradient(135deg, #0B2545 0%, #061426 100%);
  color: #ffffff;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
}

/* Sub-frames (Dual real images below main) */
.about-collage-sub-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  background: #0B2545;
  transition: all 0.3s ease;
}

.about-collage-sub-frame:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.about-collage-sub-img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-collage-sub-frame:hover .about-collage-sub-img {
  transform: scale(1.04);
}

.collage-sub-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 20, 38, 0.85);
  color: #ffffff;
  padding: 5px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Trust Ribbon (Below collage photos) */
.about-collage-trust-strip {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.acts-item {
  display: flex;
  flex-direction: column;
}

.acts-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.acts-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Text Content Typography */
.about-lead-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Feature Cards 2x2 Grid Beside Content */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}
.about-feature-item:hover {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.08);
  transform: translateY(-2px);
}
.about-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11, 37, 69, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.about-feature-item:hover .about-feature-icon {
  background: var(--navy);
  color: var(--gold);
}
.about-feature-item h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.about-feature-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 576px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .floating-trust-card {
    bottom: 54px;
    right: 12px;
    padding: 10px 14px;
  }
  .trust-count {
    font-size: 0.98rem;
  }
}
.about-feature-item h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-feature-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section-luxury {
    padding: 40px 0;
  }
  .about-image-stage {
    padding: 0;
    margin-bottom: 24px;
  }
  .about-decor-backdrop {
    display: none;
  }
  .about-image-card {
    border-radius: 16px;
  }
  .about-full-photo {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 16px 16px 0 0;
  }
  .floating-exp-badge {
    position: relative !important;
    inset: auto !important;
    margin: 12px;
    border-radius: 12px;
    padding: 10px 16px;
    justify-content: center;
    box-shadow: none;
  }
  .floating-exp-badge .exp-year {
    font-size: 1.1rem;
  }
  .about-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 20px 0 !important;
  }
  .about-feature-item {
    padding: 12px 14px !important;
  }
  .about-image-caption {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ============================================================
   14. STATS / COUNTER SECTION
   ============================================================ */
.stats-section-ultra {
  background: linear-gradient(135deg, #0B2545 0%, #0F3460 50%, #0B2545 100%);
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.stat-card-ultra {
  text-align: center;
  padding: 26px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card-ultra:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

.stat-icon-glow {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--gold-light);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.stat-card-ultra:hover .stat-icon-glow {
  background: var(--gold);
  color: #0B2545;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.stat-number-gold {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.stat-title-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.stat-divider-gold {
  width: 32px;
  height: 2px;
  background: var(--gold-grad);
  margin: 0 auto 8px;
  border-radius: 100px;
}

.stat-sub-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

@media (max-width: 576px) {
  .stats-section-ultra {
    padding: 30px 0;
  }
  .stat-card-ultra {
    padding: 16px 8px;
    border-radius: 14px;
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(255, 255, 255, 0.07);
  }
  .stat-icon-glow {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .stat-number-gold {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }
  .stat-title-text {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 6px;
  }
  .stat-divider-gold {
    width: 24px;
    height: 1.5px;
    margin-bottom: 6px;
  }
  .stat-sub-text {
    font-size: 0.68rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.8);
  }
}

/* ============================================================
   15. BRAND SECTION
   ============================================================ */
.brand-section-ultra {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.brand-card-ultra {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card-ultra:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border-color: rgba(201,168,76,0.5);
}

.brand-logo-holder {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-holder img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--ease);
}
.brand-card-ultra:hover .brand-logo-holder img {
  transform: scale(1.08);
}

/* ============================================================
   16. PRODUCT CARDS
   ============================================================ */
.product-card-luxury {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--ease);
  height: 100%;
}
.product-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(11, 37, 69,0.2);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card-luxury:hover .product-card-image img { transform: scale(1.08); }

.product-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11, 37, 69,0.92) 0%, transparent 100%);
  padding: 18px 16px 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card-luxury:hover .product-card-overlay { transform: translateY(0); }
.product-card-overlay p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.product-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11, 37, 69,0.85);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.4);
  backdrop-filter: blur(4px);
}

.product-card-body { padding: 20px; }
.product-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-card-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   17. LUXURY SERVICES SHOWCASE SECTION
   ============================================================ */
.luxury-services-showcase-section {
  background: radial-gradient(circle at 50% 0%, #0d2e54 0%, #061426 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.luxury-services-showcase-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* 5-Card Showcase Card */
.luxury-service-showcase-card {
  background: #0B2545;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.luxury-service-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(201, 168, 76, 0.2);
}

/* Media Box */
.service-media-box {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.service-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.luxury-service-showcase-card:hover .service-media-img {
  transform: scale(1.08);
}
.service-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 38, 0.2) 0%, rgba(11, 37, 69, 0.85) 100%);
}

.service-num-badge {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(6, 20, 38, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 8px;
}

.service-tag-pill {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(11, 37, 69, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-floating-icon {
  position: absolute;
  bottom: 12px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c9a84c 0%, #b38b2d 100%);
  color: #061426;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}
.luxury-service-showcase-card:hover .service-floating-icon {
  transform: rotate(10deg) scale(1.1);
  background: #ffffff;
  color: var(--navy);
}

/* Card Content */
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}
.service-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}
.service-card-title a:hover {
  color: var(--gold-light);
}

.service-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullet-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
}

/* Action Buttons */
.btn-service-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  flex-grow: 1;
  justify-content: center;
}
.btn-service-view:hover {
  background: var(--gold);
  color: #061426 !important;
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-service-wa {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.btn-service-wa:hover {
  background: #1ebc59;
  transform: scale(1.08);
}

/* Service Execution Guarantee Bar */
.service-execution-guarantee-bar {
  background: rgba(6, 20, 38, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 22px 24px;
}
.seg-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}
.seg-item i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .service-media-box {
    height: 175px;
  }
  .service-card-title {
    font-size: 1.15rem;
  }
  .service-execution-guarantee-bar {
    padding: 16px 14px;
  }
  .seg-item {
    font-size: 0.78rem;
    gap: 6px;
  }
}

/* ============================================================
   18. WHY CHOOSE US
   ============================================================ */
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(11, 37, 69,0.2);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  transition: var(--ease);
}
.why-icon-green { background: var(--forest-pale); color: var(--forest); }
.why-icon-gold { background: var(--gold-pale); color: var(--gold); }
.why-card:hover .why-icon-green { background: var(--forest); color: var(--white); }
.why-card:hover .why-icon-gold { background: var(--gold); color: var(--charcoal); }

.why-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--gray-soft);
  padding: var(--section-gap) 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars { color: #F59E0B; font-size: 13px; margin-bottom: 14px; }
.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest-pale);
  border: 2px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.testimonial-loc {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.testimonial-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--forest-pale);
  color: var(--forest);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: auto;
}

/* ============================================================
   21. QUOTE FORM SECTION
   ============================================================ */
.quote-section {
  background: linear-gradient(135deg, var(--gray-soft) 0%, #EEF2ED 100%);
  padding: var(--section-gap) 0;
}

.quote-form-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  position: relative;
  overflow: hidden;
}
.quote-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}

/* ============================================================
   FORM FLOATING & INPUT PLACEHOLDER OVERLAP FIXES
   ============================================================ */

/* 1. Base input & select styling inside quote form cards */
.quote-form-card .form-control,
.quote-form-card .form-select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
  color: var(--white);
}

.quote-form-card .form-select option {
  background: var(--charcoal);
  color: var(--white);
}

/* 2. Global Form-Floating Height & Padding Overrides (Prevents Overlap) */
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px) !important;
  line-height: 1.25 !important;
  padding-top: 1.625rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0.85rem !important;
  padding-right: 0.85rem !important;
  font-size: 0.9rem !important;
}

.form-floating > textarea.form-control {
  height: 120px !important;
  min-height: 100px !important;
  padding-top: 1.75rem !important;
  padding-bottom: 0.625rem !important;
}

/* 3. Floating Label Placement & Floating Animation */
.form-floating > label {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  padding: 0.95rem 0.85rem !important;
  pointer-events: none !important;
  transform-origin: 0 0 !important;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out !important;
  color: var(--text-muted) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

/* Label color in dark quote forms */
.quote-form-card .form-floating > label,
.bg-dark .form-floating > label {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Floating Label Active / Floated State */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.9 !important;
  transform: scale(0.78) translateY(-0.65rem) translateX(0.15rem) !important;
  font-weight: 600 !important;
}

.quote-form-card .form-floating > .form-control:focus ~ label,
.quote-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
.quote-form-card .form-floating > .form-select ~ label,
.bg-dark .form-floating > .form-control:focus ~ label,
.bg-dark .form-floating > .form-control:not(:placeholder-shown) ~ label,
.bg-dark .form-floating > .form-select ~ label {
  color: var(--gold-light) !important;
}

/* 4. PLACEHOLDER OVERLAP FIX:
   Hide native placeholder when field is NOT focused so it NEVER collides with label! */
.form-floating > .form-control:not(:focus)::placeholder {
  color: transparent !important;
  opacity: 0 !important;
}

.form-floating > .form-control:focus::placeholder {
  color: rgba(150, 150, 150, 0.5) !important;
  opacity: 1 !important;
}

.quote-form-card .form-floating > .form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
}

/* ============================================================
   21. LUXURY CONTACT PAGE COMPONENTS
   ============================================================ */
/* 3-Card Interactive Contact Hub */
.contact-hub-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contact-hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.09);
}

.contact-hub-card.featured-hub-card {
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.contact-hub-card.featured-hub-card:hover {
  border-color: #25D366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.15);
}

.contact-hub-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-hub-icon-wrap.icon-gold {
  background: rgba(201, 168, 76, 0.12);
  color: #b38b2d;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.contact-hub-icon-wrap.icon-green {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-hub-icon-wrap.icon-navy {
  background: rgba(11, 37, 69, 0.08);
  color: var(--navy);
  border: 1px solid rgba(11, 37, 69, 0.2);
}

.contact-hub-card:hover .contact-hub-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.contact-hub-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.contact-hub-badge.badge-green {
  background: rgba(37, 211, 102, 0.15);
  color: #16a34a;
}

.contact-hub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-hub-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 12px;
}

.contact-hub-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.contact-hub-link:hover {
  color: var(--gold);
}

.contact-hub-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

/* Modern Clean Contact Form */
.contact-form-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(11, 37, 69, 0.05);
}

.form-group-custom {
  margin-bottom: 2px;
  text-align: left;
}

.form-label-custom {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
  transition: all 0.2s ease;
}

.form-control-custom {
  width: 100%;
  height: 48px;
  padding: 10px 14px 10px 38px !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy) !important;
  background-color: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  transition: all 0.2s ease;
  line-height: 1.5 !important;
  display: block;
}

.form-control-custom:focus {
  background-color: #ffffff !important;
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1) !important;
  outline: none;
}

.input-with-icon:focus-within .input-icon {
  color: var(--gold);
}

select.form-control-custom {
  padding-right: 36px !important;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230B2545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 10px !important;
}

select.form-control-custom option {
  background-color: #ffffff;
  color: var(--navy);
  padding: 10px;
}

.contact-mini-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  justify-content: center;
  padding: 6px;
}

/* Luxury Contact Form Submit Button */
.btn-contact-submit {
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, #c9a84c 0%, #dfc374 50%, #b38b2d 100%);
  color: #061426 !important;
  border: 1.5px solid #dfc374;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-contact-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn-contact-submit:hover::before {
  left: 100%;
}

.btn-contact-submit:hover {
  background: linear-gradient(135deg, #0B2545 0%, #163e72 100%);
  color: #ffffff !important;
  border-color: #0B2545;
  box-shadow: 0 8px 25px rgba(11, 37, 69, 0.25);
  transform: translateY(-2px);
}

.btn-submit-icon {
  width: 32px;
  height: 32px;
  background: rgba(6, 20, 38, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #061426;
  transition: all 0.3s ease;
}

.btn-contact-submit:hover .btn-submit-icon {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold);
  transform: translateX(4px);
}

/* Details & Map Container */
.contact-details-container {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(11, 37, 69, 0.05);
}

.contact-map-frame {
  height: 280px;
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11, 37, 69, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-sub-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  display: block;
  margin-bottom: 2px;
}

.contact-sub-val {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.bg-danger-soft {
  background: rgba(239, 68, 68, 0.1) !important;
}

@media (max-width: 768px) {
  .contact-hub-card {
    padding: 22px 18px;
  }
  .contact-hub-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .contact-form-container {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .contact-details-body {
    padding: 20px 18px !important;
  }
  .contact-map-frame {
    height: 220px;
  }
}

/* ============================================================
   22. GALLERY PAGE
   ============================================================ */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--ease-fast);
}
.gallery-filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.gallery-filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 69,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ============================================================
   23. SERVICE DETAIL TEMPLATE
   ============================================================ */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.benefit-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  background: var(--forest-pale);
}
.benefit-icon {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.benefit-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0;
}

.process-timeline { position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(to bottom, var(--forest), var(--forest-light), transparent);
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}
.process-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(11, 37, 69,0.2);
  z-index: 1;
}
.process-step-body {
  flex: 1;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-xs);
}
.process-step-body h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================================
   LUXURY ARCHITECTURAL PROCESS PIPELINE
   ============================================================ */
.luxury-process-section {
  background: linear-gradient(145deg, #0B2545 0%, #061426 100%);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 16px 40px rgba(6, 20, 38, 0.18);
  position: relative;
  overflow: hidden;
}

.luxury-process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #e2cb8a, #c9a84c);
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.process-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.process-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.luxury-process-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  position: relative;
  margin-top: 24px;
}

.process-pipeline-node {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-pipeline-node:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.node-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.node-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.node-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25) 0%, rgba(11, 37, 69, 0.5) 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

.process-pipeline-node:hover .node-icon-circle {
  background: var(--gold);
  color: #061426;
  transform: rotate(6deg) scale(1.08);
}

.node-phase-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  display: block;
}

.node-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.node-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .luxury-process-section {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .luxury-process-pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-pipeline-node {
    padding: 16px 14px;
  }
}

.interactive-workflow-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

/* Stepper Navigation */
.workflow-stepper-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.workflow-step-btn {
  background: var(--gray-soft);
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.workflow-step-btn:hover {
  background: var(--navy-pale);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}
.workflow-step-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 100%);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.2);
  transform: translateY(-2px);
}
.wsb-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.wsb-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}
.workflow-step-btn.active .wsb-num {
  color: var(--gold-light);
}
.wsb-icon {
  font-size: 14px;
  color: var(--navy-mid);
  transition: var(--ease);
}
.workflow-step-btn.active .wsb-icon {
  color: var(--gold);
}
.wsb-label {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.workflow-step-btn.active .wsb-label {
  color: rgba(255, 255, 255, 0.7);
}
.wsb-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.workflow-step-btn.active .wsb-title {
  color: var(--white);
}

/* Progress Bar */
.workflow-progress-bar {
  height: 4px;
  background: var(--gray-soft);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.workflow-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Panes & Active Cards */
.workflow-pane {
  display: none;
}
.workflow-pane.active {
  display: block;
  animation: wfFadeIn 0.35s ease;
}
@keyframes wfFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.workflow-card {
  background: var(--navy-pale);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
}
.wf-badge {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}
.wf-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.wf-cat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}
.wf-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.wf-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Highlights Grid */
.wf-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.wf-hl-item {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 7px 12px;
  border-radius: 8px;
}

/* Icon Box */
.wf-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wf-icon-inner {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 100%);
  border: 2.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.25);
  margin-bottom: 10px;
  transition: var(--ease);
}
.workflow-pane.active .wf-icon-inner {
  animation: iconPulse 2.5s infinite;
}
@keyframes iconPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}
.wf-step-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation dots in card footer */
.wf-step-indicators {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wf-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-border);
  cursor: pointer;
  transition: var(--ease);
}
.wf-indicator-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--gold);
}

@media (max-width: 991px) {
  .workflow-stepper-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .interactive-workflow-wrap {
    padding: 20px 14px;
  }
  .workflow-stepper-nav {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .workflow-step-btn {
    min-width: 140px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .wf-card-title {
    font-size: 1.15rem;
  }
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-left: 3.5px solid var(--gold);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  width: 100%;
}
.feature-chip:hover {
  border-color: var(--gold);
  background: var(--navy-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.feature-chip i {
  color: var(--gold);
  font-size: 15px;
}

/* Service Detail Hero Stage */
.service-hero-stage {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 12px 36px rgba(11, 37, 69, 0.08);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.service-hero-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.18);
  border: 2px solid rgba(201, 168, 76, 0.4);
  height: 100%;
  min-height: 320px;
}
.service-hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-hero-photo-wrap:hover img {
  transform: scale(1.04);
}
.photo-floating-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 37, 69, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Service Trust Metrics Strip */
.service-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 24px;
}
.service-trust-pill {
  background: var(--navy-pale);
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-trust-pill i {
  color: var(--gold);
}

/* Enhanced Benefits Grid */
.benefit-card-luxury {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--ease);
  box-shadow: var(--shadow-xs);
  height: 100%;
}
.benefit-card-luxury:hover {
  border-color: rgba(201, 168, 76, 0.6);
  background: var(--navy-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.benefit-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 37, 69, 0.15);
}

/* Other Services Navigation Strip */
.service-chip-link {
  transition: all 0.25s ease;
}
.service-chip-link:hover {
  border-color: var(--gold) !important;
  background: var(--navy-pale) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.service-chip-link:hover .icon-circle-sm {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: scale(1.08);
}
.icon-circle-sm {
  transition: var(--ease);
}

/* ============================================================
   LUXURY ARCHITECTURAL FAQ ACCORDION
   ============================================================ */
.luxury-faq-wrap {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.luxury-faq-accordion .accordion-item,
.faq-accordion .accordion-item {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ffffff;
  transition: all 0.25s ease;
}

.luxury-faq-accordion .accordion-item:hover,
.faq-accordion .accordion-item:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.06);
}

.luxury-faq-accordion .accordion-button,
.faq-accordion .accordion-button {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: #ffffff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.luxury-faq-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(11, 37, 69, 0.07);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.luxury-faq-accordion .accordion-button:not(.collapsed) .faq-q-badge,
.faq-accordion .accordion-button:not(.collapsed) .faq-q-badge {
  background: var(--navy);
  color: var(--gold);
}

.faq-q-text {
  flex: 1;
  line-height: 1.4;
}

.luxury-faq-accordion .accordion-button::after,
.faq-accordion .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.luxury-faq-accordion .accordion-body,
.faq-accordion .accordion-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: #475569;
  padding: 6px 22px 20px 22px;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 14px;
}

.faq-answer-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer-content {
  line-height: 1.75;
}

@media (max-width: 768px) {
  .luxury-faq-wrap {
    padding: 22px 16px;
  }
  .luxury-faq-accordion .accordion-button,
  .faq-accordion .accordion-button {
    padding: 14px 16px;
    font-size: 0.92rem;
  }
  .luxury-faq-accordion .accordion-body,
  .faq-accordion .accordion-body {
    padding: 4px 16px 16px 16px;
    font-size: 0.88rem;
  }
}

/* ============================================================
   24. ABOUT PAGE TIMELINE & DIRECTORS
   ============================================================ */
.company-timeline {
  position: relative;
  padding-left: 36px;
}
.company-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--forest), var(--forest-light));
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 2px;
}
.timeline-event {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.timeline-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Executive Leadership Section (Navy & Gold Theme) */
.leadership-section {
  background: linear-gradient(135deg, #0B2545 0%, #061528 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.leadership-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.executive-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.executive-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(201, 168, 76, 0.25);
}

.executive-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.executive-avatar-seal {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.avatar-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}

.seal-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}

.executive-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.executive-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.executive-experience {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.executive-body {
  position: relative;
  margin-bottom: 24px;
}

.quote-mark {
  font-size: 24px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
}

.executive-statement {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0;
}

.executive-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.executive-pillar {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(201, 168, 76, 0.12);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.value-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold-grad);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card-icon { font-size: 28px; color: var(--forest); margin-bottom: 14px; }
.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.value-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   25. CONTACT PAGE
   ============================================================ */
.contact-map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  height: 380px;
}
.contact-map-card iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   26. FOOTER
   ============================================================ */
.premium-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}
.premium-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
}

.footer-top { padding: 70px 0 40px; }

.footer-brand-logo {
  max-height: 52px;
  width: auto;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(201,168,76,0.3);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 26px; height: 2px;
  background: var(--gold-grad);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-link i {
  color: var(--gold);
  font-size: 11px;
  width: 14px;
  text-align: center;
  transition: transform 0.2s ease;
}
.footer-link:hover {
  color: #ffffff;
  padding-left: 5px;
}
.footer-link:hover i {
  color: var(--gold-light);
  transform: translateX(2px);
}

.footer-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.footer-view-all-link:hover {
  background: var(--gold);
  color: #0B2545 !important;
  border-color: var(--gold);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-info-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.footer-info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-newsletter {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
}
.footer-newsletter h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-input-wrap {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.newsletter-input-wrap input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  outline: none;
}
.newsletter-input-wrap button {
  padding: 10px 16px;
  background: var(--gold-grad);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
}

.footer-social { display: flex; gap: 8px; }
.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: var(--ease-fast);
}
.footer-social-icon:hover {
  background: var(--forest-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-copyright {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
}
.footer-copyright p, .footer-copyright a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-copyright a:hover { color: var(--gold-light); }

/* ============================================================
   27. FLOATING BUTTONS
   ============================================================ */
.floating-buttons-wrap {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.btn-floating {
  position: fixed;
  right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--ease);
  z-index: 9990;
}
.btn-floating:hover {
  transform: scale(1.12);
}

.btn-whatsapp-float { background: #25D366; color: var(--white); }
.btn-call-float { background: var(--navy); color: var(--gold); border: 1.5px solid var(--gold); }

.float-tooltip {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) {
  .float-tooltip { display: none !important; }
  .btn-floating { right: 14px !important; width: 46px; height: 46px; font-size: 18px; }
  .back-to-top { right: 14px !important; }
}
.btn-floating:hover .float-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 165px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  z-index: 9989;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ============================================================
   28. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================================
   LUXURY RESPONSIVE TRUST STRIP (FOOTER BADGES)
   ============================================================ */
.trust-strip {
  background: linear-gradient(135deg, #061426 0%, #0B2545 50%, #061426 100%);
  color: var(--white);
  padding: 20px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.trust-pill-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-pill-card:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.trust-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.trust-pill-card:hover .trust-pill-icon {
  background: var(--gold);
  color: #061426;
}

.trust-pill-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trust-pill-val {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-pill-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 14px 0;
  }
  .trust-pill-card {
    padding: 8px 8px;
    gap: 7px;
    border-radius: 10px;
  }
  .trust-pill-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
    border-radius: 6px;
  }
  .trust-pill-val {
    font-size: 0.74rem;
  }
  .trust-pill-lbl {
    font-size: 0.62rem;
  }
}

/* ============================================================
   29. CATEGORY FILTERS
   ============================================================ */
.cat-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.cat-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--ease-fast);
}
.cat-filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.cat-filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 37, 69,0.22);
}

/* ============================================================
   30. RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 991px) {
  .ai-hero-slide { height: 85vh; min-height: 480px; }
  .hero-heading { font-size: clamp(1.7rem, 5vw, 2.4rem); }
}

@media (max-width: 768px) {
  .hero-heading { font-size: clamp(1.5rem, 6vw, 2.1rem); }
  .hero-para { font-size: 0.92rem; }
  .ai-hero-slide { height: 80vh; min-height: 440px; }
  .stat-card-ultra { padding: 20px 12px; }
  .stat-number-gold { font-size: 1.5rem; }
  .quote-form-card { padding: 24px 18px; }
  .btn { padding: 11px 20px; font-size: 0.82rem; }
  .footer-top { padding: 48px 0 30px; }
}

@media (max-width: 576px) {
  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .floating-buttons-wrap { right: 14px; bottom: 18px; }
  .btn-floating { width: 46px; height: 46px; font-size: 18px; }
  .back-to-top { right: 14px; }
  .brand-card-ultra { padding: 14px 8px; }
  .brand-logo-holder { height: 40px; }
  .brand-logo-holder img { max-height: 34px; }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--forest-light);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   31. FLOATING QUICK INQUIRY SIDEBAR WIDGET
   ============================================================ */
.quick-inquiry-widget {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(60px);
  z-index: 9992;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

/* Visible after scrolling past hero */
.quick-inquiry-widget.widget-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* --- Floating Trigger Tab (Collapsed State) --- */
.quick-inquiry-trigger {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 100%);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-right: none;
  border-radius: 28px 0 0 28px;
  padding: 10px 14px 10px 12px;
  box-shadow: -4px 8px 24px rgba(11, 37, 69, 0.3);
  cursor: pointer;
  z-index: 9993;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: var(--ease);
}
.quick-inquiry-trigger:hover {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding-right: 18px;
  box-shadow: -6px 10px 30px rgba(201, 168, 76, 0.35);
}
.qit-icon-pulse {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
  animation: pulseGold 2s infinite;
}
@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}
.qit-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  white-space: nowrap;
}
.qit-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 2px 6px;
  border-radius: 12px;
}

/* When widget is collapsed on Desktop */
.quick-inquiry-widget.card-collapsed .quick-inquiry-card {
  display: none !important;
}
.quick-inquiry-widget.card-collapsed .quick-inquiry-trigger {
  display: flex !important;
}

/* --- Compact Card Design --- */
.quick-inquiry-card {
  width: 320px;
  max-width: calc(100vw - 36px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(11, 37, 69, 0.28), 0 0 0 1px rgba(201, 168, 76, 0.3);
  overflow: hidden;
  border-top: 4px solid var(--gold);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Header */
.qic-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 100%);
  padding: 14px 16px 12px;
  color: var(--white);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.qic-header-text {
  padding-right: 18px;
}
.qic-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}
.qic-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px;
  line-height: 1.2;
}
.qic-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.3;
}
.qic-close-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
}
.qic-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: scale(1.08);
}

/* Quick Action Buttons (Call Now & WhatsApp) */
.qic-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 14px 0;
}
.qic-act-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: var(--ease);
  font-size: 12px;
}
.qic-act-btn i {
  font-size: 16px;
}
.qic-act-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.qic-act-btn span strong {
  font-size: 11px;
}
.qic-act-btn span small {
  font-size: 9px;
  opacity: 0.85;
}
.qic-act-call {
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.qic-act-call:hover {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.qic-act-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1px solid #20BA5A;
}
.qic-act-whatsapp:hover {
  background: #1EBE5D;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

/* Divider */
.qic-divider {
  text-align: center;
  position: relative;
  margin: 10px 14px 2px;
}
.qic-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-border);
}
.qic-divider span {
  position: relative;
  background: var(--white);
  padding: 0 8px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: lowercase;
}

/* Card Body & Form Fields */
.qic-body {
  padding: 8px 14px 12px;
}
.qic-field {
  margin-bottom: 8px;
}
.qic-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  display: block;
  font-family: 'Inter', sans-serif;
}
.qic-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.qic-field-icon {
  position: absolute;
  left: 10px;
  font-size: 11px;
  color: var(--gold);
  pointer-events: none;
  z-index: 2;
}
.qic-phone-prefix {
  position: absolute;
  left: 26px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  pointer-events: none;
  border-right: 1px solid var(--gray-border);
  padding-right: 5px;
  line-height: 1;
  z-index: 2;
}
.qic-input,
.qic-select {
  width: 100%;
  height: 34px;
  border-radius: 7px;
  border: 1.5px solid var(--gray-border);
  background: var(--gray-soft);
  padding: 0 8px 0 28px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  transition: var(--ease);
}
.qic-input-phone {
  padding-left: 60px;
}
.qic-select {
  cursor: pointer;
  appearance: auto;
}
.qic-input:focus,
.qic-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}
.qic-input::placeholder {
  color: var(--text-light);
  font-size: 11.5px;
}

/* Submit Button */
.qic-submit-btn {
  width: 100%;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #B58A38 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  margin-top: 10px;
}
.qic-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.4);
}
.qic-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Response Alert */
.qic-response {
  margin-top: 8px;
  font-size: 11px;
}
.qic-response .alert {
  padding: 6px 10px;
  margin-bottom: 0;
  font-size: 11.5px;
  border-radius: 6px;
}

/* Card Footer */
.qic-footer {
  background: var(--gray-soft);
  border-top: 1px solid var(--gray-border);
  padding: 6px 10px;
  text-align: center;
  font-size: 9.5px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Backdrop for Mobile */
.quick-inquiry-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 37, 69, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

/* --- Mobile Responsiveness (<= 768px) --- */
@media (max-width: 768px) {
  /* On mobile, collapse card by default into a sleek floating pill */
  .quick-inquiry-widget {
    right: auto;
    left: 14px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .quick-inquiry-widget.widget-visible {
    transform: none;
  }
  
  /* Trigger pill stays neat at bottom left, clear of right-side WhatsApp/Call buttons */
  .quick-inquiry-trigger {
    display: flex !important;
    position: fixed;
    left: 14px;
    bottom: 20px;
    right: auto;
    top: auto;
    transform: none;
    border-radius: 30px;
    border-right: 1.5px solid var(--gold);
    padding: 8px 14px 8px 10px;
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.35);
  }
  .quick-inquiry-trigger .qit-icon-pulse {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .quick-inquiry-trigger .qit-text {
    font-size: 11px;
  }

  /* Card is hidden by default on mobile, opens as bottom-sheet modal when trigger is tapped */
  .quick-inquiry-card {
    display: none;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 15px;
    top: auto;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
    z-index: 9999;
    border-radius: 18px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    animation: slideUpMobile 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUpMobile {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  /* When active on mobile */
  .quick-inquiry-widget.mobile-active .quick-inquiry-card {
    display: block !important;
  }
  .quick-inquiry-widget.mobile-active .quick-inquiry-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .quick-inquiry-widget.mobile-active .quick-inquiry-trigger {
    display: none !important;
  }
}

/* ============================================================
   ARCHITECTURAL SERVICES PAGE REDESIGN (UI/UX PREMIUM UPGRADE)
   ============================================================ */
.service-card-arch {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card-arch:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
  border-color: rgba(201, 168, 76, 0.45);
}

.service-card-arch .card-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.service-card-arch .card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-arch:hover .card-thumb-wrap img {
  transform: scale(1.04);
}

.service-card-arch .card-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(11, 37, 69, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card-arch .card-body-arch {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-arch .service-title-arch {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.service-card-arch .service-desc-arch {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card-arch .service-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-card-arch .spec-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 4px 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card-arch .spec-chip i {
  color: var(--gold);
  font-size: 11px;
}

.btn-service-arch {
  background: var(--navy);
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-service-arch:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}

.btn-service-arch:hover i {
  transform: translateX(3px);
}

.btn-service-arch i {
  transition: transform 0.2s ease;
  color: var(--gold-light);
}

.btn-service-arch:hover i {
  color: var(--navy) !important;
}

/* Advantage Cards */
.advantage-card-arch {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  transition: all 0.2s ease;
}

.advantage-card-arch:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.06);
  transform: translateY(-2px);
}

.advantage-card-arch .advantage-icon-arch {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.advantage-card-arch .advantage-title-arch {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.advantage-card-arch .advantage-desc-arch {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Brands Grid Architectural Treatment */
.brand-section-arch {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

.brand-card-arch {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.brand-card-arch:hover {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.08);
  transform: translateY(-3px);
}

.brand-card-arch img {
  max-height: 44px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.25s ease;
}

.brand-card-arch:hover img {
  transform: scale(1.06);
}

@media (max-width: 767px) {
  .service-card-arch .card-body-arch {
    padding: 18px 16px;
  }
  .service-card-arch .service-title-arch {
    font-size: 1.15rem;
  }
  .advantage-card-arch {
    padding: 20px 16px;
  }
  .consultation-form-card {
    padding: 26px 20px !important;
  }
}

/* ============================================================
   ARCHITECTURAL CONSULTATION & INQUIRY SECTION (LUXURY STUDIO FRAME)
   ============================================================ */
.consultation-section-arch {
  background: #f8fafc;
  position: relative;
  padding: 90px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.consultation-studio-frame {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 37, 69, 0.08);
}

.consultation-left-stage {
  background: linear-gradient(155deg, #0B2545 0%, #061426 100%);
  padding: 50px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.consultation-left-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.consultation-right-stage {
  background: #ffffff;
  padding: 50px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation-trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.consultation-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.25s ease;
}

.consultation-trust-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateX(4px);
}

.consultation-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
  flex-shrink: 0;
}

.consultation-trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

.consultation-trust-text strong {
  color: #ffffff;
  font-weight: 600;
}

.consultation-right-stage .form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.consultation-right-stage .input-group-text {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-right: none;
  color: var(--navy);
  font-size: 0.9rem;
  border-radius: 8px 0 0 8px;
}

.consultation-right-stage .form-control,
.consultation-right-stage .form-select {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  border-radius: 0 8px 8px 0;
  padding: 11px 14px;
  transition: all 0.2s ease;
}

.consultation-right-stage .form-control:focus,
.consultation-right-stage .form-select:focus {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
  color: #0f172a;
}

@media (max-width: 991px) {
  .consultation-left-stage {
    padding: 36px 28px;
  }
  .consultation-right-stage {
    padding: 36px 28px;
  }
}

@media (max-width: 576px) {
  .consultation-section-arch {
    padding: 60px 0;
  }
  .consultation-studio-frame {
    border-radius: 18px;
  }
  .consultation-left-stage {
    padding: 28px 20px;
  }
  .consultation-right-stage {
    padding: 28px 20px;
  }
}

/* ============================================================
   ULTRA-ATTRACTIVE PRODUCT PAGE STYLING (LUXURY ARCHITECTURAL)
   ============================================================ */
.product-hero-stage {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 16px 50px rgba(11, 37, 69, 0.06);
  position: relative;
  overflow: hidden;
  margin-bottom: 44px;
}

.product-hero-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a84c, #0B2545, #c9a84c);
}

.product-photo-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  border: 2px solid rgba(201, 168, 76, 0.35);
  background: linear-gradient(145deg, #0B2545 0%, #061426 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-photo-stage img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-photo-stage:hover img {
  transform: scale(1.03);
}

.product-photo-badge-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 37, 69, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  padding: 10px 16px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-photo-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 100px;
  padding: 6px 14px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
}

.product-trust-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.product-trust-card:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 37, 69, 0.05);
}

.product-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.product-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.product-card-luxury-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 40px;
  transition: all 0.25s ease;
}

.product-card-luxury-box:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.07);
}

.product-brand-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.product-brand-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(11, 37, 69, 0.09);
}

.product-brand-box img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.product-app-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.product-app-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(11, 37, 69, 0.08);
}

.product-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(11, 37, 69, 0.1) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

@media (max-width: 991px) {
  .product-hero-stage {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .product-photo-stage {
    min-height: 380px !important;
    max-height: 520px !important;
    height: auto !important;
    width: 100% !important;
    padding: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px 0 10px !important;
  }
  .product-photo-stage img {
    width: 100% !important;
    height: auto !important;
    max-height: 480px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .product-photo-badge-top,
  .product-photo-badge-bottom {
    display: none !important;
  }
  .product-card-luxury-box {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .product-hero-stage {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .product-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0 22px;
  }
  .product-photo-stage {
    min-height: 340px !important;
    max-height: 460px !important;
    padding: 10px !important;
    margin: 16px 0 8px !important;
  }
  .product-photo-stage img {
    max-height: 420px !important;
  }
  .product-card-luxury-box {
    padding: 22px 14px;
    border-radius: 16px;
  }
}