/* 
  Spectrum Developers - Main Stylesheet
  All CSS rules, Design System & CSS Root Variables
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS ROOT VARIABLES (DESIGN SYSTEM TOKENS)
   ========================================================================== */
:root {
  /* Brand Color Palette */
  --color-gold-primary: #C5A059;
  --color-gold-light: #DFBF77;
  --color-gold-dark: #9A7732;
  --color-gold-hover: #E8CC8B;
  --color-gold-glow: rgba(197, 160, 89, 0.35);

  /* Background Colors */
  --color-dark-bg: #0A0C0E;
  --color-dark-overlay: rgba(10, 12, 14, 0.45);
  --color-header-bg: rgba(10, 12, 14, 0.85);
  --color-header-scrolled: rgba(10, 12, 14, 0.95);

  /* Text Colors */
  --color-text-white: #FFFFFF;
  --color-text-muted: rgba(255, 255, 255, 0.85);
  --color-text-subtle: rgba(255, 255, 255, 0.65);

  /* Dropdown Specific Colors */
  --color-dropdown-bg: #FFFFFF;
  --color-dropdown-text: #1E293B;
  --color-dropdown-hover-bg: #F8FAFC;
  --color-dropdown-accent: #1C4480;
  --color-dropdown-border-top: #C5A059;

  /* Typography */
  --font-serif: 'Trajan Pro', 'Trajan', 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --fs-hero-title: clamp(2.5rem, 5.5vw, 4.8rem);
  --fs-hero-sub: clamp(1rem, 2vw, 1.35rem);
  --fs-nav-link: 0.8125rem;
  /* 13px */
  --fs-dropdown-link: 0.9375rem;
  /* 15px */
  --fs-btn: 0.8125rem;
  /* 13px */

  /* Spacing & Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-dropdown: 0 14px 35px rgba(0, 0, 0, 0.2);
  --shadow-gold-glow: 0 0 25px rgba(197, 160, 89, 0.3);
}

/* ==========================================================================
   GLOBAL RESET & BASICS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark-bg);
  color: var(--color-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   HEADER & NAVBAR STYLES
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 3rem 0;
  transition: var(--transition-smooth);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.nav-container {
  max-width: 1650px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.brand-logo img {
  height: 100px;
  width: auto;
  transition: var(--transition-fast);
}

/* Main Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  padding: 0.75rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition: var(--transition-fast);
}

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

/* Active or Dropdown-Open Nav Link Highlight */
.nav-item.dropdown-active .nav-link,
.nav-link.active {
  color: var(--color-gold-primary);
}

/* Gold Top Highlight Indicator*/
.nav-item.has-dropdown::before {
  content: '';
  position: absolute;
  top: -0.25rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-dropdown-border-top);
  opacity: 0;
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.nav-item.has-dropdown:hover::before,
.nav-item.has-dropdown.dropdown-active::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Dropdown Arrow Icon */
.dropdown-icon {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  margin-left: 2px;
}

.nav-item:hover .dropdown-icon,
.nav-item.dropdown-active .dropdown-icon {
  transform: rotate(180deg);
  color: var(--color-gold-primary);
}

/* ==========================================================================
   DROPDOWN MENU
   ========================================================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 360px;
  background-color: var(--color-dropdown-bg);
  border-radius: 2px;
  box-shadow: var(--shadow-dropdown);
  padding: 1rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-fast);
  z-index: 1100;
}

/* Show Dropdown on Hover or Focus */
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.1rem;
  font-family: var(--font-sans);
  font-size: var(--fs-dropdown-link);
  font-weight: 500;
  color: var(--color-dropdown-accent);
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.dropdown-link:hover,
.dropdown-link.active {
  background-color: var(--color-dropdown-hover-bg);
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* ==========================================================================
   HAMBURGER MOBILE MENU BUTTON
   ========================================================================== */
.hamburger-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1.5rem;
  z-index: 1002;
}

.hamburger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-white);
  margin: 3px 0;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hamburger-toggle:hover .hamburger-bar {
  background-color: var(--color-gold-primary);
}

/* Mobile Slide-out Drawer (Left Side) & Backdrop */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1999;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  background-color: #0A0C0E;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 2000;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-drawer.open {
  transform: translateX(0);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
}

/* Drawer Header Row (Logo Left, Close Icon Right) */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(199, 163, 90, 0.2);
  background-color: #08090C;
}

.drawer-logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.drawer-close-btn:hover {
  color: #d4a958;
  transform: rotate(90deg);
}

/* Drawer Navigation List */
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
  display: block;
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #d4a958;
  background-color: rgba(199, 163, 90, 0.05);
}

/* Mobile Accordion Dropdown for Destinations */
.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
  text-align: left;
}

.mobile-accordion-toggle:hover,
.mobile-accordion-toggle.active {
  color: #d4a958;
}

.accordion-arrow {
  font-size: 0.75rem;
  transition: transform 0.35s ease;
}

.mobile-has-accordion.open .accordion-arrow {
  transform: rotate(180deg);
  color: #d4a958;
}

.mobile-accordion-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-has-accordion.open .mobile-accordion-menu {
  max-height: 300px;
}

.mobile-sub-link {
  display: block;
  padding: 14px 24px 14px 38px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
  color: #d4a958;
  padding-left: 44px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    url('../assets/images/slider-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-container {
  max-width: 1650px;
  width: 92%;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

/* Luxury Serif Typography */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 9rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
}

.hero-title .title-line-1 {
  display: block;
  color: #FFFFFF;
  font-weight: 400;
}

.hero-title .title-line-2 {
  display: block;
  color: #C5A059;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.30rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.3px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* Hero CTA Action Group */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}

/* Button 1: EXPLORE DESTINATIONS ➔ */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #C5A059;
  background-color: transparent;
  color: #C5A059;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  /* 13px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0.85rem 1.65rem;
  transition: var(--transition-smooth);
  position: relative;
}

.btn-gold-outline .arrow-icon {
  font-size: 0.95rem;
  color: #C5A059;
  transition: transform var(--transition-fast);
}

.btn-gold-outline:hover {
  background-color: rgba(197, 160, 89, 0.15);
  color: #F5D77F;
  border-color: #F5D77F;
  box-shadow: var(--shadow-gold-glow);
}

.btn-gold-outline:hover .arrow-icon {
  transform: translateX(4px);
  color: #F5D77F;
}

/* Button 2: DISCOVER THE LEGACY */
.btn-gold-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  /* 13px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  padding: 0.4rem 0;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #C5A059;
  transition: var(--transition-fast);
}

.btn-gold-link:hover {
  color: #C5A059;
  text-decoration-color: #C5A059;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1390px) {
  .nav-menu {
    display: none;
    /* Switch to hamburger menu on screens 1390px and below */
  }

  .hamburger-toggle {
    display: flex;
  }
}

