/* ==========================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================== */
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


   :root {
  /* Color Palette */
  --color-primary: #2F2A27;       /* Dark Charcoal */
  --color-primary-light: #5C5752; /* Body Charcoal */
  --color-accent: #C22229;        /* Primary CTA Red */
  --color-accent-light: #A81E1E;  /* CTA Hover Red */
  --color-secondary: #2F2A27;     /* Solid charcoal placeholder for green */
  --color-text-dark: #2F2A27;     /* Headings */
  --color-text-light: #F5F1E8;    /* Soft Ivory */
  --color-text-muted: #8B847B;    /* Caption */
  --color-bg-page: #F5F1E8;       /* Primary Page Background */
  --color-bg-light: #EFE7DA;      /* Alternate Sections */
  --color-bg-white: #FCF9F4;      /* Cards Background */
  --color-border: #E4DBCF;        /* Light Beige Borders */
  --color-glass-bg: rgba(47, 42, 39, 0.75);
  --color-glass-border: rgba(228, 219, 207, 0.25);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Spacers & Radius */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 18px;           /* Updated to 18px */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-luxury: 0 15px 45px rgba(47, 42, 39, 0.06);
  --container-width: 1200px;
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: #F5F1E8;
  background-image: 
    linear-gradient(to right, rgba(228, 219, 207, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(228, 219, 207, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--color-text-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: clip;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
}
.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.grid-3-col { grid-template-columns: repeat(3, 1fr); }
.grid-4-col { grid-template-columns: repeat(4, 1fr); }
.gap-small { gap: 16px; }
.gap-medium { gap: 24px; }
.gap-large { gap: 48px; }

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--color-bg-light);
}

.text-center { text-align: center; }
.align-center { align-items: center; }
.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 64px; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.rounded { border-radius: var(--radius-medium); }
.rounded-large { border-radius: var(--radius-large); }
.shadow { box-shadow: var(--shadow-card); }
.shadow-large { box-shadow: var(--shadow-luxury); }
.text-danger { color: #DC2626; }
.max-width-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-width-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: scale(1.03);
  box-shadow: none;
}

.btn-outline {
  background-color: transparent;
  color: #2F2A27;
  border-color: #2F2A27;
}
.btn-outline:hover {
  background-color: #2F2A27;
  color: #FFFFFF;
  transform: scale(1.03);
}

.btn-light {
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}
.btn-light:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  transform: scale(1.03);
}

.btn-secondary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}
.btn-secondary:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: scale(1.03);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
}

/* Premium Card Style */
.glass-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FCF9F4;
  border-bottom: 1px solid #E4DBCF;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.site-header.scrolled .header-container {
  height: 60px;
}
.site-header .container {
  max-width: 1400px;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-link {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}
.site-header.scrolled .logo-img {
  height: 38px;
}
.location-badge {
  background-color: rgba(197, 160, 89, 0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-navigation {
  display: flex;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.btn-phone span {
  font-size: 0.9rem;
}

/* Mobile Toggle Bar */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1010;
}
.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background-image: url('images/exterior_sunset.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 0 48px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.96) 0%, rgba(245, 241, 232, 0.88) 45%, rgba(245, 241, 232, 0.20) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  color: var(--color-text-dark);
}

.offer-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-title .highlight {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-primary-light);
  margin-bottom: 40px;
}

.hero-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  border-left: 3px solid var(--color-accent);
  padding-left: 24px;
}
.usp-item {
  display: flex;
  flex-direction: column;
}
.usp-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  height: 3rem;
  line-height: 1;
}
.usp-number.price-number {
  font-size: 2.6rem;
  color: var(--color-accent);
  line-height: 1;
}
.usp-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Quick Form Widget */
.hero-form-widget {
  padding: 20px !important;
  max-width: 340px;
  width: 100%;
  margin-left: auto;
}
.hero-form-widget h2 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}
.hero-form-widget .form-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.hero-form-widget .enquiry-form .form-group {
  margin-bottom: 8px;
}
.hero-form-widget .enquiry-form input,
.hero-form-widget .enquiry-form select {
  padding: 8px 12px;
  font-size: 0.85rem;
}
.hero-form-widget .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.form-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.enquiry-form .form-group {
  margin-bottom: 16px;
}
.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  outline: none;
  transition: var(--transition-smooth);
}
.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 34, 41, 0.12);
}

