/* ==========================================================================
   LANDMARK DEVELOPERS — WORLD-CLASS LUXURY REAL ESTATE DESIGN SYSTEM
   Art-Directed Editorial Architecture | Master Blueprint Aesthetic
   ========================================================================== */

:root {
  /* Color Architecture */
  --obsidian: #0B1017;
  --obsidian-light: #131B26;
  --navy-deep: #0D1624;
  --navy-surface: #152236;
  
  --gold-champagne: #C5A059;
  --gold-bright: #D4AF37;
  --gold-glow: #E5C677;
  --gold-pale: #F3E8D0;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #9E7D3B 100%);
  --gold-gradient-glow: linear-gradient(135deg, #E5C677 0%, #D4AF37 50%, #B58E43 100%);

  --ivory-limestone: #F7F5EE;
  --ivory-sand: #EFECE3;
  --ivory-muted: #E2DDD0;
  --white: #FFFFFF;

  --ink-heading: #0B1017;
  --ink-body: #323A46;
  --ink-muted: #6B7685;
  --border-line: #E2DDD0;
  --border-dark-line: rgba(197, 160, 89, 0.2);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Syne', sans-serif;
  --font-kannada: 'Noto Sans Kannada', 'Plus Jakarta Sans', sans-serif;

  /* Spacing & Layout */
  --container-width: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows & Elevations */
  --shadow-lux: 0 30px 80px -20px rgba(11, 16, 23, 0.25);
  --shadow-card: 0 16px 40px -15px rgba(11, 16, 23, 0.12);
  --shadow-glow: 0 10px 40px -10px rgba(197, 160, 89, 0.35);

  /* Easing */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Core Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--ivory-limestone);
  color: var(--ink-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  width: 100%;
  color: var(--ink-body);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease-cinematic);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

h4 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}

p {
  margin-bottom: 1.25rem;
  color: var(--ink-body);
  font-size: 1.05rem;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-champagne);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-champagne);
  display: inline-block;
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-champagne);
  display: inline-block;
}

/* Section Shells — Compact & Tight */
.section {
  padding: 2.5rem 0;
  position: relative;
}

.section-tight {
  padding: 1.5rem 0;
}

.section-dark {
  background-color: var(--obsidian);
  color: var(--ivory-limestone);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(247, 245, 238, 0.75);
}

.section-sand {
  background-color: var(--ivory-sand);
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow-wrap: anywhere;
  z-index: 1;
  transition: all 0.4s var(--ease-cinematic);
}

.btn > span {
  min-width: 0;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--obsidian);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
}

.btn-gold:hover {
  background: var(--gold-gradient-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-obsidian {
  background: var(--obsidian);
  color: var(--white);
  border: 1px solid var(--obsidian);
}

.btn-obsidian:hover {
  background: var(--obsidian-light);
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-champagne);
}

.btn-outline-gold:hover {
  background: var(--gold-champagne);
  color: var(--obsidian);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--obsidian);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
}

.btn-block {
  width: 100%;
}

/* Responsive button group: horizontal on desktop, vertical on mobile */
.btn-group-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-cinematic);
}

.site-header.is-scrolled {
  background: rgba(11, 16, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Soft scrim so the logo, phone badge & hamburger stay legible over
   light-toned hero photos, before the solid is-scrolled background kicks in */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 16, 23, 0.55) 0%, rgba(11, 16, 23, 0.2) 65%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s var(--ease-cinematic);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

/* Used on pages where the transparent-until-scrolled header isn't legible
   on its own: the apply page has no hero image under it, and the home page's
   hero banner is too bright/busy for the nav text to stay readable over it */
.site-header.header-dark-bg {
  background: rgba(11, 16, 23, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.header-dark-bg::before {
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-wrapper {
  height: 84px;
  max-width: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-dark-line);
  background: rgba(11, 16, 23, 0.7);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-cinematic);
}

.brand-logo-wrapper:hover {
  border-color: var(--gold-champagne);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
  transform: translateY(-1px);
}

.brand-logo {
  height: 100%;
  width: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.4rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-champagne);
  transition: width 0.3s var(--ease-cinematic);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold-champagne);
}