@media (min-width: 1391px) {
  .hamburger-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 5%;
  }

  .hero-section {
    padding: 0 5%;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .btn-gold-outline,
  .btn-gold-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   FIVE PILLARS FEATURE SECTION (#000000 Pure Black)
   ========================================================================== */
.pillars-section {
  width: 100%;
  background-color: #000000;
  padding: 110px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.pillars-container {
  max-width: 1520px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Area */
.pillars-header {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillars-title-white {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.97vw, 9rem);
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pillars-title-gold {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.3vw, 9rem);
  font-weight: 400;
  color: #C89B4B;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pillars-description {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* 5 Pillars Grid */
.pillars-grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.pillar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

/* Icon Box Container (95px) */
.pillar-icon-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background-color: transparent;
}

.pillar-icon-box img {
  width: 120%;
  height: 120%;
  object-fit: contain;
}

/* Feature Title */
.pillar-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* Description */
.pillar-item-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* Vertical Gold Dividers (240px height) */
.pillar-divider {
  width: 1px;
  height: 240px;
  background-color: rgba(200, 155, 75, 0.45);
  align-self: center;
  flex-shrink: 0;
}

/* Bottom Area */
.pillars-bottom {
  margin-top: 10px;
  text-align: center;
}

.pillars-bottom-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #C89B4B;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.pillars-bottom-subtitle {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  /* 22px */
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

/* Responsive Grid Rules */
@media (max-width: 1024px) {
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }

  .pillar-divider {
    display: none;
  }

  /* Center the 5th pillar (Architecture) in 2-column grid layout */
  .pillars-grid .pillar-col:last-of-type {
    grid-column: span 2;
    justify-self: center;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pillars-section {
    padding: 70px 0;
  }

  .pillars-title-white {
    font-size: clamp(1.6rem, 7.5vw, 3rem);
    letter-spacing: 2px;
  }

  .pillars-title-gold {
    font-size: clamp(1.3rem, 5.5vw, 2.8rem);
    letter-spacing: 1.5px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .pillars-description {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
    line-height: 1.6;
    padding: 0 10px;
  }

  .pillars-description br {
    display: none;
  }

  .pillars-bottom-title {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    letter-spacing: 2px;
  }

  .pillars-bottom-subtitle {
    font-size: clamp(0.9rem, 3.8vw, 1.15rem);
  }
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 0.75rem;
  }

  .pillars-grid .pillar-col {
    padding: 0 0.35rem;
  }

  .pillar-icon-box {
    width: 85px;
    height: 85px;
    margin-bottom: 12px;
  }

  .pillar-item-title {
    font-size: 0.92rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    text-align: center;
  }

  .pillar-item-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    max-width: 100%;
    text-align: center;
  }

  .pillars-grid .pillar-col:last-of-type {
    grid-column: span 2;
    justify-self: center;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   MASTERPLAN EXPERIENCE SECTION
   ========================================================================== */
.masterplan-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(8, 10, 12, 0.37) 0%, rgba(8, 10, 12, 0.55) 100%),
    url('../assets/images/masterexperience.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
  box-sizing: border-box;
  color: #FFFFFF;
}

.masterplan-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

/* Left Panel Content */
.masterplan-left {
  flex: 1;
  max-width: 595px;
}

.masterplan-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.masterplan-title .title-white {
  display: block;
  color: #FFFFFF;
}

.masterplan-title .title-gold {
  display: block;
  color: #C8A15A;
}

.masterplan-description {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 505px;
  margin-bottom: 2rem;
}

/* Destination Menu Navigation (Max 4 Visible, Rest Scrollable, Hidden Scrollbar) */
.destination-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
  width: 100%;
  max-width: 435px;
  max-height: 215px;
  overflow-y: auto;
  padding-right: 0;
  box-sizing: border-box;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.destination-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.menu-item {
  border-bottom: 1px solid rgba(200, 161, 90, 0.35);
  margin-bottom: 4px;
}

.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  /* 14px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0 0.5rem;
  transition: all var(--transition-fast);
}

.menu-item:hover .menu-link {
  color: #C8A15A;
  padding-left: 0.75rem;
}

/* Active Menu Item Box (Compact & Clean) */
.menu-item.active {
  border-bottom: none;
}

.menu-item.active .menu-link {
  border: 1px solid #C8A15A;
  color: #C8A15A;
  height: 50px;
  padding: 0 1rem;
  background-color: rgba(200, 161, 90, 0.05);
}

.menu-arrow {
  font-size: 0.85rem;
  color: #C8A15A;
  transition: transform var(--transition-fast);
}

.menu-link:hover .menu-arrow {
  transform: translateX(4px);
}

/* Bottom Action Buttons (Stacked Vertically) */
.masterplan-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.btn-glass-pill,
.btn-outline-pill {
  width: 65%;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  height: 44px;
  padding: 0 1.5rem;
  background: rgb(61 61 61 / 51%);
  border-radius: 50px;
  color: #E2E2E2;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.btn-glass-pill i,
.btn-outline-pill i {
  color: #C8A15A;
  font-size: 0.85rem;
}

.btn-glass-pill:hover,
.btn-outline-pill:hover {
  background: rgba(22, 25, 28, 0.95);
  border-color: #C8A15A;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(200, 161, 90, 0.2);
}

/* Right Floating Luxury Info Card (420px) */
.masterplan-right {
  width: 460px;
  flex-shrink: 0;
}

.luxury-card {
  width: 100%;
  background: #0F0F0F;
  border: 2px solid #C8A15A;
  border-radius: 30px;
  overflow: hidden;
  transition: opacity 0.22s ease-in-out, transform 0.22s ease-in-out;
  will-change: opacity, transform;
}

.luxury-card.card-fading {
  opacity: 0;
  transform: translateY(8px);
}

.card-image-box {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-body {
  padding: 1.25rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #C8A15A;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-subtitle {
  font-family: var(--font-serif);
  font-size: 0.79rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 0.89rem;
  font-weight: 300;
  color: #BDBDBD;
  line-height: 1.6;
}

/* Card Feature Icons Row */
.card-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  margin-top: 0.75rem;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.feature-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(54%) saturate(464%) hue-rotate(6deg) brightness(92%) contrast(87%);
}

.feature-item span {
  font-family: var(--font-serif);
  font-size: 0.625rem;
  /* 10px */
  font-weight: 600;
  color: #C8A15A;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.feature-divider {
  width: 1px;
  height: 45px;
  background-color: rgba(200, 161, 90, 0.3);
}

/* Card Bottom Button */
.card-btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 52%;
  height: 30px;
  border: 1px solid #C8A15A;
  background: transparent;
  color: #C8A15A;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  margin: 0 auto;
}

.card-btn-gold:hover {
  background: #C8A15A;
  color: #000000;
}

.card-btn-gold .arrow-icon {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.card-btn-gold:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive Rules for Masterplan Experience */
@media (max-width: 1024px) {
  .masterplan-container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .masterplan-left {
    max-width: 100%;
    width: 100%;
  }

  .masterplan-right {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .masterplan-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-glass-pill,
  .btn-outline-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EXPERIENCES THAT DEFINE LIVING SECTION
   ========================================================================== */
.experiences-section {
  position: relative;
  width: 100%;
  min-height: 900px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('../assets/images/defineliving.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.experiences-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top Heading Area (Centered within 1440px max-width) */
.experiences-header {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto 60px;
  text-align: center;
}

.experiences-title-white {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  /* ~80px */
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.experiences-title-gold {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  /* ~70px */
  font-weight: 300;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.experiences-subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Swiper Carousel Container (100% Full Width Edge to Edge) */
.carousel-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 0 10vw;
  overflow: hidden;
  position: relative;
}

.experiences-swiper {
  width: 100%;
  padding: 30px 0 60px !important;
  overflow: hidden !important;
}

.experiences-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Card Design (380px x 500px) */
.swiper-slide.experience-card {
  width: 450px !important;
  height: 520px !important;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, filter 0.4s ease;
  user-select: none;
  box-sizing: border-box;
}

.swiper-slide-active.experience-card {
  transform: scale(1.04);
}

.card-img-holder {
  width: 100%;
  height: 420px;
  /* ~84% of card height */
  overflow: hidden;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.experience-card:hover .card-img-holder img {
  transform: scale(1.05);
}

/* Caption (Pure White Background) */
.card-caption {
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.card-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  /* ~22px - 24px */
  font-weight: 500;
  color: #2F3C48;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

/* Swiper Dots Navigation */
.experiences-swiper .swiper-pagination {
  position: relative !important;
  margin-top: 30px !important;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.experiences-swiper .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
}

.experiences-swiper .swiper-pagination-bullet-active {
  background-color: #d4a958 !important;
  opacity: 1 !important;
  transform: scale(1.3) !important;
}

/* Responsive Grid / Carousel Rules */
@media (max-width: 1024px) {
  .swiper-slide.experience-card {
    width: 320px !important;
    height: 460px !important;
  }

  .card-img-holder {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .carousel-wrapper {
    padding: 0 20px;
  }

  .swiper-slide.experience-card {
    width: 100% !important;
    height: 420px !important;
  }
}

/* ==========================================================================
   CONSTRUCTION & INFRASTRUCTURE SECTION
   ========================================================================== */
.construction-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-image:
    url('../assets/images/construction-sec.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0 50px;
  color: #FFFFFF;
  box-sizing: border-box;
}

.construction-container {
  max-width: 1700px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3.5rem;
}

/* Left Content (Aligned to TOP) */
.construction-left {
  flex: 1;
  align-self: flex-start;
}

.construction-subtitle {
  font-family: var(--font-serif);
  font-size: 1.54rem;
  /* ~16px - 17px */
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.construction-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  /* ~68px - 72px */
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.construction-title .title-white {
  display: block;
  color: #FFFFFF;
}

.construction-title .title-gold {
  display: block;
  color: #d4a958;
}

.construction-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 570px;
  margin-top: 22px;
}

/* Right Floating Glass Card (Aligned to BOTTOM) */
.construction-right {
  width: 390px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -10px;
}

.construction-card {
  margin-top: 80px;
  width: 100%;
  background: rgba(18, 18, 22, 0.75);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
}

.card-logo-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.card-logo-box img {
  max-width: 115px;
  height: auto;
  object-fit: contain;
}

/* Feature List */
.construction-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-check-icon {
  font-size: 1rem;
  color: #d4a958;
}

.feature-row span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  /* ~17px */
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .construction-container {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    text-align: center;
  }

  .construction-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .construction-description {
    max-width: 600px;
  }

  .construction-right {
    width: 100%;
    max-width: 420px;
    align-self: center;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }

  .construction-card {
    margin-top: 0;
    width: 100%;
  }
}

/* ==========================================================================
   INFRASTRUCTURE FEATURES SECTION
   ========================================================================== */
.infra-features-section {
  width: 100%;
  background-color: #000000;
  padding: 0 0 80px;
  position: relative;
  box-sizing: border-box;
}

/* Top 5 Image Grid Gallery (Full Width 5 Equal Columns) */
.infra-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.gallery-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.65) 65%,
      #000000 100%);
  pointer-events: none;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  max-width: 305px;
  z-index: 2;
  box-sizing: border-box;
}

.gallery-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  /* ~16px - 17px */
  font-weight: 500;
  color: #C8A15A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.gallery-content p {
  font-family: var(--font-sans);
  font-size: 0.70rem;
  /* ~13px */
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Gold Border Feature Panel */
.infra-panel-wrapper {
  width: 100%;
  max-width: 1700px;
  width: 92%;
  margin: 40px auto 0;
}

.infra-feature-panel {
  width: 100%;
  background-color: #090909;
  border: 1px solid #d4a958;
  border-radius: 45px;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.infra-feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  transition: transform 0.35s ease;
}

.infra-feature-item:hover {
  transform: translateY(-6px);
}

.feature-icon-box {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(54%) saturate(464%) hue-rotate(6deg) brightness(92%) contrast(87%);
}

.infra-feature-item h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  /* ~14px */
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 1.3;
}

.infra-feature-item p {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  /* ~12px */
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  max-width: 170px;
  margin: 0 auto;
}

/* Vertical Gold Dividers */
.infra-divider {
  width: 1px;
  height: 150px;
  background-color: #d4a958;
  flex-shrink: 0;
}

/* Responsive Grid & Touch Slider Rules */
@media (max-width: 1024px) {
  .infra-gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 0;
    padding: 0;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .infra-gallery-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .infra-gallery-grid .gallery-card {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 250px;
    scroll-snap-align: start;
    border-radius: 0;
    border: none;
  }

  .infra-feature-panel {
    flex-wrap: wrap;
    gap: 30px 0;
  }

  .infra-feature-item {
    flex: 0 0 33.333%;
  }

  .infra-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .infra-gallery-grid .gallery-card {
    flex: 0 0 70vw;
    width: 70vw;
    height: 230px;
  }

  .infra-feature-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 0.5rem;
    padding: 24px 12px;
    border-radius: 24px;
  }

  .infra-feature-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .feature-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .infra-feature-item h4 {
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
  }

  .infra-feature-item p {
    font-size: 0.72rem;
    line-height: 1.4;
    max-width: 100%;
  }
}

/* ==========================================================================
   INVEST TODAY. GROW TOMORROW SECTION
   ========================================================================== */
.invest-section {
  position: relative;
  width: 100%;
  min-height: 850px;
  background-image:
    url('../assets/images/invest-sec.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0 90px;
  color: #FFFFFF;
  box-sizing: border-box;
}

.invest-container {
  max-width: 1650px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Top Content */
.invest-header {
  text-align: left;
}

.invest-title-white {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  /* ~78px */
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.invest-title-gold {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  /* ~72px */
  font-weight: 300;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0;
}

.invest-description {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  /* ~18px - 20px */
  font-weight: 300;
  line-height: 1.8;
  max-width: 565px;
}

/* Subtitle */
.invest-subtitle {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  /* ~30px - 34px */
  font-weight: 400;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* 5 Column Feature Grid */
.invest-feature-grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.invest-feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  transition: transform 0.35s ease;
}

.invest-feature-card:hover {
  transform: translateY(-8px);
}

.invest-icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.invest-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(54%) saturate(464%) hue-rotate(6deg) brightness(92%) contrast(87%);
}

.invest-feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  /* ~17px - 18px */
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.25;
  margin-bottom: 10px;
  margin-top: 0;
}

.invest-feature-card p {
  font-family: var(--font-sans);
  font-size: 1.10rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 auto;
}

/* Vertical Gold Dividers */
.invest-divider {
  width: 2px;
  height: 210px;
  background-color: #d4a958;
  flex-shrink: 0;
}

/* Bottom Floating Information Card */
.invest-bottom-card {
  width: 880px;
  max-width: 100%;
  min-height: 130px;
  background: #111111;
  border: 3px solid #d4a958;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 20px;
  margin: 55px auto 0;
  align-self: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
}

.invest-bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(199, 163, 90, 0.15);
}

.card-media {
  width: 260px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.invest-bottom-card:hover .card-media img {
  transform: scale(1.05);
}

.card-info {
  flex: 1;
}

.card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  /* ~28px - 34px */
  font-weight: 500;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 1.2;
}

.card-info p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  /* 15px - 16px */
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .invest-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .invest-feature-card {
    width: 100%;
    padding: 0 10px;
  }

  .invest-divider {
    display: none;
  }

  /* Center the 5th card (SECURE & RELIABLE INVESTMENT) in 2-column grid */
  .invest-feature-grid .invest-feature-card:last-of-type {
    grid-column: span 2;
    justify-self: center;
    max-width: 450px;
    margin: 0 auto;
  }

  .invest-bottom-card {
    width: 100%;
    flex-direction: column;
    height: auto;
    align-items: center;
    text-align: center;
  }

  .card-media {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .invest-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 0.75rem;
  }

  .invest-feature-card {
    width: 100%;
    padding: 0 0.25rem;
  }

  .invest-icon-box {
    height: 44px;
    margin-bottom: 10px;
  }

  .invest-icon-box img {
    max-height: 40px;
  }

  .invest-feature-card h4 {
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
  }

  .invest-feature-card p {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .invest-feature-grid .invest-feature-card:last-of-type {
    grid-column: span 2;
    justify-self: center;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   CONTACT US & PRIVATE CONSULTATION SECTION
   ========================================================================== */
.contact-section {
  position: relative;
  width: 100%;
  background-color: #000000;
  padding: 100px 0;
  color: #FFFFFF;
  box-sizing: border-box;
}

.contact-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10rem;
  padding-right: 5vw;
}

/* Left Column: Office Image & Info */
.contact-left {
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-media-box {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.contact-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-welcome-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 5vw;
}

.welcome-subtitle {
  font-family: var(--font-serif);
  font-size: 2rem;
  /* ~16px */
  font-weight: 400;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.welcome-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.05;
}

.welcome-description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

/* Office Locations List */
.office-locations-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 15px;
}

.office-location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.office-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.office-info h5 {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.office-info h5 .city-tag {
  color: #d4a958;
}

.office-info p {
  max-width: 400px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  /* ~13px */
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

/* Right Column: Form */
.contact-right {
  flex: 1;
  max-width: 690px;
}

.form-subtitle {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  /* ~15px */
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  margin-top: 0;
}

.form-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

.form-title .title-white {
  display: block;
  color: #FFFFFF;
}

.form-title .title-gold {
  display: block;
  color: #d4a958;
}

.form-description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 18px;
  margin-bottom: 30px;
  max-width: 540px;
}

/* Gold Outlined Form Controls */
.luxury-consultation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row.gap-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  width: 100%;
}

.gold-outlined-input,
.gold-outlined-textarea {
  width: 100%;
  background-color: #000000;
  border: 2px solid rgba(199, 163, 90, 0.4);
  padding: 25px 18px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gold-outlined-input::placeholder,
.gold-outlined-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.gold-outlined-input:focus,
.gold-outlined-textarea:focus {
  outline: none;
  border-color: #d4a958;
  box-shadow: 0 0 12px rgba(199, 163, 90, 0.25);
}

.btn-arrange-consultation {
  width: 100%;
  height: 54px;
  background-color: #d4a958;
  border: 1px solid #d4a958;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.35s ease;
}

.btn-arrange-consultation:hover {
  background-color: #d8b264;
  box-shadow: 0 10px 25px rgba(199, 163, 90, 0.3);
}

.privacy-note {
  display: flex;
  max-width: 410px;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 1.09rem;
}

.privacy-lock {
  color: #d4a958;
  font-size: 1.1rem;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 4rem;
    padding-right: 0;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }

  .contact-welcome-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-right {
    padding: 0 20px;
  }

  .contact-media-box {
    height: 300px;
  }

  .form-row.gap-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================================================
   PRE-FOOTER TOP BAR & ULTRA-LUXURY FOOTER
   ========================================================================== */

/* Pre-Footer Bar */
.pre-footer-bar {
  width: 100%;
  display: flex;
  background-color: #050505;
  border-top: 1px solid #d4a958;
  border-bottom: 1px solid rgba(199, 163, 90, 0.2);
  box-sizing: border-box;
}

.pre-footer-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 35px 40px;
}

.pre-footer-item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pre-footer-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pre-footer-icon img {
  width: 100%;
  height: 100%;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(54%) saturate(464%) hue-rotate(6deg) brightness(92%) contrast(87%);
}

.pre-footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: left;
}

.pre-footer-info h5 {
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 0.82vw, 0.86rem);
  font-weight: 600;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.25;
}

.pre-footer-info p {
  font-family: var(--font-sans);
  font-size: clamp(0.74rem, 0.8vw, 0.84rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.4px;
  line-height: 1.25;
  text-transform: uppercase;
}

.pre-footer-info p.white-text {
  color: #FFFFFF;
  font-weight: 700;
}

.pre-footer-info .phone-link {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: #FFFFFF;
  text-decoration: none;
  margin-top: 2px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: inline-block;
}

.pre-footer-info .phone-link:hover {
  color: #d4a958;
}

.pre-footer-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(212, 169, 88, 0.5);
  flex-shrink: 0;
}

.pre-footer-right {
  width: 360px;
  flex-shrink: 0;
  overflow: hidden;
}

.pre-footer-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Site Footer Main */
.site-footer {
  position: relative;
  width: 100%;
  background-image: linear-gradient(180deg, rgb(0 0 0 / 52%) 0%, rgba(0, 0, 0, 0.94) 100%), url(../assets/images/footer.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 80px 0 0;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1650px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 35px;
}

.footer-col {
  flex: 1;
}

.footer-col.col-brand {
  flex: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo {
  height: auto;
  max-height: 140px;
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #d4a958;
  padding-left: 5px;
}

.footer-col-divider {
  width: 1px;
  min-height: 220px;
  background-color: rgba(199, 163, 90, 0.25);
  flex-shrink: 0;
  align-self: stretch;
}

/* Connect Column */
.footer-col.col-connect {
  flex: 1.3;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.gold-icon {
  color: #d4a958;
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-text strong {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.contact-text .gold-text {
  color: #d4a958;
}

.contact-text p {
  margin: 2px 0 0;
  font-weight: 300;
}

.emails-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.emails-list a,
.contact-text .phone-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.emails-list a:hover,
.contact-text .phone-link:hover {
  color: #d4a958;
}

/* Priority Support Floating Card */
.priority-support-card {
  width: 325px;
  max-width: 90%;
  margin: 0 auto 50px;
  border: 1.5px solid #d4a958;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.support-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-info h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 3px 0;
}

.support-info p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  width: 100%;
  border-top: 1px solid rgba(199, 163, 90, 0.3);
  padding: 22px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.copyright-text {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d4a958;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a958;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background-color: #d4a958;
  color: #000000;
  transform: translateY(-3px);
}

/* Pre-Footer & Footer Responsive Rules */
@media (max-width: 1200px) {
  .pre-footer-bar {
    flex-direction: column;
  }

  .pre-footer-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 35px 30px;
  }

  .pre-footer-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .pre-footer-icon {
    width: 60px;
    height: 60px;
  }

  .pre-footer-icon img {
    max-width: 60px;
    max-height: 60px;
  }

  .pre-footer-info {
    text-align: left;
    align-items: flex-start;
  }

  .pre-footer-divider {
    display: none;
  }

  .pre-footer-right {
    width: 100%;
    height: 220px;
  }

  /* Tablet / mid screens: clean 2-col grid (fixes 1024px footer break) */
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
    align-items: start;
    justify-content: stretch;
  }

  .footer-col-divider {
    display: none !important;
  }

  .footer-col {
    flex: unset;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
  }

  /* Logo full-width on top row */
  .footer-col.col-brand {
    grid-column: 1 / -1;
    flex: unset;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 4px;
  }

  .footer-col.col-brand .footer-logo {
    max-width: 200px;
    max-height: 110px;
  }

  .footer-col.col-connect {
    flex: unset;
  }

  .footer-col-title {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .pre-footer-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    padding: 30px 20px;
  }

  .pre-footer-item {
    gap: 12px;
  }

  .pre-footer-icon {
    width: 50px;
    height: 50px;
  }

  .pre-footer-icon img {
    max-width: 50px;
    max-height: 50px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 22px 20px;
  }

  .copyright-text {
    text-align: left;
  }
}

/* 320px–700px: hide LEGACY / DESTINATIONS / EXPERIENCE — keep Logo + CONNECT aligned */
@media (max-width: 700px) {
  .footer-nav-col,
  .footer-nav-divider {
    display: none !important;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-col.col-brand,
  .footer-col.col-connect {
    grid-column: auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer-col.col-brand {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-col.col-connect {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .pre-footer-left {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px 18px;
  }

  .pre-footer-item {
    gap: 16px;
  }
}

/* ==========================================================================
   FARM LANDS PAGE HERO SECTION
   ========================================================================== */
.farmlands-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #07080A;
  padding: 100px 20px 140px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}

.farmlands-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../assets/images/farm-land.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.farmlands-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.55) 100%);
}

.farmlands-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* Upper-middle placement (design match) */
  transform: translateY(-12vh);
}

.farmlands-subtitle-top {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 0.15rem;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.farmlands-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  color: #d4a958;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 0.85rem;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.4);
}

.farmlands-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 1.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.farmlands-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: auto;
  margin-top: 0;
}

.farmlands-coming-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.9vw, 2rem);
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 6px;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* Bottom 150+ Acres info capsule — absolute so text can true-center */
.farmlands-info-capsule {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(560px, 92vw);
  margin: 0;
  padding: 18px 32px;
  background: rgba(10, 12, 14, 0.55);
  border: 1.5px solid #d4a958;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
  text-align: left;
}

.farmlands-acres {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 90px;
}

.farmlands-acres-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 500;
  color: #d4a958;
  line-height: 1;
  letter-spacing: 1px;
}

.farmlands-acres-label {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.farmlands-info-divider {
  width: 1px;
  align-self: stretch;
  min-height: 64px;
  background: rgba(212, 169, 88, 0.85);
  flex-shrink: 0;
}

.farmlands-info-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.farmlands-info-lines p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.45;
}

/*
  Mobile 320–700: philosophy-section jaisa
  - image upar clearly show
  - text + capsule thora neeche, saath saath (no big gap)
*/
@media (max-width: 700px) {
  .farmlands-hero-section {
    padding: 0 0 28px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #07080A;
    overflow: hidden;
  }

  .farmlands-hero-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-image: url('../assets/images/farm-land.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .farmlands-hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .farmlands-hero-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  .farmlands-hero-content {
    position: relative;
    z-index: 3;
    order: 2;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: -88px auto 14px;
    padding: 0 5%;
    box-sizing: border-box;
    flex: 0 0 auto;
  }

  .farmlands-tagline {
    margin-bottom: 1.1rem;
  }

  .farmlands-coming-soon {
    gap: 12px;
  }

  .farmlands-coming-line {
    width: 56px;
  }

  .farmlands-info-capsule {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: 3;
    z-index: 3;
    width: min(100%, 90vw);
    margin: 0 auto;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 16px;
  }

  .farmlands-acres {
    min-width: 72px;
  }

  .farmlands-info-divider {
    min-height: 56px;
  }
}

@media (max-width: 420px) {
  .farmlands-info-capsule {
    gap: 14px;
    padding: 14px 16px;
  }

  .farmlands-info-lines p {
    letter-spacing: 1px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   HEADER LIGHT THEME (FOR LEGACY PAGE)
   ========================================================================== */
.site-header.header-light {
  background: transparent;
}

.site-header.header-light .nav-link {
  color: #1E293B;
}

.site-header.header-light .nav-link:hover,
.site-header.header-light .nav-link.active {
  color: #C5A059;
}

.site-header.header-light .hamburger-bar {
  background-color: #1E293B;
}

/* ==========================================================================
   LEGACY PAGE HERO / CHAIRMAN SECTION
   ========================================================================== */
.legacy-hero-section {
  position: relative;
  width: 100%;
  background-color: #F8F5EE;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Bottom Background Panoramic Image (Legacy-2.jpg) */
.legacy-bg-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background-image: url('../assets/images/Legacy-2.jpg');
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: 1;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.legacy-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* Left Image Column (legacy-1.png transparent cutout) */
.legacy-image-col {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.legacy-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.legacy-portrait-img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: left bottom;
  display: block;
}

/* Right Content Column */
.legacy-content-col {
  flex: 1;
  padding: 130px 6% 80px 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
}

.legacy-subtitle {
  font-family: var(--font-serif);
  font-size: 1.60rem;
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.legacy-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #1C3A5E;
  line-height: 1.15;
  letter-spacing: 2px;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.legacy-main-title .highlight-gold {
  color: #d4a958;
  font-weight: 400;
}

.legacy-body-text {
  max-width: 760px;
  margin-bottom: 2rem;
}

.legacy-body-text p {
  font-family: var(--font-serif);
  font-size: 0.76rem;
  font-weight: 600;
  color: #2B2B2B;
  letter-spacing: 1.2px;
  line-height: 1.85;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.legacy-body-text p:last-child {
  margin-bottom: 0;
}

/* Signature & Designation Block */
.legacy-signature-block {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legacy-signature-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: brightness(0.15);
}

.legacy-author-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #C5A059;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.legacy-author-title {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.55;
  margin: 0;
}

/* Responsive adjustments for Legacy Page Hero (Mobile Design Match) */
@media (max-width: 1024px) {
  .legacy-hero-section {
    min-height: auto;
    padding: 120px 0 50px;
    background-color: #F8F5EE;
    overflow-x: hidden;
  }

  /* Hide panoramic bottom bg on mobile — clean cream canvas */
  .legacy-bg-layer {
    display: none;
  }

  .legacy-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  /* Portrait on top — centered oval with equal side margins */
  .legacy-image-col {
    flex: 0 0 auto !important;
    display: flex !important;
    width: 100%;
    max-width: 100%;
    margin: 0 0 26px;
    padding: 0 36px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }

  .legacy-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 0 !important;
    aspect-ratio: 1.72 / 1;
    margin: 0 auto;
    display: block;
    border-radius: 999px;
    overflow: hidden;
    box-sizing: border-box;
    /* Double gold border stays INSIDE the box (no overflow shadow) */
    border: 1.5px solid #C5A059;
    padding: 3.5px;
    background-color: #F8F5EE;
  }

  .legacy-portrait-img {
    width: 100%;
    height: 100%;
    max-height: none !important;
    max-width: none !important;
    object-fit: cover;
    object-position: 32% 12%;
    margin: 0 !important;
    display: block;
    border-radius: 999px;
    border: 1.5px solid #C5A059;
    box-sizing: border-box;
  }

  /* Centered text column */
  .legacy-content-col {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 28px 10px;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .legacy-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
    letter-spacing: 2.5px;
    margin: 0 0 0.65rem;
  }

  .legacy-main-title {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    text-align: center;
  }

  /* Keep "OUR PURPOSE IS PEOPLE." on one visual line when possible */
  .legacy-main-title br {
    display: none;
  }

  .legacy-body-text {
    max-width: 100%;
    margin: 0 auto 1.75rem;
    text-align: center;
  }

  .legacy-body-text p {
    font-size: clamp(0.68rem, 2.7vw, 0.78rem);
    letter-spacing: 1px;
    line-height: 1.9;
    margin-bottom: 1rem;
    text-align: center;
  }

  .legacy-signature-block {
    margin-top: 0.25rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .legacy-signature-img {
    height: 58px;
    margin: 0 auto 0.85rem;
  }

  .legacy-author-name {
    font-size: clamp(0.85rem, 3.4vw, 1rem);
    letter-spacing: 1.8px;
    text-align: center;
  }

  .legacy-author-title {
    font-size: clamp(0.72rem, 3vw, 0.85rem);
    color: #1C3A5E;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.45;
  }

  .legacy-author-title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .legacy-hero-section {
    padding: 115px 0 40px;
  }

  .legacy-image-col {
    padding: 0 32px;
    margin: 0 0 22px;
  }

  .legacy-image-wrapper {
    max-width: 280px;
    aspect-ratio: 1.68 / 1;
    padding: 3px;
  }

  .legacy-portrait-img {
    object-position: 30% 25%;
  }

  .legacy-content-col {
    padding: 0 22px 8px;
  }

  .legacy-main-title {
    font-size: 1.55rem;
    margin-bottom: 1.25rem;
  }

  .legacy-body-text p {
    font-size: 0.68rem;
    letter-spacing: 0.9px;
  }

  .legacy-signature-img {
    height: 50px;
  }
}

/* ==========================================================================
   TWO LEADERS ONE PURPOSE SECTION
   ========================================================================== */
.leaders-section {
  position: relative;
  width: 100%;
  padding: 80px 0 100px;
  background-color: #F8F5EE;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (Legacy-2.jpg) */
.leaders-bg-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-image: url('../assets/images/Legacy-2.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
}

.leaders-container {
  position: relative;
  z-index: 2;
  max-width: 1650px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Header */
.leaders-header {
  text-align: center;
}

.leaders-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.leaders-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 9rem);
  font-weight: 400;
  color: #1C3A5E;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.leaders-main-title .highlight-gold {
  color: #d4a958;
  font-weight: 400;
}

/* Leaders Grid: Leader 1 Unit (Left) & Leader 2 Unit (Right) */
.leaders-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.leader-unit {
  flex: 1;
  max-width: 48%;
  display: flex;
  align-items: center;
  gap: 25px;
}

.leader-unit-1 {
  justify-content: flex-start;
}

.leader-unit-2 {
  justify-content: flex-end;
}

/* Portrait Image Box (Natural PNG oval frame, NO extra CSS border) */
.leader-img-box {
  flex: 0 0 290px;
  max-width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Info Box (Name, Title, Bio) */
.leader-info-box {
  flex: 1;
  max-width: 380px;
}

.leader-unit-1 .leader-info-box {
  text-align: left;
}

.leader-unit-2 .leader-info-box {
  text-align: right;
}

.leader-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.leader-title {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: #1C3A5E;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.leader-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 500;
  color: #2B2B2B;
  line-height: 1.7;
  margin: 0;
}

/* Bottom Summary Statement */
.leaders-footer-statement {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.leaders-footer-statement p {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: #1E293B;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (320px to 1280px)
   ========================================================================== */
@media (max-width: 1280px) and (min-width: 992px) {
  .leaders-grid {
    gap: 20px;
  }

  .leader-img-box {
    flex: 0 0 240px;
    max-width: 240px;
  }

  .leader-unit {
    gap: 15px;
  }
}

/* Mobile: keep zigzag side-by-side alignment (design match) */
@media (max-width: 991px) {
  .leaders-section {
    padding: 50px 0 60px;
    background-color: #F8F5EE;
  }

  /* Clean cream look on mobile — hide panorama wash */
  .leaders-bg-layer {
    display: none;
  }

  .leaders-container {
    width: 92%;
    max-width: 520px;
  }

  .leaders-header {
    margin-bottom: 32px;
    text-align: center;
  }

  .leaders-subtitle {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
  }

  .leaders-main-title {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    letter-spacing: 1.5px;
    line-height: 1.15;
  }

  /* Stack the two leaders vertically */
  .leaders-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
    margin-bottom: 36px;
  }

  /* Each leader stays horizontal: image + text side by side */
  .leader-unit {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  /* Leader 1: Image LEFT | Text RIGHT (left-aligned) */
  .leader-unit-1 {
    justify-content: flex-start;
  }

  .leader-unit-1 .leader-info-box {
    text-align: left !important;
    flex: 1;
    min-width: 0;
    max-width: none;
  }

  /* Leader 2: Text LEFT (right-aligned) | Image RIGHT */
  .leader-unit-2 {
    justify-content: flex-end;
    flex-direction: row;
  }

  .leader-unit-2 .leader-info-box {
    text-align: right !important;
    flex: 1;
    min-width: 0;
    max-width: none;
  }

  .leader-img-box {
    flex: 0 0 42%;
    width: 42%;
    max-width: 150px;
    margin: 0;
  }

  .leader-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .leader-name {
    font-size: clamp(0.82rem, 3.4vw, 1.05rem);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }

  .leader-title {
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    letter-spacing: 1px;
    margin-bottom: 0.55rem;
  }

  .leader-desc {
    font-size: clamp(0.68rem, 2.7vw, 0.8rem);
    line-height: 1.55;
    font-weight: 500;
  }

  .leaders-footer-statement {
    max-width: 100%;
    padding: 0 4px;
    text-align: center;
  }

  .leaders-footer-statement p {
    font-size: clamp(0.78rem, 3.1vw, 0.9rem);
    line-height: 1.65;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .leaders-section {
    padding: 42px 0 50px;
  }

  .leaders-grid {
    gap: 30px;
    margin-bottom: 30px;
  }

  .leader-unit {
    gap: 12px;
  }

  .leader-img-box {
    flex: 0 0 40%;
    width: 40%;
    max-width: 130px;
  }

  .leader-name {
    font-size: 0.8rem;
  }

  .leader-title {
    font-size: 0.6rem;
    margin-bottom: 0.45rem;
  }

  .leader-desc {
    font-size: 0.68rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   ORGANIZATIONAL EXCELLENCE TEAM SECTION
   ========================================================================== */
.team-section {
  position: relative;
  width: 100%;
  padding: 80px 0 250px;
  background-color: #F8F5EE;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (Legacy-2.jpg) */
.team-bg-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: url('../assets/images/Legacy-2.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
}

.team-container {
  position: relative;
  z-index: 2;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Header */
.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 9rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.team-main-title .title-blue {
  color: #1C3A5E;
}

.team-main-title .title-gold {
  letter-spacing: 15px;
  color: #d4a958;
}

.team-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: #2B2B2B;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* Team Grid: 6 Items Horizontal Row on Desktop */
.team-grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.team-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-img-box {
  width: 100%;
  max-width: 210px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-member-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.team-card:hover .team-member-img {
  transform: translateY(-5px);
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.2vw, 2.05rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: 1.2px;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.team-member-title {
  font-family: var(--font-serif);
  font-size: clamp(0.65rem, 0.85vw, 0.75rem);
  font-weight: 500;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR TEAM SECTION (320px to 1200px)
   ========================================================================== */
@media (max-width: 1200px) and (min-width: 769px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
  }

  .team-img-box {
    max-width: 190px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0 70px;
  }

  .team-header {
    margin-bottom: 35px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 15px;
  }

  .team-img-box {
    max-width: 160px;
  }

  .team-member-name {
    font-size: 0.85rem;
  }

  .team-member-title {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }

  .team-img-box {
    max-width: 140px;
  }
}

/* ==========================================================================
   OUR PHILOSOPHY TIMELINE SECTION
   ========================================================================== */
.philosophy-section {
  position: relative;
  width: 100%;
  padding: 100px 0 90px;
  background-color: #0A0C0E;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (our-philosophy.jpg) */
.philosophy-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-image: url('../assets/images/our-philosophy.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Cinematic Dark Gradient Overlay */
.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(10, 12, 14, 0.95) 0%,
      rgba(10, 12, 14, 0.82) 40%,
      rgba(10, 12, 14, 0.60) 70%,
      rgba(10, 12, 14, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.philosophy-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Header Content (Top Left) */
.philosophy-header {
  max-width: 850px;
  margin-bottom: 70px;
}

.philosophy-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.philosophy-main-title .title-gold {
  color: #d4a958;
}

.philosophy-main-title .title-white {
  color: #FFFFFF;
}

.philosophy-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.9rem);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.philosophy-intro {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.40vw, 1.55rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* 6-Column Timeline Grid */
.philosophy-timeline-grid {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-top: 40px;
}

.philosophy-timeline-col {
  flex: 1;
  padding: 0 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.philosophy-timeline-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(199, 163, 90, 0.6) 0%, rgba(199, 163, 90, 0.15) 100%);
}

.philosophy-year {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #d4a958;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.philosophy-milestone-title {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 0.88vw, 1rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0 0 12px;
}

.philosophy-milestone-desc {
  max-width: 147px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.89vw, 0.90rem);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* Bottom Tagline Statement */
.philosophy-footer-statement {
  width: 100%;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-footer-gold {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.philosophy-footer-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (320px to 1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .philosophy-overlay {
    background: linear-gradient(180deg,
        rgba(10, 12, 14, 0.92) 0%,
        rgba(10, 12, 14, 0.85) 45%,
        rgba(10, 12, 14, 0.94) 100%);
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .philosophy-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }

  .philosophy-timeline-col {
    padding: 0 15px !important;
  }

  .philosophy-timeline-col::after {
    display: none;
  }

  /* Add side gold vertical border for 3-column items */
  .philosophy-timeline-col:nth-child(3n+1),
  .philosophy-timeline-col:nth-child(3n+2) {
    border-right: 1px solid rgba(199, 163, 90, 0.4);
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 70px 0 70px;
  }

  .philosophy-header {
    margin-bottom: 45px;
  }

  .philosophy-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
    margin-bottom: 50px;
  }

  .philosophy-timeline-col {
    padding: 0 10px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .philosophy-milestone-desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .philosophy-timeline-col::after {
    display: none;
  }

  /* Add side gold vertical border for 2-column items */
  .philosophy-timeline-col:nth-child(2n+1) {
    border-right: 1px solid rgba(199, 163, 90, 0.4);
  }
}

@media (max-width: 480px) {
  .philosophy-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .philosophy-timeline-col {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .philosophy-year {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 10px;
  }

  .philosophy-milestone-title {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    letter-spacing: 0.8px;
    margin-bottom: 8px;
  }

  .philosophy-milestone-desc {
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    line-height: 1.45;
  }

  .philosophy-footer-gold {
    letter-spacing: 1.5px;
  }
}

/* 320px–700px: image on top WITHOUT overlay, text/timeline below */
@media (max-width: 700px) {
  .philosophy-section {
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    background-color: #0A0C0E;
    overflow: hidden;
  }

  /*
    our.webp framing (design match):
    - kam asmaan, gate center, road/flowers neeche
    - background-position neeche = sky crop
  */
  .philosophy-bg-layer {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-image: url('../assets/images/our.webp') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    /* 70% = sky kam, gate + road zyada (pehle 35% se asmaan zyada aa raha tha) */
    background-position: center 60% !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  /* Soft bottom fade — OUR heading isi pe baithegi */
  .philosophy-bg-layer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(10, 12, 14, 0) 0%,
      rgba(10, 12, 14, 0.25) 30%,
      rgba(10, 12, 14, 0.8) 70%,
      #0A0C0E 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  /* Kill full-section CSS overlay on mobile */
  .philosophy-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* OUR image pe, PHILOSOPHY neeche black pe */
  .philosophy-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: -88px 0 0;
    padding: 0 5% 0;
    box-sizing: border-box;
    background-color: transparent;
  }

  .philosophy-header {
    max-width: 100%;
    text-align: left;
    margin-bottom: 28px;
  }

  .philosophy-main-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-align: left;
  }

  .philosophy-main-title .title-gold {
    position: relative;
    display: inline-block;
    padding-right: 16px;
  }
  

  .philosophy-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1.05rem);
    letter-spacing: 1.5px;
    text-align: left;
  }

  .philosophy-intro {
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    line-height: 1.65;
    text-align: left;
  }

  .philosophy-timeline-grid {
    padding-top: 10px;
    margin-bottom: 36px;
  }

  .philosophy-footer-statement {
    text-align: center;
  }
}

/* ==========================================================================
   CORPORATE CREDIBILITY SECTION
   ========================================================================== */
.credibility-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: #07080A;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (cta.png) */
.credibility-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/cta.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side for Text Readability */
.credibility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.credibility-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Left Content Box */
.credibility-content-box {
  max-width: 745px;
}

.credibility-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.3vw, 3.80rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.credibility-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 9rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.credibility-main-title .title-white {
  color: #FFFFFF;
}

.credibility-main-title .title-gold {
  color: #d4a958;
}

.credibility-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.75rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  /* max-width: 700px; */
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE: image on top, text below (separate blocks)
   ========================================================================== */
@media (max-width: 991px) {
  .credibility-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #131313;
  }

  /* Image block — sits on its own above the text */
  .credibility-bg-layer {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: clamp(220px, 48vw, 340px);
    background-size: cover;
    background-position: center center;
    z-index: 1;
    order: 1;
  }

  .credibility-overlay {
    display: none;
  }

  /* Text block — below the image, centered on mobile */
  .credibility-container {
    position: relative;
    z-index: 2;
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 36px 6% 48px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .credibility-content-box {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .credibility-subtitle {
    font-size: clamp(0.85rem, 3.4vw, 1.05rem);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .credibility-main-title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
  }

  .credibility-desc {
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
    line-height: 1.65;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .credibility-bg-layer {
    height: 210px;
  }

  .credibility-container {
    padding: 28px 5% 0px;
  }
}

/* ==========================================================================
   ACCREDITATIONS & COMPLIANCE GRID SECTION
   ========================================================================== */
.accreditations-section {
  position: relative;
  width: 100%;
  padding: 50px 0 60px;
  border-top: 2px solid #d4a958;
  background-color: #131313;
  overflow: hidden;
  box-sizing: border-box;
}

.accreditations-container {
  position: relative;
  z-index: 2;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* 4x2 Grid of 8 Accreditation Items */
.accreditations-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.accreditation-card {
  position: relative;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: background-color 0.35s ease;
}


/* Centered vertical line divider between columns */
.accreditation-card:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(199, 163, 90, 0.45);
}

.accreditation-icon-box {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.accreditation-icon {
  max-height: 60px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.accreditation-title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.accreditation-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.82vw, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
  text-transform: uppercase;
  margin: 0;
  max-width: 185px;
}

/* Bottom Gold Border Statement Box */
.accreditations-bottom-box {
  margin-top: 60px;
  border: 1px solid #d4a958;
  padding: 20px 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.accreditations-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.accreditations-shield-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.accreditation-bottom-shield-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.accreditations-statement-text {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.accreditations-bottom-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.building-today-img {
  height: 50px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (320px to 1024px)
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 641px) {
  .accreditations-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Remove bottom border on last 2 items (items 7 & 8) */
  .accreditation-card:nth-child(7),
  .accreditation-card:nth-child(8) {
    border-bottom: none !important;
  }

  /* Hide default 4-column vertical dividers and show single divider on left column items */
  .accreditation-card::after {
    display: none !important;
  }

  .accreditation-card:nth-child(2n+1)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(199, 163, 90, 0.45);
  }
}

@media (max-width: 991px) {
  .accreditations-section {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .accreditations-section {
    padding: 60px 0 70px;
    border-top: none;
  }

  .accreditations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 0;
  }

  .accreditation-card {
    border-bottom: none !important;
    padding: 20px 10px;
  }

  .accreditation-card::after {
    display: none !important;
  }

  /* Keep only mid (vertical) divider between left & right columns */
  .accreditation-card:nth-child(2n+1)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(199, 163, 90, 0.45);
  }

  .accreditation-icon-box {
    height: 45px;
    margin-bottom: 12px;
  }

  .accreditation-icon {
    max-height: 42px;
  }

  .accreditation-title {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .accreditation-desc {
    font-size: clamp(0.66rem, 2.8vw, 0.76rem);
    line-height: 1.4;
    max-width: 100%;
  }

  .accreditations-bottom-box {
    margin-top: 40px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .accreditations-bottom-left {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   HIGHWAY CITY RESORT LIVING HERO SECTION
   ========================================================================== */
.resort-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 60px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (highway-city-banner.jpg) */
.resort-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/highway-city-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Overlay on Left Side for Text Readability */
.resort-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(7, 8, 10, 0.96) 0%,
      rgba(7, 8, 10, 0.85) 45%,
      rgba(7, 8, 10, 0.45) 70%,
      rgba(7, 8, 10, 0.0) 100%);
  z-index: 2;
  pointer-events: none;
}

.resort-hero-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.resort-hero-content {
  max-width: 680px;
  padding-top: 20px;
}

.resort-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.resort-hero-title .title-white {
  font-weight: 600;
  color: #FFFFFF;
}

.resort-hero-title .title-gold {
  font-weight: 600;
  color: #d4a958;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.resort-hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.35vw, 1.75rem);
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 1.2rem;
}

.resort-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 0 2.2rem;
}

/* Action Buttons Group */
.resort-hero-btn-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.resort-btn-gold {
  background-color: #d4a958;
  color: #0A0C0E;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 15px 32px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #d4a958;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resort-btn-gold:hover {
  background-color: transparent;
  color: #d4a958;
}

.resort-btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid #d4a958;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 15px 28px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.resort-btn-outline:hover {
  background-color: #d4a958;
  color: #0A0C0E;
}

.resort-btn-outline i {
  font-size: 1.1rem;
  color: #d4a958;
  transition: color 0.25s ease;
}

.resort-btn-outline:hover i {
  color: #0A0C0E;
}

/* Bottom Feature Capsule Frame (5 Items) */
.resort-features-capsule {
  margin-top: 50px;
  border: 2px solid #d4a958;
  border-radius: 32px;
  padding: 55px 42px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.resort-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.resort-feature-icon-box {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resort-feature-icon {
  width: 100%;
  height: 100%;
  max-width: 75px;
  max-height: 75px;
  object-fit: contain;
  display: block;
}

.resort-feature-info {
  display: flex;
  flex-direction: column;
}

.resort-feature-title {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.85vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 4px;
  line-height: 1.25;
}

.resort-feature-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.78vw, 0.76rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR RESORT LIVING HERO (320px to 1200px)
   ========================================================================== */

/* Tablet: same as resort-experiences — flex wrap, last row auto-center */
@media (max-width: 1100px) and (min-width: 701px) {
  .resort-features-capsule {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px 20px;
    padding: 40px 28px;
  }

  .resort-feature-item {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .resort-hero-section {
    padding: 120px 0 45px;
    min-height: auto;
  }

  .resort-hero-overlay {
    background: linear-gradient(180deg,
        rgba(7, 8, 10, 0.96) 0%,
        rgba(7, 8, 10, 0.88) 55%,
        rgba(7, 8, 10, 0.98) 100%);
  }

  .resort-hero-content {
    max-width: 100%;
    text-align: left;
  }

  .resort-hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .resort-hero-title .title-gold {
    font-size: clamp(1.8rem, 5.8vw, 2.6rem);
  }

  .resort-hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
  }

  .resort-hero-desc {
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    margin-bottom: 1.8rem;
  }

  .resort-hero-btn-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }

  .resort-btn-gold,
  .resort-btn-outline {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* 320–700: same as resort-experiences — 2-col + 5th centered */
@media (max-width: 700px) {
  .resort-features-capsule {
    margin-top: 28px;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
    justify-items: center;
    border-radius: 16px;
    border: 1px solid rgba(199, 163, 90, 0.7);
    background-color: rgba(10, 12, 14, 0.85);
  }

  .resort-feature-item {
    gap: 10px;
    width: 100%;
    max-width: 220px;
    flex: none;
  }

  .resort-features-capsule .resort-feature-item:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 220px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 0;
    border-top: none;
  }

  .resort-feature-icon-box {
    width: 40px;
    height: 40px;
  }

  .resort-feature-icon {
    max-height: 38px;
    max-width: 38px;
  }

  .resort-feature-title {
    font-size: 0.76rem;
  }

  .resort-feature-subtext {
    font-size: 0.72rem;
  }
}

/*
  320–700: philosophy-section jaisa pattern
  - image upar (resortlivingbanner.jpeg) clearly show
  - text thora neeche, image bottom pe soft overlap
*/
@media (max-width: 700px) {
  .resort-hero-section {
    padding: 0 0 40px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #07080A;
    overflow: hidden;
  }

  .resort-hero-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-image: url('../assets/images/resortlivingbanner.jpeg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  /* Soft bottom fade — title isi pe thora baithegi */
  .resort-hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  /* Full-bleed dark overlay kill on mobile */
  .resort-hero-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .resort-hero-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: -88px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .resort-hero-content {
    max-width: 100%;
    padding-top: 0;
    text-align: left;
  }

  .resort-hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 0.9rem;
  }

  .resort-hero-title .title-gold {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .resort-features-capsule {
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .resort-hero-btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .resort-btn-gold,
  .resort-btn-outline {
    width: 100%;
  }

  /* Keep 2-col + 5th centered (same as resort-experiences) */
  .resort-features-capsule {
    padding: 18px 14px;
    gap: 16px 12px;
  }
}

/* ==========================================================================
   ABOUT HIGHWAY CITY SECTION
   ========================================================================== */
.about-highway-section {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  box-sizing: border-box;
}

.about-highway-container {
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* Left Image Column (50% Width) */
.about-highway-image-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.about-highway-img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right Content Column (50% Width) */
.about-highway-content-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 70px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
}

.about-highway-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.about-highway-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 2.6rem);
  font-weight: 500;
  color: #0A0C0E;
  line-height: 1.12;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.about-highway-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  color: #2D3136;
  line-height: 1.65;
  margin: 0 0 2.8rem;
  max-width: 560px;
}

/* 2x2 Highlights Grid with Vertical Gold Line Divider */
.about-highway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
  position: relative;
}

.about-highway-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Vertical Gold Line Divider between left and right columns */
.about-highway-card:nth-child(odd)::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -15px;
  width: 1px;
  height: 90%;
  background-color: rgba(199, 163, 90, 0.4);
}

.about-highway-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.about-highway-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-highway-icon {
  width: 100%;
  height: 100%;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.about-highway-card-title {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 400;
  color: #0A0C0E;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}

.about-highway-card-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.82vw, 0.88rem);
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  margin: 0;
  padding-left: 78px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-highway-container {
    flex-direction: column;
  }

  .about-highway-image-col {
    flex: 0 0 100%;
    max-width: 100%;
    height: 420px;
  }

  .about-highway-img {
    min-height: auto;
    height: 100%;
  }

  .about-highway-content-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 60px 24px;
  }
}

@media (max-width: 700px) {
  .about-highway-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    position: relative;
  }

  /* No single full-height line — each left card gets its own short divider */
  .about-highway-grid::before {
    display: none !important;
  }

  .about-highway-card:nth-child(odd)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 8%;
    right: -10px;
    width: 1px;
    height: 84%;
    background-color: rgba(199, 163, 90, 0.45);
  }

  .about-highway-card-header {
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
  }

  .about-highway-icon-box {
    width: 36px;
    height: 36px;
  }

  .about-highway-icon {
    max-width: 36px;
    max-height: 36px;
  }

  .about-highway-card-title {
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    letter-spacing: 0.6px;
    line-height: 1.25;
  }

  .about-highway-card-desc {
    padding-left: 0;
    margin-top: 2px;
    font-size: clamp(0.65rem, 2.7vw, 0.75rem);
    line-height: 1.45;
  }
}

/* ==========================================================================
   SECTION 1: RESORT EXPERIENCES AMENITIES BAR
   ========================================================================== */
.resort-experiences-section {
  position: relative;
  width: 100%;
  padding: 70px 0;
  background-color: #0E1012;
  overflow: hidden;
  box-sizing: border-box;
}

.resort-experiences-container {
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.resort-experiences-left {
  flex: 0 0 32%;
  max-width: 32%;
}

.resort-experiences-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: #d4a958;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.resort-experiences-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.resort-experiences-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.resort-amenity-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.resort-amenity-icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.resort-amenity-icon {
  width: 100%;
  height: 100%;
  max-height: 80px;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

.resort-amenity-label {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.86vw, 0.84rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   SECTION 2: 4-COLUMN PHOTO GALLERY GRID
   ========================================================================== */
.resort-gallery-section {
  position: relative;
  width: 100%;
  background-color: #07080A;
  overflow: hidden;
  box-sizing: border-box;
}

.resort-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.resort-gallery-card {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.resort-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.resort-gallery-card:hover .resort-gallery-img {
  transform: scale(1.06);
}

.resort-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 20px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 8, 10, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}

.resort-gallery-title {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   SECTION 3: BE PART OF SOMETHING EXTRAORDINARY REGISTER CTA
   ========================================================================== */
.resort-register-section {
  position: relative;
  width: 100%;
  padding: 45px 0;
  background-color: #07080A;
  overflow: hidden;
  box-sizing: border-box;
}

.resort-register-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/something.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.resort-register-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.resort-register-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.resort-register-content {
  max-width: 520px;
}

.resort-register-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 2.4rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.resort-register-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.05vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}

/* Horizontal Form */
.resort-register-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  max-width: 860px;
}

.resort-form-group {
  flex: 1;
}

.resort-form-input {
  width: 100%;
  background: rgba(10, 12, 14, 0);
  border: 2px solid rgb(255, 255, 255);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 16px 20px;
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.resort-form-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.resort-form-input:focus {
  border-color: #d4a958;
  background: rgba(10, 12, 14, 0.85);
}

.resort-form-btn {
  background-color: #d4a958;
  color: #0A0C0E;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 17px 32px;
  border: 1.5px solid #d4a958;
  border-radius: 0;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.resort-form-btn:hover {
  background-color: transparent;
  color: #d4a958;
}

/* Responsive */
@media (max-width: 1100px) {
  .resort-experiences-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .resort-experiences-left {
    max-width: 100%;
  }

  .resort-experiences-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px 20px;
  }

  .resort-amenity-col {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }

  .resort-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-gallery-card {
    height: 380px;
  }

  .resort-register-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .resort-register-form {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

/* Resort amenities: 2-col + 5th centered (320–700), same as pillars/highlights */
@media (max-width: 700px) {
  .resort-experiences-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    justify-items: center;
  }

  .resort-amenity-col {
    width: 100%;
    max-width: 180px;
    align-items: center;
    text-align: center;
  }

  .resort-experiences-right .resort-amenity-col:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  /* Mobile: keep 2x2 gallery images */
  .resort-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resort-gallery-card {
    height: 220px;
  }

  .resort-register-form {
    flex-direction: column;
    width: 100%;
  }

  .resort-form-group,
  .resort-form-btn {
    width: 100%;
  }
}

/* ==========================================================================
   EXPERIENCES HERO SECTION
   ========================================================================== */
.experiences-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (Experiences-banner.jpg) */
.experiences-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/Experiences-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.experiences-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.experiences-hero-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.experiences-hero-content {
  max-width: 580px;
  padding-top: 20px;
}

.experiences-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.experiences-hero-title .title-gold {
  color: #d4a958;
}

.experiences-hero-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.experiences-hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.experiences-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 500px;
  margin: 0;
}

/* Bottom Area: 3 Cards + Tagline Statement */
.experiences-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.experiences-cards-row {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.experiences-card {
  flex: 1;
  max-width: 320px;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.experiences-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.experiences-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.experiences-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.89rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.experiences-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.experiences-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .experiences-hero-section {
    padding: 130px 0 45px;
    min-height: auto;
  }

  .experiences-hero-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .experiences-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .experiences-card {
    width: 100%;
    max-width: 100%;
  }

  .experiences-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   WELLNESS & RECREATION SECTION
   ========================================================================== */
.wellness-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (wellness.jpg) */
.wellness-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/wellness.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.wellness-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.wellness-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.wellness-content {
  padding-top: 20px;
}

.wellness-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.wellness-title .title-gold {
  color: #d4a958;
}

.wellness-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.wellness-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.9vw, 2.75rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.wellness-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 2.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 500px;
  margin: 0;
}

/* Bottom Area: 4 Cards Row + Bottom Tagline */
.wellness-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wellness-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.wellness-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.wellness-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.wellness-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.wellness-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.wellness-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.wellness-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR WELLNESS (320px to 1024px)
   ========================================================================== */
@media (max-width: 991px) {
  .wellness-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .wellness-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .wellness-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }

  .wellness-card {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .wellness-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAMILY MOMENTS SECTION
   ========================================================================== */
.family-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (family.jpg) */
.family-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/family.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.family-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
  pointer-events: none;
}

.family-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.family-content {
  max-width: 580px;
  padding-top: 20px;
}

.family-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.family-title .title-gold {
  color: #d4a958;
}

.family-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.family-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.family-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 550px;
  margin: 0;
}

/* Bottom Area: 3 Cards Row + Bottom Tagline */
.family-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.family-cards-row {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.family-card {
  flex: 1;
  max-width: 320px;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.family-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.family-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.family-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.family-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.family-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR FAMILY (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .family-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .family-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .family-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .family-card {
    width: 100%;
    max-width: 100%;
  }

  .family-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   NATURE & ADVENTURE SECTION
   ========================================================================== */
.adventure-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (wellness.jpg) */
.adventure-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/nature.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.adventure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.adventure-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.adventure-content {
  max-width: 630px;
  padding-top: 20px;
}

.adventure-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.adventure-title .title-gold {
  color: #d4a958;
}

.adventure-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.adventure-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.9vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.adventure-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.75rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 500px;
  margin: 0;
}

/* Bottom Area: 3 Cards Row + Bottom Tagline */
.adventure-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.adventure-cards-row {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.adventure-card {
  flex: 1;
  max-width: 350px;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.adventure-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.adventure-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.adventure-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.adventure-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.adventure-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR ADVENTURE (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .adventure-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .adventure-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .adventure-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .adventure-card {
    width: 100%;
    max-width: 100%;
  }

  .adventure-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   WATERFRONT ESCAPES SECTION
   ========================================================================== */
.waterfront-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (waterpoint.jpg) */
.waterfront-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/wellness.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.waterfront-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.waterfront-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.waterfront-content {
  padding-top: 20px;
}

.waterfront-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.waterfront-title .title-gold {
  color: #d4a958;
}

.waterfront-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.waterfront-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.waterfront-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 700px;
  margin: 0;
}

/* Bottom Area: 3 Cards Row + Bottom Tagline */
.waterfront-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.waterfront-cards-row {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.waterfront-card {
  flex: 1;
  max-width: 350px;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.waterfront-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.waterfront-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.waterfront-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.waterfront-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.waterfront-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR WATERFRONT (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .waterfront-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .waterfront-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .waterfront-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .waterfront-card {
    width: 100%;
    max-width: 100%;
  }

  .waterfront-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   BUSINESS & INNOVATION SECTION
   ========================================================================== */
.business-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (business-innovation.jpg) */
.business-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/business-innovation.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.business-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.business-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.business-content {
  padding-top: 20px;
}

.business-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.business-title .title-gold {
  color: #d4a958;
}

.business-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.business-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 2.9rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.business-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
}

/* Bottom Area: 3 Cards Row + Bottom Tagline */
.business-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.business-cards-row {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.business-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.business-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.business-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.business-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.business-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.business-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR BUSINESS (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .business-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .business-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .business-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .business-card {
    width: 100%;
    max-width: 100%;
  }

  .business-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   EVENINGS AT HIGHWAY CITY SECTION
   ========================================================================== */
.evenings-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (evenings.jpg) */
.evenings-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/evenings.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.evenings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.evenings-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.evenings-content {
  padding-top: 20px;
}

.evenings-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.evenings-title .title-gold {
  color: #d4a958;
}

.evenings-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
}

.evenings-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.evenings-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 750px;
  margin: 0;
}

/* Bottom Area: 4 Cards Row + Bottom Tagline */
.evenings-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.evenings-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.evenings-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.evenings-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.evenings-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.evenings-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.7rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.evenings-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.evenings-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR EVENINGS (320px to 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .evenings-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .evenings-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .evenings-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }

  .evenings-card {
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .evenings-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HEALTHCARE & WELLBEING SECTION
   ========================================================================== */
.healthcare-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (hospital.jpg) */
.healthcare-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/hospital.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.healthcare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.healthcare-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.healthcare-content {
  padding-top: 20px;
}

.healthcare-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.healthcare-title .title-white {
  color: #FFFFFF;
}

.healthcare-title .title-gold {
  color: #d4a958;
  font-size: clamp(3.4rem, 5.8vw, 5.2rem);
}

.healthcare-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}

/* Bottom Area: 2 Rows of Cards (3 Top + 2 Bottom) */
.healthcare-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.healthcare-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.healthcare-cards-row.row-top {
  max-width: 1050px;
}

.healthcare-cards-row.row-bottom {
  max-width: 720px;
}

.healthcare-card {
  flex: 1;
  max-width: 330px;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 16px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.healthcare-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.healthcare-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.healthcare-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.78vw, 0.76rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.38;
  margin: 0;
}

/* Bottom Tagline */
.healthcare-tagline-statement {
  margin-top: 20px;
  text-align: center;
}

.healthcare-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR HEALTHCARE (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .healthcare-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .healthcare-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%)
  }

  .healthcare-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    align-items: center;
  }

  .healthcare-card {
    width: 100%;
    max-width: 100%;
  }

  .healthcare-tagline-text {
    letter-spacing: 2px;
  }
}

/*
  experiences.php — 320–700:
  philosophy-section jaisa pattern
  image upar, text thora neeche (soft overlap)
*/
@media (max-width: 700px) {
  .experiences-hero-section,
  .wellness-section,
  .family-section,
  .adventure-section,
  .waterfront-section,
  .business-section,
  .evenings-section,
  .healthcare-section {
    padding: 0 0 40px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #07080A;
    overflow: hidden;
  }

  .experiences-hero-bg,
  .wellness-bg,
  .family-bg,
  .adventure-bg,
  .waterfront-bg,
  .business-bg,
  .evenings-bg,
  .healthcare-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .experiences-hero-bg::after,
  .wellness-bg::after,
  .family-bg::after,
  .adventure-bg::after,
  .waterfront-bg::after,
  .business-bg::after,
  .evenings-bg::after,
  .healthcare-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .experiences-hero-overlay,
  .wellness-overlay,
  .family-overlay,
  .adventure-overlay,
  .waterfront-overlay,
  .business-overlay,
  .evenings-overlay,
  .healthcare-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  .experiences-hero-container,
  .wellness-container,
  .family-container,
  .adventure-container,
  .waterfront-container,
  .business-container,
  .evenings-container,
  .healthcare-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: -88px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .experiences-hero-content,
  .wellness-content,
  .family-content,
  .adventure-content,
  .waterfront-content,
  .business-content,
  .evenings-content,
  .healthcare-content {
    padding-top: 0;
    text-align: left;
  }

  .experiences-hero-title,
  .wellness-title,
  .family-title,
  .adventure-title,
  .waterfront-title,
  .business-title,
  .evenings-title,
  .healthcare-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.85rem;
  }

  .experiences-hero-subtitle,
  .wellness-subtitle,
  .family-subtitle,
  .adventure-subtitle,
  .waterfront-subtitle,
  .business-subtitle,
  .evenings-subtitle,
  .healthcare-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.85rem;
  }

  .experiences-hero-desc,
  .wellness-desc,
  .family-desc,
  .adventure-desc,
  .waterfront-desc,
  .business-desc,
  .evenings-desc,
  .healthcare-desc {
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    line-height: 1.65;
    max-width: 100%;
  }

  .experiences-bottom-area,
  .wellness-bottom-area,
  .family-bottom-area,
  .adventure-bottom-area,
  .waterfront-bottom-area,
  .business-bottom-area,
  .evenings-bottom-area,
  .healthcare-bottom-area {
    margin-top: 28px;
  }
}

/* ==========================================================================
   OPPORTUNITIES HERO SECTION
   ========================================================================== */
.opportunities-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 160px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (investinthefuture) */
.opportunities-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/investinthefuture');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.opportunities-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.opportunities-hero-container {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.opportunities-hero-content {
  padding-top: 20px;
}

.opportunities-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.opportunities-hero-title .title-gold {
  color: #d4a958;
}

.opportunities-hero-title .title-white {
  color: #FFFFFF;
  font-size: clamp(3.4rem, 5.8vw, 5rem);
}

.opportunities-hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.opportunities-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

/* Bottom Area: 3 Cards + Tagline Statement */
.opportunities-bottom-area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.opportunities-cards-row {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.opportunities-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 18px 20px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.opportunities-card:hover {
  background-color: rgba(199, 163, 90, 0.12);
}

.opportunities-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.opportunities-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.78vw, 0.76rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.opportunities-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.opportunities-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR OPPORTUNITIES HERO (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .opportunities-hero-section {
    padding: 130px 0 45px;
    min-height: auto;
  }

  .opportunities-hero-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%);
  }

  .opportunities-cards-row {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    align-items: center;
  }

  .opportunities-card {
    width: 100%;
    max-width: 100%;
  }

  .opportunities-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   POSITIONED FOR TOMORROW SECTION
   ========================================================================== */
.positioned-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 110px 0 40px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (positioned.jpg) */
.positioned-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/positioned.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.positioned-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(7 8 10 / 0%) 0%, rgb(7 8 10 / 6%) 38%, rgba(7, 8, 10, 0.35) 60%, rgba(7, 8, 10, 0.0) 100%);
  z-index: 2;
  pointer-events: none;
}

.positioned-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.positioned-content {
  padding-top: 40px;
}

.positioned-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}

.positioned-title .title-white {
  color: #FFFFFF;
}

.positioned-title .title-gold {
  color: #d4a958;
}

.positioned-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.positioned-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.02vw, 0.98rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 440px;
  margin: 0;
}

/* Bottom Area: 4 Divided Columns + Bottom Tagline */
.positioned-bottom-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.positioned-columns-row {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.positioned-col {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.positioned-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d4a958;
}

.positioned-col-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.2vw, 4rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 8px;
}

.positioned-col-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.95vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.42;
  margin: 0;
}

/* Bottom Tagline */
.positioned-tagline-statement {
  margin-top: 30px;
  text-align: center;
}

.positioned-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR POSITIONED (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .positioned-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .positioned-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 41%) 0%, rgb(7 8 10 / 85%) 60%, rgb(7 8 10 / 59%) 100%);
  }

  .positioned-container {
    min-height: auto;
  }

  .positioned-columns-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    max-width: 100%;
  }

  .positioned-col {
    padding: 0 10px;
  }

  .positioned-col::after {
    display: none !important;
  }

  .positioned-tagline-text {
    letter-spacing: 2px;
  }
}

/* Mobile: keep 2x2 columns (not single stack) */
@media (max-width: 700px) {
  .positioned-columns-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    max-width: 100%;
  }

  .positioned-col {
    padding: 0 8px;
  }

  /* Separate mid-line per row (left cards only) */
  .positioned-col:nth-child(odd)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 8%;
    right: -8px;
    width: 1.5px;
    height: 84%;
    background-color: #d4a958;
  }

  .positioned-col:nth-child(even)::after {
    display: none !important;
  }

  .positioned-col-title {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    letter-spacing: 1px;
  }

  .positioned-col-subtext {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
  }

  .positioned-col-subtext br {
    display: none;
  }
}

/* ==========================================================================
   WHAT CREATES VALUE SECTION
   ========================================================================== */
.whatcreates-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 110px 0 40px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (whatcreates) */
.whatcreates-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/whatcreates');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.whatcreates-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.whatcreates-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.whatcreates-content {
  padding-top: 40px;
}

.whatcreates-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}

.whatcreates-title .title-white {
  color: #FFFFFF;
}

.whatcreates-title .title-gold {
  color: #d4a958;
}

.whatcreates-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.9vw, 2rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.whatcreates-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1vw, 1.80rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 690px;
  margin: 0;
}

/* Bottom Area: 6 Divided Columns + Bottom Tagline */
.whatcreates-bottom-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.whatcreates-columns-row {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.whatcreates-col {
  flex: 1;
  padding: 0 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.whatcreates-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d4a958;
}

.whatcreates-col-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.2vw, 4rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 8px;
}

.whatcreates-col-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.95vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Bottom Tagline */
.whatcreates-tagline-statement {
  margin-top: 30px;
  text-align: center;
}

.whatcreates-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR WHAT CREATES VALUE (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .whatcreates-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .whatcreates-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 42%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%);
  }

  .whatcreates-container {
    min-height: auto;
  }

  .whatcreates-columns-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
    max-width: 100%;
  }

  .whatcreates-col {
    padding: 0 8px;
  }

  .whatcreates-col::after {
    display: none !important;
  }

  .whatcreates-tagline-text {
    letter-spacing: 2px;
  }
}

/* Mobile: keep 2-col grid (6 items = 3 rows) */
@media (max-width: 700px) {
  .whatcreates-columns-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    max-width: 100%;
  }

  .whatcreates-col {
    padding: 0 8px;
  }

  /* Separate mid-line per row (left cards only) */
  .whatcreates-col:nth-child(odd)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 8%;
    right: -8px;
    width: 1.5px;
    height: 84%;
    background-color: #d4a958;
  }

  .whatcreates-col:nth-child(even)::after {
    display: none !important;
  }

  .whatcreates-col-title {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    letter-spacing: 1px;
  }

  .whatcreates-col-subtext {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
  }

  .whatcreates-col-subtext br {
    display: none;
  }
}

/* ==========================================================================
   INVEST TODAY. GROW TOMORROW. SECTION
   ========================================================================== */
.investgrow-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 110px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Layer (invest-sec.jpg) */
.investgrow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/invest-sec.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay on Left Side */
.investgrow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.investgrow-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Content Column */
.investgrow-content {
  padding-top: 20px;
}

.investgrow-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.investgrow-title .title-white {
  color: #FFFFFF;
}

.investgrow-title .title-gold {
  color: #d4a958;
}

.investgrow-desc {
 font-family: var(--font-sans);
    font-size: clamp(0.88rem, 1.1vw, 01rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 580px;
    margin: 0;
}

/* Middle Sub-heading */
.investgrow-subheading-wrap {
  margin-top: 40px;
  margin-bottom: 25px;
}

.investgrow-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* 5 Divided Columns Row with Icons */
.investgrow-columns-row {
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.investgrow-col {
  flex: 1;
  padding: 0 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.investgrow-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d4a958;
}

.investgrow-icon-wrap {
  margin-bottom: 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investgrow-icon {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.investgrow-col-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.2vw, 4rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 8px;
}

.investgrow-col-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 0.95vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* Featured Bottom Banner Card: A Corridor of Opportunities */
.investgrow-bottom-area {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.investgrow-banner-card {
  border: 2px solid #d4a958;
  border-radius: 20px;
  background: rgba(10, 12, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 22px;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  box-sizing: border-box;
}

.banner-card-img-wrap {
  flex: 0 0 auto;
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.banner-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.banner-card-text {
  flex: 1;
  text-align: left;
}

.banner-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.banner-card-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.74rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.48;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR INVEST & GROW (320px to 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .investgrow-section {
    padding: 90px 0 45px;
    min-height: auto;
  }

  .investgrow-overlay {
    background: linear-gradient(180deg, rgb(7 8 10 / 11%) 0%, rgb(7 8 10 / 58%) 60%, rgb(7 8 10 / 59%) 100%);
  }

  .investgrow-container {
    min-height: auto;
  }

  .investgrow-columns-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
    max-width: 100%;
  }

  .investgrow-col {
    padding: 0 8px;
  }

  .investgrow-col::after {
    display: none !important;
  }

  .investgrow-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .banner-card-img-wrap {
    max-width: 100%;
  }

  .banner-card-text {
    text-align: center;
  }
}

/* Mobile: 2-col + 5th centered (same pattern as other sections) */
@media (max-width: 700px) {
  .investgrow-columns-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    max-width: 100%;
    justify-items: center;
  }

  .investgrow-col {
    padding: 0 8px;
    width: 100%;
    max-width: 220px;
  }

  /* Separate mid-line per full row (left cards only) */
  .investgrow-col:nth-child(1)::after,
  .investgrow-col:nth-child(3)::after {
    display: block !important;
    content: '';
    position: absolute;
    top: 8%;
    right: -8px;
    width: 1.5px;
    height: 84%;
    background-color: #d4a958;
  }

  .investgrow-col:nth-child(2)::after,
  .investgrow-col:nth-child(4)::after,
  .investgrow-col:nth-child(5)::after {
    display: none !important;
  }

  .investgrow-columns-row .investgrow-col:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 220px;
    margin: 0 auto;
  }

  .investgrow-col-title {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    letter-spacing: 1px;
  }

  .investgrow-col-subtext {
    font-size: clamp(0.65rem, 2.8vw, 0.75rem);
  }

  .investgrow-col-subtext br {
    display: none;
  }
}

/*
  opportunities.php — 320–700:
  philosophy-section jaisa pattern
  image upar, text thora neeche (soft overlap)
*/
@media (max-width: 700px) {
  .opportunities-hero-section,
  .positioned-section,
  .whatcreates-section,
  .investgrow-section {
    padding: 0 0 40px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #07080A;
    overflow: hidden;
  }

  .opportunities-hero-bg,
  .positioned-bg,
  .whatcreates-bg,
  .investgrow-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .opportunities-hero-bg::after,
  .positioned-bg::after,
  .whatcreates-bg::after,
  .investgrow-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .opportunities-hero-overlay,
  .positioned-overlay,
  .whatcreates-overlay,
  .investgrow-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  .opportunities-hero-container,
  .positioned-container,
  .whatcreates-container,
  .investgrow-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: -88px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .opportunities-hero-content,
  .positioned-content,
  .whatcreates-content,
  .investgrow-content {
    padding-top: 0;
    text-align: left;
  }

  .opportunities-hero-title,
  .positioned-title,
  .whatcreates-title,
  .investgrow-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.85rem;
  }

  .opportunities-hero-subtitle,
  .positioned-subtitle,
  .whatcreates-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.85rem;
  }

  .opportunities-hero-desc,
  .positioned-desc,
  .whatcreates-desc,
  .investgrow-desc {
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    line-height: 1.65;
    max-width: 100%;
  }

  .opportunities-bottom-area,
  .positioned-bottom-area,
  .whatcreates-bottom-area,
  .investgrow-bottom-area {
    margin-top: 28px;
  }
}

/* ==========================================================================
   HEADER CLIENT PORTAL BUTTON STYLES
   ========================================================================== */
.btn-header-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  /* 13px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.2;
}

.btn-header-portal:hover {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

.btn-header-portal.active {
  background-color: #0B252C;
  border-color: #0B252C;
  color: #FFFFFF;
}

/* Light Header Theme Support for Client Portal Button */
.site-header.header-light .btn-header-portal {
  color: #1E293B;
  border-color: #1E293B;
}

.site-header.header-light .btn-header-portal:hover {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #FFFFFF;
}

.site-header.header-light .btn-header-portal.active {
  background-color: #0B252C;
  border-color: #0B252C;
  color: #FFFFFF;
}

/* Header Auth Hamburger Dropdown Button (Matching CLIENT PORTAL Style) */
.header-auth-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.btn-header-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  font-size: 1.1rem;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.2;
}

.btn-header-hamburger:hover,
.btn-header-hamburger.active {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

.site-header.header-light .btn-header-hamburger {
  color: #1E293B;
  border-color: #1E293B;
}

.site-header.header-light .btn-header-hamburger:hover,
.site-header.header-light .btn-header-hamburger.active {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #FFFFFF;
}

/* Auth Dropdown Menu (Login / Signup) */
.auth-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 170px;
  background-color: #FFFFFF;
  border-top: 3px solid var(--color-gold-primary);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
}

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

.auth-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E293B;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.auth-dropdown-item i {
  color: var(--color-gold-primary);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.auth-dropdown-item:hover {
  background-color: #F8FAFC;
  color: var(--color-gold-dark);
}

.auth-dropdown-item:hover i {
  transform: translateX(3px);
}


/* ==========================================================================
   CLIENT PORTAL / BALLOTING VERIFICATION PAGE STYLES
   ========================================================================== */
.portal-main-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #F6F4EE;
  padding: 180px 0 90px 0;
  color: #1E293B;
}

.portal-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Header Titles */
.portal-header-wrapper {
  margin-bottom: 2.5rem;
}

.portal-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 1.5px;
  color: #132B33;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.portal-main-title .highlight-gold {
  color: var(--color-gold-primary);
}

.portal-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.6;
  color: #475569;
  text-transform: uppercase;
  max-width: 620px;
  margin: 0;
}

/* Base Portal Card Component */
.portal-card {
  background-color: #FFFFFF;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  padding: 2.25rem 2.5rem;
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   CARD 1: SEARCH YOUR BALLOT CARD
   -------------------------------------------------------------------------- */
.search-card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-card-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.search-icon-box {
  width: 48px;
  height: 48px;
  background-color: #FAF8F3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.search-title-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold-primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 0.2rem 0;
}

.search-title-text p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #1E293B;
  margin: 0;
  font-weight: 500;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  background-color: transparent;
  padding: 0;
}

.security-badge-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.security-badge-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.35;
  text-align: left;
}

/* Form Layout - Single Horizontal Row (Matching Reference Image) */
.form-inputs-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  flex-wrap: nowrap;
}

.form-group {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1E293B;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  white-space: nowrap;
}

.form-input {
  height: 42px;
  width: 100%;
  padding: 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #475569;
  background-color: #FFFFFF;
  border: 1px solid #94A3B8;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder {
  color: #94A3B8;
  font-size: 0.78125rem;
}

.form-input:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  padding: 0 0.4rem;
  flex-shrink: 0;
  align-self: flex-end;
}