.form-footer-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}
.form-footer-privacy svg {
  width: 14px;
  height: 14px;
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 30px 0;
  border-bottom: 4px solid var(--color-accent);
}
.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-item svg {
  color: var(--color-accent);
  width: 24px;
  height: 24px;
}
.trust-bar .divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Main Page Body Layout Grid */
.main-layout-container {
  max-width: 1400px;
  width: 100%;
  margin: 40px auto;
  padding: 0 24px;
}
.page-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.main-content-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0; /* Prevents layout grid stretching from large children */
}

/* Style sections inside main column as premium cards */
.main-content-column section {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 60px 40px;
  box-shadow: var(--shadow-card);
}
/* Override container widths inside cards */
.main-content-column section .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* Sticky Sidebar Column */
.sidebar-column {
  position: sticky;
  top: 110px;
  z-index: 100;
  align-self: start;
}
.sticky-form-card {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 24px !important;
}
.sticky-form-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.sidebar-column .form-desc {
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.sidebar-column .enquiry-form .form-group {
  margin-bottom: 12px;
}
.sidebar-column .enquiry-form input,
.sidebar-column .enquiry-form select {
  padding: 10px 14px;
  font-size: 0.88rem;
}
.sidebar-column .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.sidebar-usp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 16px;
}
.side-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.side-usp-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-secondary);
}

/* ==========================================
   SECTION COMMONS
   ========================================== */
.section-header {
  margin-bottom: 60px;
}
.why-invest-section .grid-4-col {
  gap: 16px;
}
.invest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 12px !important;
}
.invest-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(194, 34, 41, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.invest-icon svg {
  width: 18px;
  height: 18px;
}
.invest-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
  white-space: nowrap;
}

.section-subtitle {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.5rem;
  color: var(--color-primary);
}
.header-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin: 16px auto 0 auto;
  border-radius: 20px;
}
.section-header.text-center .header-line {
  margin-left: auto;
  margin-right: auto;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ==========================================
   OVERVIEW SECTION
   ========================================== */
.overview-content-wrapper,
.developer-content-wrapper {
  display: block;
  width: 100%;
}
.overview-text,
.developer-text {
  display: flow-root;
  width: 100%;
}

.overview-visual,
.developer-visual {
  float: right;
  width: 42%;
  height: 520px;
  margin-left: 36px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.overview-visual img,
.developer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-light);
  padding: 16px 24px;
  border-radius: var(--radius-medium);
  display: flex;
  flex-direction: column;
}
.badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1.1;
}
.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overview-text h3,
.developer-text h3,
.floorplans-intro-text h3,
.location-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.overview-text p,
.developer-text p,
.floorplans-intro-text p,
.location-details p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.overview-keypoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.keypoint-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.keypoint-item .icon-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(194, 34, 41, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.keypoint-item .icon-circle svg {
  width: 14px;
  height: 14px;
}
.keypoint-item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.4;
}