.main-nav a.nav-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.4rem 1rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-sm);
}

.main-nav a.nav-highlight::after {
  display: none;
}

.main-nav a.nav-highlight span {
  font-size: 0.72rem;
  color: var(--gold-champagne);
}

.main-nav a.nav-highlight small {
  font-size: 0.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.phone-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.phone-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-champagne);
}

.phone-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px;
  position: relative;
  z-index: 1003;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.35s var(--ease-cinematic), opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.site-header.nav-open .nav-toggle .bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle .bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 16, 23, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1002;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-cinematic), visibility 0.35s;
}

.site-header.nav-open .nav-mobile-overlay,
body.nav-open > .nav-mobile-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-content {
  width: 85%;
  max-width: 420px;
  height: 100%;
  background: var(--obsidian);
  border-left: 1px solid rgba(197, 160, 89, 0.2);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-cinematic);
}

.site-header.nav-open .nav-mobile-content,
body.nav-open > .nav-mobile-overlay .nav-mobile-content {
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.eyebrow-text {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gold-champagne);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-mobile-close {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.nav-mobile-links li a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-mobile-links li a span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gold-champagne);
}

.nav-mobile-links li a:hover {
  color: var(--gold-champagne);
}

.nav-mobile-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
}

.nav-mobile-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.nav-mobile-contact a {
  color: var(--gold-champagne);
  font-weight: 700;
}

.nav-mobile-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn-whatsapp-full {
  background: #25D366;
  color: #fff;
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   FLAGSHIP HOMEPAGE HERO SECTION
   -------------------------------------------------------------------------- */
.hero-flagship {
  position: relative;
  /* Matches hero_img.webp's native 1351x592 ratio, so the section's height
     is always exactly what's needed to show the full banner at full width
     with zero cropping, at any screen size — no fixed-height guessing. */
  aspect-ratio: 1351 / 592;
  /* Matches the fixed header's actual rendered height (84px logo + 1.5rem
     top/bottom padding) so the image starts right where the header ends,
     with no overlap and nothing hidden behind it. */
  margin-top: 135px;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 12s var(--ease-cinematic);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 23, 0.75) 0%,
    rgba(11, 16, 23, 0.25) 50%,
    rgba(11, 16, 23, 0.95) 100%
  );
}

.hero-content-container {
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.ai-image-disclaimer {
  position: absolute;
  bottom: 6px;
  right: 10px;
  left: auto;
  z-index: 2;
  max-width: 90%;
  font-size: 0.6rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-accent);
  text-align: right;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 480px) {
  .ai-image-disclaimer {
    font-size: 0.5rem;
    bottom: 4px;
    right: 6px;
    white-space: normal;
    max-width: 60%;
  }
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.hero-tag {
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-pale);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hero-tag-light {
  background: var(--white);
  border: 1px solid var(--gold-champagne);
  color: var(--obsidian);
  box-shadow: var(--shadow-card);
}

.hero-tag-light:hover {
  background: var(--gold-champagne);
  color: var(--white);
  box-shadow: var(--shadow-lux);
}

.hero-title {
  color: var(--white);
  max-width: 920px;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-champagne);
  font-weight: 400;
}

.hero-lead {
  color: rgba(247, 245, 238, 0.85);
  font-size: 1.15rem;
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-feature-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  color: rgba(247, 245, 238, 0.92);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hero-feature-divider {
  color: var(--gold-champagne);
  opacity: 0.6;
}

.price-figure {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* Floating Process of Booking Panel */
.hero-finder-wrapper {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  margin-top: 1rem;
}

.hero-process-panel {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white);
  border-top: 3px solid var(--gold-champagne);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lux);
  padding: 1.25rem 1.75rem;
}