/* --------------------------------------------------------------------------
   AUTH PAGES (LOGIN & SIGNUP) STYLES (MATCHING PORTAL DESIGN SYSTEM)
   -------------------------------------------------------------------------- */
.auth-container {
  max-width: 900px !important;
}

.auth-card {
  padding: 2.75rem 3rem !important;
}

.auth-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.auth-form-grid.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

.label-row label {
  margin-bottom: 0;
}

.forgot-link {
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

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

.input-with-icon .input-icon {
  position: absolute;
  left: 0.9rem;
  color: #94A3B8;
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.25s ease;
}

.input-with-icon .form-input {
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  height: 48px;
  border-radius: 4px;
}

.input-with-icon .form-input:focus ~ .input-icon {
  color: var(--color-gold-primary);
}

.toggle-password-btn {
  position: absolute;
  right: 0.85rem;
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.toggle-password-btn:hover {
  color: var(--color-gold-primary);
}

/* Custom Checkbox */
.auth-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 1.85rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #475569;
  user-select: none;
  line-height: 1.4;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #FFFFFF;
  border: 1.5px solid #94A3B8;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--color-gold-primary);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Auth Submit Button */
.btn-auth-submit {
  width: auto;
  min-width: 180px;
  height: 48px;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 2px;
  border-radius: 4px;
}

.auth-card-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F5F9;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #475569;
}

.gold-link {
  color: var(--color-gold-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.gold-link:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .auth-card {
    padding: 1.75rem 1.25rem !important;
  }
  .auth-form-grid.grid-2-col {
    grid-template-columns: 1fr;
  }
}

.form-submit-group {
  flex: 1.1 1 0%;
  min-width: 180px;
  align-self: flex-end;
}

.btn-verify-now {
  width: 100%;
  height: 42px;
  padding: 0 1.5rem;
  background-color: #0B252C;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-verify-now:hover {
  background-color: var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

/* --------------------------------------------------------------------------
   CARD 2: VERIFICATION RESULT CARD
   -------------------------------------------------------------------------- */
.result-card-topbar {
  font-family: var(--font-serif);
  color: var(--color-gold-primary);
  display: flex;
  font-size: 1.5rem;
  font-weight: 400;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E2E8F0;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* .result-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  padding-bottom: 0.75rem;
} */

.result-title::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 140px;
  height: 2px;
  background-color: var(--color-gold-primary);
}

.result-timestamp {
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: 0.8px;
}

/* Result Body Grid */
.result-body-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.25rem;
  align-items: center;
}

.result-status-col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-right: 1px solid #E2E8F0;
  padding-right: 2rem;
  text-align: left;
}