/* Floorplans Intro Section (floated layout matching overview principle) */
.floorplans-intro-wrapper {
  display: block;
  width: 100%;
}
.floorplans-intro-text {
  display: flow-root;
  width: 100%;
}
@media (min-width: 768px) {
  .overview-text h3,
  .floorplans-intro-text h3 {
    font-size: 1.45rem !important;
    white-space: nowrap;
  }
}
.floorplans-intro-visual {
  float: right;
  width: 42%;
  height: 520px;
  margin-left: 36px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.floorplans-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floorplans-keypoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ==========================================
   PRICING CARD SECTION
   ========================================== */
.pricing-cards-container {
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(47, 42, 39, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-card);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.sell-fast {
  background-color: #FEF2F2;
  color: #DC2626;
}
.featured-badge {
  background-color: var(--color-accent);
  color: var(--color-primary);
}
.premium-badge {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.config-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.price-box {
  background-color: var(--color-bg-light);
  padding: 16px 20px;
  border-radius: var(--radius-medium);
  margin-bottom: 28px;
}
.starting-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.main-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  display: block;
  margin: 4px 0;
  white-space: nowrap;
}
.emi-estimate {
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.pricing-details ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-details li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.95rem;
}
.pricing-details li strong {
  font-weight: 600;
}

.urgency-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.pricing-details-text,
.amenities-details-text {
  max-width: 900px;
  margin: 48px auto;
  text-align: justify;
}
.invest-details-text {
  max-width: 900px;
  margin: 24px auto 48px auto;
  text-align: justify;
}
.pricing-details-text p,
.amenities-details-text p,
.invest-details-text p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pricing-notice {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================
   FLOOR PLAN TABS
   ========================================== */
.floorplan-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
.floorplan-intro-desc {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-primary-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
}
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: #2F2A27;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}
.tab-btn.active {
  color: var(--color-accent);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
}

.tab-contents {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.floorplan-title {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 700;
}
.tab-contents .tab-panel {
  display: none;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.tab-contents .tab-panel.active {
  display: block;
}

.floorplan-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  height: 100%;
}
.floorplan-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.developer-visual {
  /* styled globally under overview-visual declaration */
}

.location-content-wrapper {
  display: block;
  width: 100%;
}
.location-details {
  display: flow-root;
  width: 100%;
}
.location-map {
  float: right;
  width: 42%;
  height: 520px;
  margin-left: 36px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100% !important;
  display: block;
}
.blur-preview {
  filter: blur(12px);
  transform: scale(1.05);
}
.blueprint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-text-light);
}
.blueprint-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.specs-table th, .specs-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.specs-table th {
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================
   AMENITIES GRID
   ========================================== */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amenity-card {
  background-color: var(--color-bg-white);
  padding: 30px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}
.amenity-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.amenity-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================
   FINANCIAL CALCULATORS
   ========================================== */
.calc-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calc-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
}
.calc-inputs .input-group {
  margin-bottom: 20px;
}
.input-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.input-badge {
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: var(--radius-small);
  font-size: 0.8rem;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #E2E8F0;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  background-color: rgba(15, 23, 42, 0.03);
  padding: 24px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.result-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.bg-accent-glow {
  background-color: rgba(197, 160, 89, 0.08);
  border-radius: var(--radius-small);
  padding: 8px;
}
.result-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* ==========================================
   LOCATION & DEVELOPER ADVANTAGES
   ========================================== */
.landmarks-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(194, 34, 41, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.timeline-icon svg {
  width: 14px;
  height: 14px;
}
.timeline-content {
  display: flex;
  flex-direction: column;
}
.timeline-content strong {
  font-size: 0.88rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.4;
}
.timeline-content span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-card {
  background-color: var(--color-bg-light);
  padding: 20px;
  border-radius: var(--radius-medium);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}
.stat-lbl {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-step {
  border-left: 2px solid rgba(197, 160, 89, 0.3);
  padding-left: 20px;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
/* FAQ Search & Filter Layouts */
.faq-search-wrapper {
  margin: 32px auto 0 auto;
}
.faq-search-box {
  position: relative;
  width: 100%;
}
.faq-search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-bg-white);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}
.faq-search-box input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 34, 41, 0.08);
}
.faq-search-box .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.faq-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 32px auto;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.filter-btn.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg-white);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}
.faq-question:hover {
  background-color: rgba(197, 160, 89, 0.05);
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-answer {
  padding: 0 24px 24px 24px;
  max-height: 300px;
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: #94A3B8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 80px 0 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
}
.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.brand-tagline {
  color: var(--color-accent-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-info {
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding-top: 30px;
}
.legal-disclaimer {
  font-size: 0.72rem;
  color: #64748B;
  text-align: justify;
  line-height: 1.5;
}
.copyright-bar {
  font-size: 0.8rem;
  color: #64748B;
}

/* ==========================================
   MODAL OVERLAY & FORMS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #2F2A27;
}
.modal-close:hover {
  color: var(--color-accent);
}

.popup-card {
  max-width: 500px;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
}
.popup-offer-tag {
  background-color: rgba(194, 34, 41, 0.1);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.popup-sub {
  color: var(--color-text-muted);
  margin-top: 8px;
}
.popup-footer-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ==========================================
   STICKY FLOATING BUTTONS
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-text-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.floating-btn svg,
.floating-btn i {
  width: 18px !important;
  height: 18px !important;
}
.floating-btn .label {
  position: absolute;
  right: 54px;
  left: auto;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-small);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.floating-btn:hover .label {
  opacity: 1;
  transform: translateX(0);
}
.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn.phone {
  background-color: #0284C7; /* Sky 600 */
}
.floating-btn.whatsapp {
  background-color: #16A34A; /* Green 600 */
}
.floating-btn.enquire {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
}

/* ==========================================
   RESPONSIVE VIEWPORT BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(245, 241, 232, 0.96) 0%, rgba(245, 241, 232, 0.88) 60%, rgba(245, 241, 232, 0.65) 100%) !important;
  }
  .main-price {
    font-size: 1.8rem !important;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-form-widget {
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .overview-visual,
  .developer-visual,
  .floorplans-intro-visual,
  .location-map {
    width: 45% !important;
    height: 480px !important;
    float: right !important;
    margin-left: 28px !important;
    margin-bottom: 20px !important;
    position: relative !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 1200px) {
  /* Mobile Menu triggered at 1200px to prevent header crowding */
  .mobile-toggle {
    display: flex;
  }
  .site-navigation {
    display: none !important;
  }
  
  .header-actions {
    display: none !important;
  }

  /* Grid Layout Collapse */
  .page-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sidebar-column {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 92px !important;
    padding-bottom: 48px !important;
    min-height: auto !important;
  }
  .offer-tag {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.5px !important;
  }
  .section-padding {
    padding: 48px 0;
  }
  .section-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
  }
  .section-desc {
    font-size: 0.9rem !important;
    margin-bottom: 24px !important;
  }
  .grid-2-col, .grid-3-col, .grid-4-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-invest-section .grid-4-col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .why-invest-section .invest-card h3 {
    white-space: normal !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }
  
  /* Reset height constraints when grid items stack on mobile */
  body {
    background-color: var(--color-bg-white) !important;
  }
  .main-layout-container {
    padding: 0 16px !important;
    margin: 20px auto !important;
  }
  .main-content-column {
    gap: 0 !important;
  }
  .main-content-column section {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 36px 0 !important;
  }
  .sticky-form-card {
    border: 1px solid var(--color-border) !important;
    background-color: var(--color-bg-light) !important;
    box-shadow: none !important;
    border-radius: var(--radius-large) !important;
    padding: 24px 16px !important;
  }
  .overview-visual, 
  .developer-visual,
  .floorplans-intro-visual,
  .location-map {
    height: 360px !important;
    position: relative !important;
    margin-bottom: 24px !important;
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  .overview-visual img, 
  .developer-visual img,
  .floorplans-intro-visual img {
    height: 100% !important;
  }
  .overview-keypoints,
  .floorplans-keypoints,
  .landmarks-timeline {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .floorplan-tabs-container .tab-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    margin-bottom: 16px !important;
    scrollbar-width: none !important; /* Hide scrollbar on Firefox */
  }
  .floorplan-tabs-container .tab-buttons::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar on Chrome/Safari */
  }
  .floorplan-tabs-container .tab-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
  }
  .floorplan-image-wrapper {
    height: 360px !important;
    padding: 12px !important;
    background-color: var(--color-bg-white) !important;
    border: 1px solid var(--color-border) !important;
  }
  .floorplan-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  .tab-contents {
    gap: 28px !important;
  }
  .tab-panel {
    padding: 24px 16px !important;
    border-radius: var(--radius-large) !important;
    box-shadow: var(--shadow-card) !important;
    background-color: var(--color-bg-white) !important;
    border: 1px solid var(--color-border) !important;
  }
  .floorplan-title {
    font-size: 1.25rem !important;
    margin-bottom: 16px !important;
    text-align: center;
  }
  .modal-card {
    width: calc(100% - 32px) !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 28px 20px 24px 20px !important;
  }
  .modal-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
  }
  .modal-card .form-desc {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
  }
  .modal-card .enquiry-form {
    margin-top: 12px !important;
  }
  .modal-card .form-group {
    margin-bottom: 10px !important;
  }
  .modal-card .btn {
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
  }
  .modal-close {
    top: 10px !important;
    right: 12px !important;
    font-size: 1.5rem !important;
  }
  .specs-table td, .specs-table th {
    padding: 8px !important;
    font-size: 0.85rem !important;
  }
  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px !important;
  }
  .faq-question {
    padding: 16px !important;
  }
  
  .hero-title {
    font-size: 1.95rem !important;
    line-height: 1.25 !important;
  }
  .hero-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .usp-number {
    font-size: 1.15rem;
    height: 2.2rem;
    white-space: nowrap;
  }
  .usp-number.price-number {
    font-size: 1.7rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  
  .trust-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-bar .divider {
    display: none;
  }

  .tab-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .site-footer {
    padding: 40px 0 20px 0 !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    padding-bottom: 24px !important;
  }
  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }
  .footer-brand {
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-brand p.project-info {
    max-width: 450px;
    margin: 8px auto 0;
  }
  .footer-contact {
    text-align: center;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
  }
  .footer-contact p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 10px 8px !important;
    font-size: 0.85rem !important;
  }
  .footer-links h4 {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }
  .footer-links ul {
    padding: 0;
    list-style: none;
  }
  .footer-links li {
    margin-bottom: 6px !important;
    font-size: 0.8rem !important;
  }
  .footer-bottom {
    padding-top: 16px !important;
  }
  .legal-disclaimer p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    text-align: justify;
  }
  .copyright-bar {
    margin-top: 12px !important;
    font-size: 0.72rem !important;
  }
  
  .floating-actions {
    left: auto !important;
    right: 12px !important;
    bottom: 12px !important;
  }
}