.hero-process-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-line);
}

.hero-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hero-process-col {
  display: flex;
  gap: 0.85rem;
  border-right: 1px solid var(--ivory-sand);
  padding-right: 1rem;
}

.hero-process-col:last-child {
  border-right: none;
  padding-right: 0;
}

.process-step-badge {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.process-step-content {
  display: flex;
  flex-direction: column;
}

.process-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.process-step-desc {
  font-size: 0.8rem;
  color: var(--ink-body);
  margin-bottom: 0;
  line-height: 1.35;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 1.5rem;
}

.scroll-cue .scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   EDITORIAL MANIFESTO SECTION
   -------------------------------------------------------------------------- */
.editorial-manifesto {
  background-color: var(--ivory-sand);
  padding: 3rem 0 1.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.manifesto-image-stack {
  position: relative;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.manifesto-text {
  margin-top: -10px;
}

.manifesto-img-primary {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: block;
  flex: none;
}

.kannada-title {
  font-family: var(--font-kannada);
  font-weight: 700;
  line-height: 1.35;
}

.kannada-title em {
  font-family: var(--font-kannada);
  font-style: normal;
  color: var(--gold-champagne);
}

.manifesto-img-badge {
  position: relative;
  margin-top: 1rem;
  flex: 1;
  background: var(--obsidian);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark-line);
  box-shadow: var(--shadow-card);
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.manifesto-img-badge strong {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-champagne);
  display: inline-block;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}

.manifesto-img-badge span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
}

.manifesto-text p.lead {
  font-size: 1.35rem;
  color: var(--ink-heading);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

/* --------------------------------------------------------------------------
   PROCESS OF BOOKING — ASYMMETRICAL EDITORIAL TIMELINE
   -------------------------------------------------------------------------- */
.process-section {
  background: var(--ivory-limestone);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all 0.4s var(--ease-cinematic);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-card);
}

.process-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-champagne);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.process-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--ink-body);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   FLAGSHIP PROJECT SPOTLIGHT — LOTUS PARK
   -------------------------------------------------------------------------- */
.project-spotlight {
  background: var(--obsidian);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.spotlight-gallery-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  border: 1px solid var(--border-dark-line);
}

.spotlight-main-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic);
}

.spotlight-gallery-frame:hover .spotlight-main-img {
  transform: scale(1.04);
}

.spotlight-status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 16, 23, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-pale);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spotlight-info h3 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.spotlight-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-champagne);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.amenities-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.pill-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   8 PILLARS OF EXCELLENCE (WHY CHOOSE US)
   -------------------------------------------------------------------------- */
.pillars-section {
  background: var(--ivory-sand);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border-line);
  transition: all 0.4s var(--ease-cinematic);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-card);
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--ink-body);
  margin-bottom: 0;
}

/* Alternate icon treatment: even cards get an inverted solid-obsidian
   badge instead of the gold outline, for visual rhythm across the row */
.pillars-grid-alt .pillar-card:nth-child(even) .pillar-icon-box {
  background: var(--obsidian);
  border-color: var(--obsidian);
  color: var(--gold-champagne);
}

/* --------------------------------------------------------------------------
   LIVE STATISTIC BAND
   -------------------------------------------------------------------------- */
.stat-counter-band {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark-line);
  border-bottom: 1px solid var(--border-dark-line);
  padding: 2rem 0;
  color: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-col strong {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold-champagne);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-col span {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS & TRUST
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--ivory-limestone);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-heading);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ivory-sand);
  border: 1px solid var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-champagne);
}

.testi-meta strong {
  font-size: 0.9rem;
  color: var(--ink-heading);
  display: block;
}

.testi-meta span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   PAGE HERO (INNER PAGES)
   -------------------------------------------------------------------------- */