.verified-emblem-box {
  flex-shrink: 0;
}

.verified-emblem-img {
  width: 115px;
  height: auto;
  object-fit: contain;
  display: block;
}

.status-verified-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #132B33;
  letter-spacing: 1.5px;
  margin: 0 0 0.1rem 0;
}

.status-confirmed-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 0.4rem 0;
}

.status-congrats-msg {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
  margin: 0;
}

/* Right Details Column */
.result-details-col {
  display: flex;
  flex-direction: column;
}

.applicant-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.1rem;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.info-value {
  font-family: var(--font-sans);
  /* font-size: 0.875rem; */
  font-weight: 500;
  color: #1E293B;
  letter-spacing: 0.3px;
}

/* Status Pill Cards Grid */
.status-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.status-pill-card {
  border: 1px solid #E6DFD3;
  border-radius: 24px;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 76px;
}

.status-pill-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
}

.pill-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pill-card-text {
  display: flex;
  flex-direction: column;
}

.pill-card-text .pill-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  display: block;
}

.pill-card-text .pill-value {
  font-family: var(--font-sans);
  font-size: 1rem;
  /* font-weight: 700; */
  color: #132B33;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
  display: block;
}

/* --------------------------------------------------------------------------
   CARD 3: IMPORTANT NOTE & SUPPORT BAR
   -------------------------------------------------------------------------- */