@media (max-width: 480px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .hero-usp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    border-left: 2px solid var(--color-accent) !important;
    padding-left: 12px !important;
    gap: 16px 12px !important;
  }
  .usp-number {
    font-size: 1.25rem !important;
    height: auto !important;
    white-space: normal !important;
  }
  .usp-number.price-number {
    font-size: 1.45rem !important;
  }
  .usp-label {
    font-size: 0.68rem !important;
  }
  .stats-counter-grid {
    grid-template-columns: 1fr !important;
  }
  .logo-img {
    height: 36px !important;
  }
  .site-header.scrolled .logo-img {
    height: 28px !important;
  }
  .location-badge {
    font-size: 0.68rem !important;
    padding: 2px 6px !important;
  }
  .hero-title {
    font-size: 2.1rem !important;
  }
}

/* ==========================================
   VISUAL GALLERY SECTION
   ========================================== */
.gallery-section {
  background-color: var(--color-bg-white);
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

/* ==========================================
   MOBILE-FIRST SWIPE SNAP CARD SLIDERS
   ========================================== */
@media (max-width: 768px) {
  .btn {
    white-space: normal !important;
    text-align: center;
  }
  .btn-large {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
  }
  .modal-card {
    padding-top: 48px !important;
  }
  .swipe-container {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 20px !important;
    padding: 16px 4px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .swipe-container::-webkit-scrollbar {
    display: none !important;
  }
  
  /* Pricing Card Slider */
  .pricing-cards-container.swipe-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .pricing-cards-container.swipe-container .pricing-card {
    flex: 0 0 290px !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
  }
  
  /* Gallery Card Slider */
  .gallery-container.swipe-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .gallery-container.swipe-container .gallery-item {
    flex: 0 0 280px !important;
    scroll-snap-align: center !important;
    aspect-ratio: 4 / 3 !important;
  }
}

/* ==========================================
   MOBILE FULLSCREEN MENU NAVIGATION OVERLAY
   ========================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}
.menu-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 16px;
}
.menu-close-btn {
  background: transparent;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
}
.menu-close-btn svg {
  width: 28px;
  height: 28px;
}
.overlay-navigation {
  margin: auto 0;
}
.overlay-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  padding: 0;
}
.overlay-nav-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.overlay-nav-link:active,
.overlay-nav-link.active {
  color: var(--color-accent);
}
.menu-overlay-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 20px;
  text-align: center;
}
.menu-legal {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ==========================================
   MOBILE STICKY CTA FOOTER & BOTTOM SHEET
   ========================================== */
.mobile-sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-white);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  padding: 12px 16px;
  z-index: 999;
  display: none;
}