.page-hero-lux {
  position: relative;
  background: var(--obsidian);
  color: var(--white);
  padding: 190px 0 100px;
  min-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark-line);
}

/* Apply page has no page-hero-lux banner, so its breadcrumb strip needs its
   own clearance to sit below the fixed header instead of underneath it */
.breadcrumb-strip {
  padding: 150px 0 1.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
}

.project-hero-lux {
  padding: 260px 0 130px;
}

.project-hero-lux .page-hero-bg {
  object-position: center 8%;
}

.breadcrumb-trail {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-champagne);
  margin-bottom: 0.5rem;
}

.breadcrumb-trail a {
  color: rgba(255, 255, 255, 0.7);
}

.page-title {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 0.4rem;
}

.page-sub {
  color: rgba(247, 245, 238, 0.8);
  font-size: 1.05rem;
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   PROJECTS PAGE — LOTUS PARK DETAILS & GALLERY
   -------------------------------------------------------------------------- */
.project-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.project-gallery-grid img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.project-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.amenity-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.amenity-card-lux {
  background: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-cinematic);
}

.amenity-card-lux:hover {
  transform: translateY(-6px);
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-lux);
}

.amenity-card-lux:nth-child(odd) {
  background: var(--gold-pale);
}

.amenity-card-lux .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.amenity-card-lux .icon-wrap svg {
  width: 30px;
  height: 30px;
}

.amenity-card-lux span {
  font-weight: 600;
  color: var(--ink-heading);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Nearby Landmarks Table */
.landmark-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-line);
}

.landmark-item strong {
  font-size: 0.95rem;
  color: var(--ink-heading);
}

.landmark-item span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-champagne);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  margin-top: 1.25rem;
  align-items: start;
}

/* --------------------------------------------------------------------------
   CAREER PAGE — OPEN POSITIONS TABLE
   -------------------------------------------------------------------------- */
.career-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.career-table {
  overflow-wrap: normal;
  white-space: nowrap;
}

.career-table td[data-label="Description"] {
  white-space: normal;
}

@media (min-width: 769px) {
  .career-table td[data-label="Description"] {
    min-width: 260px;
  }
}

/* --------------------------------------------------------------------------
   CONTACT PAGE & GLASSMORPHISM FORMS
   -------------------------------------------------------------------------- */
.contact-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-info-panel {
  background: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold-gradient);
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-line);
}

.info-block {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-line);
  transition: padding-left 0.3s var(--ease-cinematic);
}

.info-block:first-of-type {
  padding-top: 0;
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-block:hover {
  padding-left: 0.4rem;
}

.info-block label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-champagne);
  display: block;
  margin-bottom: 0.6rem;
}

.info-block p, .info-block a {
  font-size: 1rem;
  color: var(--ink-heading);
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--gold-champagne);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.form-panel-lux {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-line);
  border-top: 4px solid var(--gold-champagne);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lux);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-heading);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  background: var(--ivory-limestone);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-heading);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-champagne);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: #D64545;
}

.consent-checkbox span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #D64545;
}

.consent-checkbox span a {
  color: #D64545;
  text-decoration: underline;
}

/* Map Card */
.map-frame-lux {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  outline: 1px solid var(--border-line);
  box-shadow: var(--shadow-lux);
  background: var(--white);
}

/* --------------------------------------------------------------------------
   UTILITY GRID CLASSES (for page-specific layouts)
   -------------------------------------------------------------------------- */

/* Vision / Mission 2-col */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Leadership team (2 members) */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.leadership-grid h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}

.leader-photo {
  width: 200px;
  height: 200px;
}

/* Form row 2-col */
.form-row-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer-lux {
  background: var(--obsidian);
  color: rgba(247, 245, 238, 0.7);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-dark-line);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 1.2rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.3);
  transition: all 0.3s var(--ease-cinematic);
}

.social-icon:hover {
  color: var(--obsidian);
  background: var(--gold-champagne);
  border-color: var(--gold-champagne);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--gold-champagne);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--gold-champagne);
}