.support-card {
  padding: 1.6rem 2.5rem;
  border-radius: 24px;
}

.support-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.note-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1.3;
  min-width: 320px;
}

.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.note-icon-svg {
  width: 34px;
  height: 40px;
  display: block;
}

.note-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #132B33;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
}

.note-description {
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  margin: 0;
  line-height: 1.45;
}

.help-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1.2;
  min-width: 0;
  justify-content: flex-end;
}

.help-info-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-icon-svg {
  width: 36px;
  height: 36px;
  display: block;
}

.help-text-wrapper {
  margin-right: 0.25rem;
}

.help-title {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #132B33;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 0.2rem 0;
}

.help-description {
  font-family: var(--font-sans);
  font-size: 0.78125rem;
  margin: 0;
  white-space: nowrap;
}

.btn-contact-support {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.25px solid #1E293B;
  border-radius: 10px;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1E293B;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-contact-support:hover {
  background-color: #0B252C;
  color: #FFFFFF;
  border-color: #0B252C;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR CLIENT PORTAL
   ========================================================================== */
@media (max-width: 1100px) {
  .result-body-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .result-status-col {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding-right: 0;
    padding-bottom: 1.25rem;
  }

  .applicant-info-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .status-pills-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .support-card-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .note-block {
    width: 100%;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1rem;
  }

  .help-block {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .portal-main-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .portal-container {
    padding: 0 1rem;
  }

  .portal-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .search-card-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .security-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .form-inputs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .form-or-divider {
    height: auto;
    padding: 0.25rem 0;
  }

  .form-submit-group {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .applicant-info-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .status-pills-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .help-block {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .help-info-group {
    justify-content: flex-start;
  }

  .btn-contact-support {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .applicant-info-row {
    grid-template-columns: 1fr;
  }

  .status-pills-row {
    grid-template-columns: 1fr;
  }
}

/* Dedicated Contact Page Styling - Matching Reference Image 1 */
.contact-page-section {
  padding-top: 0 !important;
  align-items: flex-start;
}

.contact-page-section .contact-container {
  align-items: flex-start;
}

.contact-page-section .contact-right {
  padding-top: 140px;
}

@media (max-width: 1024px) {
  .contact-page-section {
    padding-top: 110px !important;
  }

  .contact-page-section .contact-right {
    padding-top: 0;
  }
}

/* ==========================================================================
   HIGHWAY CITY EXECUTIVE ENCLAVE PAGE STYLING
   ========================================================================== */
.hc-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 4rem;
}

.hc-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/highway-city.png') center top / cover no-repeat;
  z-index: 1;
}

.hc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 56%) 0%, rgb(0 0 0 / 67%) 30%, rgb(0 0 0 / 0%) 60%, rgb(0 0 0 / 0%) 100%);
  z-index: 2;
  pointer-events: none;
}

.hc-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hc-header-wrapper {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hc-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.8vw, 8rem);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hc-sub-title {
  font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 2rem);
    font-weight: 500;
    color: #d4a958;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 0.2rem 0;
}