@media (max-width: 1200px) {
  .sidebar-column {
    display: none !important; /* Hide desktop sticky form */
  }
}

@media (max-width: 768px) {
  .mobile-sticky-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 70px !important;
  }
  .floating-actions {
    left: auto !important;
    right: 12px !important;
    bottom: 80px !important; /* Push floating buttons above sticky cta bar */
  }
}

/* Bottom Sheet Modal Capture */
.bottom-sheet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bottom-sheet-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.bottom-sheet-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  max-height: 92%;
  background-color: var(--color-bg-white);
  border-radius: 24px 24px 0 0;
  z-index: 2200;
  padding: 16px 20px 32px 20px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.bottom-sheet-modal.active {
  bottom: 0;
}
.sheet-drag-handle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0;
  cursor: grab;
}
.sheet-drag-handle {
  width: 40px;
  height: 5px;
  background-color: #CBD5E1;
  border-radius: 10px;
}
.sheet-header {
  position: relative;
  margin-bottom: 20px;
  padding-right: 32px;
}
.sheet-header h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.sheet-subtitle {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.sheet-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
}
.sheet-body {
  flex-grow: 1;
}

/* Multi-Step Forms */
.sheet-progress-wrapper {
  margin-bottom: 24px;
}
.sheet-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.progress-step {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.progress-step.active {
  color: var(--color-accent);
}
.progress-track {
  width: 100%;
  height: 4px;
  background-color: #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: stepFadeIn 0.3s ease-in-out;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-label-bold {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}
.radio-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.radio-tile {
  position: relative;
  cursor: pointer;
  text-align: center;
}
.radio-tile input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-label {
  display: block;
  padding: 10px 4px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-medium);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  background-color: var(--color-bg-white);
}
.radio-tile input:checked + .radio-label {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: rgba(197, 160, 89, 0.05);
}
.sheet-action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ==========================================
   FULLSCREEN IMAGE VIEWER LIGHTBOX
   ========================================== */
.gallery-fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.98);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 3100;
}
.gallery-zoom-container {
  width: 90%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.gallery-zoom-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  transform-origin: center center;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-text-light);
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  z-index: 3050;
}
.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.prev-btn {
  left: 24px;
}
.next-btn {
  right: 24px;
}
.gallery-fullscreen-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #E2E8F0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  width: 80%;
}
@media (max-width: 768px) {
  .prev-btn, .next-btn {
    display: none; /* Swipe navigations are used on mobile instead */
  }
}