/* Floating Actions: WhatsApp & Top Button */
.float-widget-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-cinematic);
}

.fab-whatsapp {
  background: #25D366;
  color: #fff;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.fab-top {
  background: var(--obsidian);
  color: var(--gold-champagne);
  border: 1px solid var(--gold-champagne);
  opacity: 0;
  pointer-events: none;
}

.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}

.fab-top:hover {
  background: var(--gold-champagne);
  color: var(--obsidian);
  transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
  background-color: var(--obsidian);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 2cm 0 5rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
  display: flex;
  flex-direction: column;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.35s var(--ease-cinematic);
}

.why-card:hover .why-card-icon {
  background: var(--gold-champagne);
  color: var(--obsidian);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.why-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247, 245, 238, 0.7);
  margin-bottom: 0;
}

/* What We Offer Section */
.offerings-section {
  position: relative;
  background-color: var(--ivory-limestone);
  padding: 2.5rem 0 5rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-champagne);
  box-shadow: 0 20px 40px rgba(11, 16, 23, 0.08);
}

.offering-card:hover::before {
  opacity: 1;
}

.offering-card:nth-child(odd) {
  background: var(--gold-pale);
}

.offering-num {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
  letter-spacing: 0.1em;
}

.offering-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--ink-heading);
  margin-bottom: 0.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.offering-subtitle {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  color: var(--gold-champagne);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  font-weight: 700;
  display: block;
}

.offering-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-body);
  margin-bottom: 0;
}