.hc-badge-box {
  display: inline-block;
    border: 2px solid #d4a958;
    border-radius: 8px;
    padding: 0.45rem 2.2rem;
    font-family: var(--font-serif);
    font-size: clamp(0.8125rem, 1.4vw, 1.2rem);
    font-weight: 600;
    color: #d4a958;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.hc-desc-text {
  font-weight: 500;
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  color: #FFFFFF;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

/* 5 Feature Highlights Bar Section - Exact Match to Reference */
.hc-highlights-section {
  background-color: #121212;
  border-top: 2px solid var(--color-gold-primary);
  padding: 0;
}

.hc-highlights-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.hc-highlights-grid-wrapper {
  width: 100%;
  border-bottom: 2px solid var(--color-gold-primary);
}

.hc-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 1.25rem 0;
  margin-bottom: 0;
  align-items: center;
}

.hc-highlight-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.5rem 1.25rem;
}

.hc-highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1.5px;
  background-color: var(--color-gold-primary);
}

.hc-highlight-icon-box {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 9px;
  box-sizing: border-box;
}

.hc-highlight-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hc-highlight-text {
  max-width: 230px;
  display: flex;
  flex-direction: column;
}

.hc-highlight-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
}

.hc-highlight-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.hc-cta-wrapper {
  text-align: center;
  width: 100%;
  padding: 2.25rem 0;
}