/* ==========================================
   DEFENSIVE MOBILE LAYOUT OVERFLOW PROTECTION
   ========================================== */
@media (max-width: 768px) {
  * {
    max-width: 100% !important;
    min-width: 0 !important;
  }
  
  html, body {
    width: 100% !important;
    overflow-x: clip !important;
  }
  
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  iframe, img, video {
    max-width: 100% !important;
  }
  
  .location-map iframe {
    width: 100% !important;
  }
  
  /* Reset overrides for touch horizontal sliders and overlays */
  .swipe-container, 
  .swipe-container *, 
  .mobile-menu-overlay,
  .mobile-menu-overlay *,
  .bottom-sheet-modal,
  .bottom-sheet-modal * {
    max-width: none !important;
    min-width: auto !important; /* Enable custom flex card widths */
  }
}

/* ==========================================
   CLIENT TESTIMONIALS SECTION (HORIZONTAL MARQUEE)
   ========================================== */
.t-section {
  background-color: var(--color-bg-white);
  overflow: hidden !important;
  max-width: 100% !important;
  padding-bottom: 80px;
}
.t-marquee-wrapper {
  width: 100%;
  max-width: 100% !important;
  overflow: hidden !important;
  position: relative;
  padding: 20px 0;
}
.t-marquee-wrapper::before,
.t-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.t-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}
.t-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}
.t-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: tMarqueeScroll 35s linear infinite;
}
.t-marquee-track:hover {
  animation-play-state: paused;
}
.t-card {
  width: 340px;
  background-color: var(--color-card);
  border: 1px solid rgba(47, 42, 39, 0.08);
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(47, 42, 39, 0.15);
}
.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  height: 16px;
}
.t-stars i,
.t-stars svg,
.t-stars svg.t-star-filled {
  width: 16px;
  height: 16px;
  fill: #F4B400;
  color: #F4B400;
  display: inline-block;
  flex-shrink: 0;
}
.t-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0 0 16px 0;
  flex-grow: 1;
}
.t-name {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}

@keyframes tMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-340px * 5 - 24px * 5));
  }
}

@media (max-width: 768px) {
  .t-marquee-track {
    animation: tMarqueeScroll 22s linear infinite;
  }
  .t-card {
    width: 280px;
    padding: 16px;
  }
  @keyframes tMarqueeScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 5 - 24px * 5));
    }
  }
}

/* Google Review Card Aesthetics */
.g-review-card {
  background-color: #FFFFFF !important;
  border: 1px solid #E0E0E0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  padding: 20px !important;
  border-radius: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}
.g-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  width: 100% !important;
}
.g-user-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  text-transform: uppercase !important;
}
.g-user-info {
  flex-grow: 1 !important;
  text-align: left !important;
}
.g-name {
  font-weight: 700 !important;
  color: #202124 !important;
  font-size: 0.88rem !important;
  line-height: 1.2 !important;
}
.g-meta {
  font-size: 0.72rem !important;
  color: #70757a !important;
}
.g-platform-logo {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.g-rating {
  margin-bottom: 8px !important;
  text-align: left !important;
}
.g-rating .t-stars {
  margin-bottom: 0 !important;
  gap: 2px !important;
  height: 14px !important;
}
.g-rating .t-stars i,
.g-rating .t-stars svg {
  width: 14px !important;
  height: 14px !important;
  fill: #F4B400 !important;
  color: #F4B400 !important;
}
.g-review-card .t-text {
  font-style: normal !important;
  font-size: 0.82rem !important;
  color: #3C4043 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  text-align: left !important;
  flex-grow: 1 !important;
}