/* Mobile Bottom Navigation Capsule */
.mobile-bottom-nav {
  display: none;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN — COMPREHENSIVE MOBILE-FIRST SYSTEM
   -------------------------------------------------------------------------- */

/* ── TABLET: 1080px ─────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }

  .hero-process-col {
    border-right: none;
    padding-right: 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-docs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  /* About page */
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* ── MOBILE: 768px ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* === TYPOGRAPHY SCALE === */
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h3 { font-size: clamp(1.4rem, 5vw, 2rem); }
  h4 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  p { font-size: 1rem; }

  .container {
    padding: 0 1.1rem;
  }

  /* === SECTION PADDING === */
  .section {
    padding: 4rem 0;
  }

  .section-tight {
    padding: 3rem 0;
  }

  /* === NAVIGATION === */
  .main-nav,
  .header-phone-badge {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  .header-cta {
    gap: 0.75rem;
  }

  /* Keep book visit button visible on mobile but smaller */
  .header-cta .btn-gold.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.68rem;
    min-height: 40px;
    min-width: auto;
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .hero-flagship {
    margin-top: 90px;
  }

  .breadcrumb-strip {
    padding: 110px 0 1.25rem;
  }

  .brand-logo-wrapper {
    height: 60px;
    max-width: 190px;
    padding: 3px 8px;
  }

  .brand-logo {
    max-height: 52px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero-content-container {
    padding-bottom: 2rem;
  }

  .hero-badge-strip {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-feature-strip {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  /* === PROCESS BOOKING PANEL (HERO) === */
  .hero-finder-wrapper {
    margin-bottom: -1rem;
  }

  .hero-process-panel {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  .hero-process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .hero-process-header h3 {
    font-size: 1.1rem !important;
  }

  .hero-process-grid {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .hero-process-col {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-line);
    padding-bottom: 1.25rem;
  }

  .hero-process-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .process-step-badge {
    font-size: 1.6rem;
    min-width: 2rem;
  }

  .process-step-title {
    font-size: 0.88rem;
  }

  .process-step-desc {
    font-size: 0.78rem;
  }

  .scroll-cue {
    display: none;
  }

  /* === EDITORIAL MANIFESTO === */
  .editorial-manifesto {
    padding: 5rem 0 1.5rem;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .manifesto-img-badge {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .manifesto-image-stack {
    padding-bottom: 0;
  }

  .manifesto-img-badge strong {
    font-size: 2.4rem;
  }

  .manifesto-text p.lead {
    font-size: 1.1rem;
  }

  /* Button groups: stack on mobile */
  .btn-group-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-group-row .btn {
    width: 100%;
    justify-content: center;
  }

  .btn:not(.btn-sm):not(.btn-block) {
    min-height: 52px;
    padding: 1rem 1.5rem;
  }

  /* === PROJECT SPOTLIGHT === */
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .spotlight-main-img {
    aspect-ratio: 4/3;
  }

  .spotlight-info h3 {
    font-size: 2rem;
  }

  .amenities-pill-grid {
    gap: 0.6rem;
    margin: 1.5rem 0;
  }

  .pill-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  /* === PILLARS GRID === */
  .pillars-section {
    padding: 4rem 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
  }

  .pillar-card {
    padding: 1.75rem 1.5rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 1.25rem;
    row-gap: 0.35rem;
    align-items: start;
  }

  .pillar-icon-box {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .pillar-card h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .pillar-card p {
    grid-column: 2;
    grid-row: 2;
  }

  /* === PROJECTS PAGE: SPECS & LANDMARKS GRIDS === */
  .specs-grid,
  .landmarks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* === CAREER PAGE: OPEN POSITIONS TABLE → STACKED CARDS === */
  .career-table thead {
    display: none;
  }

  .career-table,
  .career-table tbody,
  .career-table tr,
  .career-table td {
    display: block;
    width: 100%;
  }

  .career-table {
    box-shadow: none !important;
  }

  .career-table tr {
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

  .career-table tr:last-child {
    margin-bottom: 0;
  }

  .career-table td {
    padding: 0.9rem 1.25rem !important;
    border-bottom: 1px solid var(--border-line);
  }

  .career-table td:last-child {
    border-bottom: none;
  }

  .career-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-champagne);
    margin-bottom: 0.35rem;
  }

  /* === STAT BAND === */
  .stat-counter-band {
    padding: 3rem 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    text-align: center;
  }

  .stat-col strong {
    font-size: 2.8rem;
  }

  .stat-col span {
    font-size: 0.68rem;
  }

  /* === PROCESS SECTION (inner page) === */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .process-card {
    padding: 2rem 1.5rem;
  }

  .process-num {
    font-size: 2.5rem;
  }

  /* === TESTIMONIALS === */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .testi-card {
    padding: 2rem 1.5rem;
  }

  .testi-quote {
    font-size: 1.1rem;
  }

  /* === PAGE HERO (inner pages) === */
  .page-hero-lux {
    padding: 160px 0 80px;
    min-height: 380px;
  }

  .project-hero-lux {
    padding: 200px 0 90px;
  }

  /* Career hero photo has its own baked-in headline on the left half;
     bias the crop toward the building/people on the right so mobile
     cover-cropping doesn't slice the text mid-word */
  .career-hero-lux .page-hero-bg {
    object-position: 75% center;
  }

  .page-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-sub {
    font-size: 1rem;
  }

  /* === PROJECTS PAGE === */
  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .project-docs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .amenity-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .amenity-card-lux {
    padding: 1.5rem 1.25rem;
  }

  /* Specs 2-col grid: collapse */
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  /* Nearby landmarks / map grid: collapse */
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .map-frame-lux iframe {
    height: 260px;
  }

  /* Brochure download row: stack */
  #brochure {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    padding: 1.75rem !important;
  }

  /* Specs panel */
  [style*="padding: 3.5rem"] {
    padding: 2rem 1.5rem !important;
  }

  /* === CONTACT PAGE === */
  .contact-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info-panel h3 {
    font-size: 1.8rem;
  }

  .form-panel-lux {
    padding: 2rem 1.5rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .leader-photo {
    width: 160px;
    height: 160px;
  }

  .vision-mission-grid,
  .leadership-grid,
  .why-choose-grid,
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-block p, .info-block a {
    font-size: 1rem;
  }

  /* === FOOTER === */
  .site-footer-lux {
    padding: 4rem 0 2rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1.5rem;
  }


  /* === FABs: move inward on small screens === */
  .float-widget-container {
    bottom: 6rem !important;
  }

  .fab-whatsapp {
    display: none !important;
  }

  .fab-btn {
    width: 48px;
    height: 48px;
  }

  /* === MOBILE BOTTOM NAVIGATION === */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 58px;
    background: #0d2220; /* Deep luxury forest green background */
    border: 1.5px solid rgba(197, 160, 89, 0.35);
    border-radius: 100px;
    box-shadow: 0 12px 35px rgba(11, 16, 23, 0.45);
    z-index: 1001;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-item {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    background: transparent;
    padding: 0;
  }

  .mobile-nav-item:not(:last-child) {
    border-right: 1.5px solid rgba(197, 160, 89, 0.2);
  }

  .mobile-nav-item:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-whatsapp-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #25D366;
  }
}

/* ── SMALL MOBILE: 480px ────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .container {
    padding: 0 0.9rem;
  }

  h1 { font-size: clamp(1.8rem, 7.5vw, 2.5rem); line-height: 1.3; }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }
  h3 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }

  /* Site-visit-timing badge: shrink to fit "7 AM – 5 PM" on one line */
  .manifesto-img-badge strong {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .manifesto-img-badge {
    gap: 0.85rem;
  }

  /* Hero: very small screens */
  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    padding: 0.3rem 0.7rem;
  }

  /* Process panel: tighter */
  .hero-process-panel {
    padding: 1rem 0.85rem;
  }

  /* Stat band: 2 col */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .stat-col strong {
    font-size: 2.2rem;
  }

  /* CTA inline: keep stacked */
  .btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.75rem;
  }

  /* Pillars: remain single col, row layout */
  .pillar-card {
    padding: 1.5rem 1.2rem;
    gap: 1rem;
  }

  .pillar-icon-box {
    width: 44px;
    height: 44px;
  }

  /* Testimonials */
  .testi-quote {
    font-size: 1rem;
  }

  /* Nav mobile drawer: full width */
  .nav-mobile-content {
    width: 100%;
    max-width: 100%;
  }

  .nav-mobile-links li a {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-col h5 {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  /* Inner page hero */
  .page-hero-lux {
    padding: 140px 0 65px;
    min-height: 340px;
  }

  .project-hero-lux {
    padding: 170px 0 75px;
  }

  .page-title {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
  }

  /* Map iframe */
  .map-frame-lux iframe {
    height: 220px;
  }

  /* Float widget */
  .float-widget-container {
    bottom: 5.5rem !important;
    right: 1rem;
    gap: 0.75rem;
  }

  .fab-whatsapp {
    display: none !important;
  }

  .fab-btn {
    width: 44px;
    height: 44px;
  }
}

/* ── LANDSCAPE PHONES: fix hero height ───────────────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-process-panel {
    padding: 1rem;
  }

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

  .hero-process-col {
    border-bottom: none;
    padding-bottom: 0;
    border-right: 1px solid var(--border-line);
    padding-right: 1rem;
  }

  .hero-process-col:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
}

/* ── TOUCH TARGET ACCESSIBILITY ────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Apply minimum touch targets only to standalone interactive controls */
  .btn,
  .nav-toggle,
  .nav-mobile-close,
  .fab-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Adequate touch target for list links without breaking layout */
  .footer-col ul li a {
    display: inline-block;
    padding: 0.6rem 0;
  }

  .nav-mobile-links li a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }
}

/* ── PRINT STYLES ─────────────────────────────────────────────────────── */
@media print {
  .site-header,
  .float-widget-container,
  .nav-mobile-overlay {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: inherit;
    text-decoration: underline;
  }
}