.btn-explore-masterplan {
  display: inline-block;
  border: 2px solid var(--color-gold-primary);
  border-radius: 0;
  background-color: transparent;
  color: var(--color-gold-primary);
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.85rem 3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-explore-masterplan:hover {
  background-color: var(--color-gold-primary);
  color: #0A1417;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}


/* Highway City Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .hc-highlight-item {
    flex: none;
    width: 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 1rem;
    padding-left: 0.5rem;
  }

  .hc-highlight-item:not(:last-child)::after {
    display: none;
  }

  /* Center the 5th item (STRONG INVESTMENT) in 2-column grid */
  .hc-highlights-grid .hc-highlight-item:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hc-hero-section {
    padding-top: 110px;
  }
}

/* Highway City hero: philosophy-style stack + our.webp (320–700) */
@media (max-width: 700px) {
  .hc-hero-section {
    padding: 0 0 40px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #07080A;
    overflow: hidden;
  }

  .hc-hero-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-image: url('../assets/images/our.webp') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .hc-hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .hc-hero-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  .hc-hero-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: -88px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
  }

  .hc-header-wrapper {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .hc-desc-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 540px) {
  .hc-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hc-highlights-grid .hc-highlight-item:last-child {
    grid-column: auto;
    justify-self: stretch;
    max-width: 100%;
    margin: 0;
  }

  .hc-highlight-item {
    padding: 0 0 1rem 0;
  }

  .btn-explore-masterplan {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   HIGHWAY CITY DOWNTOWN SECTION (MATCHING EXPERIENCES.PHP DESIGN SYSTEM)
   ========================================================================== */
.hc-downtown-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-downtown-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/downtown.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-downtown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-downtown-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-downtown-content {
  padding-top: 20px;
}

.hc-downtown-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-downtown-title .title-gold {
  color: #d4a958;
}

.hc-downtown-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 8rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-downtown-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.08vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-downtown-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-downtown-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-downtown-card {
  flex: 1;
  border: 3px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-downtown-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-downtown-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-downtown-card-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.78rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-downtown-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-downtown-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints matching Experiences Page */
@media (max-width: 1024px) {
  .hc-downtown-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-downtown-container {
    min-height: auto;
  }

  .hc-downtown-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-downtown-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-downtown-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-downtown-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   HIGHWAY CITY RAINFOREST ENCLAVE SECTION (WELLNESS BACKGROUND)
   ========================================================================== */
.hc-rainforest-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-rainforest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/rainforest.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-rainforest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
  pointer-events: none;
}

.hc-rainforest-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-rainforest-content {
  padding-top: 20px;
}

.hc-rainforest-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-rainforest-title .title-gold {
  color: #d4a958;
}

.hc-rainforest-title .title-white {
  color: #FFFFFF;
}

.hc-rainforest-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-rainforest-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.1vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 720px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-rainforest-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-rainforest-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-rainforest-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-rainforest-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-rainforest-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-rainforest-card-subtext {
  max-width: 285px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.74rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-rainforest-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-rainforest-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-rainforest-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-rainforest-container {
    min-height: auto;
  }

  .hc-rainforest-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-rainforest-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-rainforest-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-rainforest-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   HIGHWAY CITY SERENE HEAVEN SECTION (WELLNESS BACKGROUND)
   ========================================================================== */
.hc-serene-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-serene-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/serene.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-serene-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-serene-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-serene-content {
  padding-top: 20px;
}

.hc-serene-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.4vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-serene-title .title-gold {
  color: #d4a958;
}

.hc-serene-title .title-white {
  color: #FFFFFF;
}

.hc-serene-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.90vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-serene-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.3vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 700px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-serene-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-serene-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-serene-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-serene-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-serene-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-serene-card-subtext {
  max-width: 280px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.74rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-serene-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-serene-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-serene-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-serene-container {
    min-height: auto;
  }

  .hc-serene-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-serene-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-serene-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-serene-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   HIGHWAY CITY PARKLAND ESTATES SECTION (WELLNESS BACKGROUND)
   ========================================================================== */
.hc-parkland-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-parkland-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/parkland.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-parkland-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-parkland-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-parkland-content {
  padding-top: 20px;
}

.hc-parkland-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-parkland-title .title-gold {
  color: #d4a958;
}

.hc-parkland-title .title-white {
  color: #FFFFFF;
}

.hc-parkland-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.02vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-parkland-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.3vw, 2.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 700px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-parkland-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-parkland-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-parkland-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-parkland-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-parkland-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-parkland-card-subtext {
  max-width: 260px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.76rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-parkland-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-parkland-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-parkland-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-parkland-container {
    min-height: auto;
  }

  .hc-parkland-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-parkland-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-parkland-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-parkland-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   HIGHWAY CITY SANTORINI SHORES SECTION (WELLNESS BACKGROUND)
   ========================================================================== */
.hc-santorini-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-santorini-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/santorini.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-santorini-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-santorini-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-santorini-content {
  padding-top: 20px;
}

.hc-santorini-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-santorini-title .title-gold {
  color: #d4a958;
}

.hc-santorini-title .title-white {
  color: #FFFFFF;
}

.hc-santorini-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-santorini-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.20vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 800px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-santorini-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-santorini-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-santorini-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-santorini-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-santorini-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-santorini-card-subtext {
  max-width: 285px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.74rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-santorini-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-santorini-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-santorini-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-santorini-container {
    min-height: auto;
  }

  .hc-santorini-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-santorini-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-santorini-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-santorini-tagline-text {
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   HIGHWAY CITY EXECUTIVE SQUARE SECTION (WELLNESS BACKGROUND)
   ========================================================================== */
.hc-executive-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 50px;
  background-color: #07080A;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.hc-executive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/executive.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hc-executive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-executive-container {
  position: relative;
  z-index: 3;
  max-width: 1720px;
  width: 93%;
  margin: 0 auto;
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hc-executive-content {
  padding-top: 20px;
}

.hc-executive-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.2vw, 9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.hc-executive-title .title-gold {
  color: #d4a958;
}

.hc-executive-title .title-white {
  color: #FFFFFF;
}

.hc-executive-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.hc-executive-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.08vw, 1.02rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 590px;
  margin: 0;
}

/* Bottom Area: 4 Gold Cards + Tagline Statement */
.hc-executive-bottom-area {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hc-executive-cards-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.hc-executive-card {
  flex: 1;
  border: 2px solid #d4a958;
  border-radius: 12px;
  padding: 20px 22px;
  background-color: rgba(10, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.hc-executive-card:hover {
  background-color: rgba(199, 163, 90, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.hc-executive-card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 500;
  color: #d4a958;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hc-executive-card-subtext {
  max-width: 233px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.8vw, 0.74rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

/* Bottom Tagline */
.hc-executive-tagline-statement {
  margin-top: 35px;
  text-align: center;
}

.hc-executive-tagline-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #d4a958;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hc-executive-section {
    padding: 100px 0 45px;
    min-height: auto;
  }

  .hc-executive-container {
    min-height: auto;
  }

  .hc-executive-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .hc-executive-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hc-executive-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-executive-tagline-text {
    letter-spacing: 2px;
  }
}

/*
  Highway City districts — 320–700:
  philosophy-section jaisa pattern
  image upar, text thora neeche (soft overlap)
*/
@media (max-width: 700px) {
  .hc-downtown-section,
  .hc-rainforest-section,
  .hc-serene-section,
  .hc-parkland-section,
  .hc-santorini-section,
  .hc-executive-section {
    padding: 0 0 40px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #07080A;
    overflow: hidden;
  }

  .hc-downtown-bg,
  .hc-rainforest-bg,
  .hc-serene-bg,
  .hc-parkland-bg,
  .hc-santorini-bg,
  .hc-executive-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: clamp(270px, 92vw, 400px) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    z-index: 1;
    order: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .hc-downtown-bg::after,
  .hc-rainforest-bg::after,
  .hc-serene-bg::after,
  .hc-parkland-bg::after,
  .hc-santorini-bg::after,
  .hc-executive-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0) 0%,
      rgba(7, 8, 10, 0.25) 30%,
      rgba(7, 8, 10, 0.8) 70%,
      #07080A 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .hc-downtown-overlay,
  .hc-rainforest-overlay,
  .hc-serene-overlay,
  .hc-parkland-overlay,
  .hc-santorini-overlay,
  .hc-executive-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  .hc-downtown-container,
  .hc-rainforest-container,
  .hc-serene-container,
  .hc-parkland-container,
  .hc-santorini-container,
  .hc-executive-container {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: -88px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hc-downtown-content,
  .hc-rainforest-content,
  .hc-serene-content,
  .hc-parkland-content,
  .hc-santorini-content,
  .hc-executive-content {
    padding-top: 0;
    text-align: left;
  }

  .hc-downtown-title,
  .hc-rainforest-title,
  .hc-serene-title,
  .hc-parkland-title,
  .hc-santorini-title,
  .hc-executive-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 0.85rem;
  }

  .hc-downtown-subtitle,
  .hc-rainforest-subtitle,
  .hc-serene-subtitle,
  .hc-parkland-subtitle,
  .hc-santorini-subtitle,
  .hc-executive-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.85rem;
  }

  .hc-downtown-desc,
  .hc-rainforest-desc,
  .hc-serene-desc,
  .hc-parkland-desc,
  .hc-santorini-desc,
  .hc-executive-desc {
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    line-height: 1.65;
    max-width: 100%;
  }

  .hc-downtown-bottom-area,
  .hc-rainforest-bottom-area,
  .hc-serene-bottom-area,
  .hc-parkland-bottom-area,
  .hc-santorini-bottom-area,
  .hc-executive-bottom-area {
    margin-top: 28px;
  }
}

/* ==========================================================================
   GLOBAL & LEGACY PAGE MOBILE RESPONSIVE TYPOGRAPHY CONSISTENCY SYSTEM
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Primary Main Section Headings - White / Main Lines */
  .hero-title .title-line-1,
  .pillars-title-white,
  .masterplan-title .title-white,
  .experiences-title-white,
  .construction-title .title-white,
  .invest-title-white,
  .welcome-title,
  .legacy-main-title,
  .leaders-main-title,
  .team-main-title,
  .philosophy-main-title,
  .credibility-main-title,
  .team-main-title .title-blue,
  .philosophy-main-title .title-white,
  .credibility-main-title .title-white {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 7.5vw, 2.6rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.2rem !important;
  }

  /* 2. Primary Main Section Headings - Gold Lines */
  .hero-title .title-line-2,
  .pillars-title-gold,
  .masterplan-title .title-gold,
  .experiences-title-gold,
  .construction-title .title-gold,
  .invest-title-gold,
  .legacy-main-title .highlight-gold,
  .leaders-main-title .highlight-gold,
  .team-main-title .title-gold,
  .philosophy-main-title .title-gold,
  .credibility-main-title .title-gold {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 5.8vw, 2.4rem) !important;
    line-height: 1.15 !important;
    letter-spacing: 1.5px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    text-transform: uppercase !important;
    margin-bottom: 0.8rem !important;
  }

  /* Special fix for EXCELLENCE letter-spacing on mobile */
  .team-main-title .title-gold {
    letter-spacing: 3px !important;
  }

  /* 3. Section Eyebrows & Subtitles (Gold / White) */
  .pillars-bottom-title,
  .experiences-subtitle,
  .construction-subtitle,
  .invest-subtitle,
  .welcome-subtitle,
  .invest-bottom-card .card-info h3,
  .legacy-subtitle,
  .leaders-subtitle,
  .team-subtitle,
  .philosophy-subtitle,
  .credibility-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 3.8vw, 1.05rem) !important;
    line-height: 1.35 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
  }

  /* 4. Section Descriptions & Lead Paragraphs */
  .hero-subtitle,
  .pillars-description,
  .masterplan-description,
  .construction-description,
  .invest-description,
  .welcome-description,
  .pillars-bottom-subtitle,
  .philosophy-intro,
  .credibility-desc {
    font-family: var(--font-sans);
    font-size: clamp(0.92rem, 3.5vw, 1.1rem) !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .pillars-description br,
  .experiences-subtitle br,
  .construction-description br,
  .invest-description br,
  .hero-subtitle br {
    display: none !important;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile Screen Fine-Tuning (iPhone SE, smaller devices) */
  .hero-title .title-line-1,
  .pillars-title-white,
  .masterplan-title .title-white,
  .experiences-title-white,
  .construction-title .title-white,
  .invest-title-white,
  .welcome-title,
  .legacy-main-title,
  .leaders-main-title,
  .team-main-title,
  .philosophy-main-title,
  .credibility-main-title,
  .team-main-title .title-blue,
  .philosophy-main-title .title-white,
  .credibility-main-title .title-white {
    font-size: clamp(1.4rem, 6.8vw, 1.95rem) !important;
    letter-spacing: 1.5px !important;
  }

  .hero-title .title-line-2,
  .pillars-title-gold,
  .masterplan-title .title-gold,
  .experiences-title-gold,
  .construction-title .title-gold,
  .invest-title-gold,
  .legacy-main-title .highlight-gold,
  .leaders-main-title .highlight-gold,
  .team-main-title .title-gold,
  .philosophy-main-title .title-gold,
  .credibility-main-title .title-gold {
    font-size: clamp(1.2rem, 5.2vw, 1.75rem) !important;
    letter-spacing: 1px !important;
  }

  .team-main-title .title-gold {
    letter-spacing: 2px !important;
  }

  .pillars-bottom-title,
  .experiences-subtitle,
  .construction-subtitle,
  .invest-subtitle,
  .welcome-subtitle,
  .invest-bottom-card .card-info h3,
  .legacy-subtitle,
  .leaders-subtitle,
  .team-subtitle,
  .philosophy-subtitle,
  .credibility-subtitle {
    font-size: clamp(0.78rem, 3.5vw, 0.95rem) !important;
    letter-spacing: 1.5px !important;
  }
}