/* ============================================================
   ANURAAG AMOGH — UNIFIED LANDING PAGE STYLESHEET
   Color Palette: #F0EDE8 (Cream bg) + #C4A35A (Gold Accent)
   Lightest shade of gold: #FAF6EE
   Responsive: Mobile → Tablet → PC → Smart TV (4K)
   ============================================================ */

/* ──────────────────────────────────────────────
   1. CSS VARIABLES & RESET
   ────────────────────────────────────────────── */
:root {
  --bg-cream: #F0EDE8;                 /* Primary cream bg */
  --bg-cream-translucent: rgba(240, 237, 232, 0.92);
  --gold: #C4A35A;                     /* Primary gold accent */
  --gold-lightest: #FAF6EE;            /* Lightest shade of gold for alternating sections */
  --gold-light: #E0CE9E;
  --gold-dark: #9A7B3F;
  --gold-hover: #D4B76A;
  --text-dark: #2A1F0D;                /* Elegant dark bronze/brown for headings */
  --text-body: #4E3E26;                /* Deep warm brown for body readability */
  --text-muted: #807361;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --card-border: rgba(196, 163, 90, 0.25);
  --shadow-sm: 0 4px 12px rgba(196, 163, 90, 0.08);
  --shadow-md: 0 8px 24px rgba(196, 163, 90, 0.12);
  --shadow-lg: 0 20px 50px rgba(42, 31, 13, 0.15);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', var(--font-body);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 6px;
  --radius-lg: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Scroll animation base classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   2. STICKY NAVIGATION BAR
   ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-cream-translucent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}
.nav-logo-gold {
  color: var(--gold);
}

.nav-phone {
  background-color: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(196, 163, 90, 0.2);
}
.nav-phone:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(196, 163, 90, 0.3);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.nav-links a {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

/* ──────────────────────────────────────────────
   3. FIXED ENQUIRY BUTTON & FLOATING WIDGETS
   ────────────────────────────────────────────── */
.enquiry-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 22px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -4px 0 20px rgba(196, 163, 90, 0.25);
  transition: var(--transition);
}
.enquiry-float:hover {
  background: var(--gold-hover);
  transform: translateY(-50%) translateX(-4px);
  box-shadow: -6px 0 24px rgba(196, 163, 90, 0.35);
}

/* WhatsApp & Phone Floating Buttons */
.floating-icon {
  position: fixed;
  z-index: 999;
  bottom: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(42, 31, 13, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  transition: var(--transition);
  font-size: 24px;
}
.floating-icon:hover {
  transform: scale(1.1) translateY(-2px);
}
.floating-whatsapp {
  left: 24px;
  background-color: #25d366;
  color: var(--white);
}
.floating-phone {
  right: 24px;
  background-color: var(--gold);
  color: var(--white);
}

/* ──────────────────────────────────────────────
   4. SHARED SECTION HEADER
   ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}
.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 14px auto;
  border: none;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

/* ──────────────────────────────────────────────
   SECTION 1: STARTING OF THE PAGE (HERO)
   ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1688px;
  margin: 0 auto;
}

.hero-img-wrap {
  position: relative;
  display: block;
}
.price-medallion-photo {
  display: none;
}
.price-medallion-photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

/* Premium Light Cream Overlay for cohesive styling */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
    rgba(240, 237, 232, 0.98) 0%,
    rgba(240, 237, 232, 0.88) 30%,
    rgba(240, 237, 232, 0.35) 50%,
    rgba(240, 237, 232, 0.88) 75%,
    rgba(240, 237, 232, 0.98) 100%
  );
}

.hero-left {
  position: absolute;
  top: 18%;
  left: 5%;
  width: 44%;
  z-index: 3;
}

.gold-hr {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 15px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text-dark);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  color: var(--gold-dark);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero-highlights {
  list-style: none;
  margin-bottom: 30px;
}
.hero-highlights li {
  color: var(--text-body);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-size: clamp(12px, 1.2vw, 16px);
  display: flex;
  align-items: center;
  font-weight: 500;
}
.hero-highlights li::before {
  content: "\2022";
  color: var(--gold);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 12px;
  font-size: 20px;
}

.hero-cta {
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: var(--text-dark);
  padding: 14px 36px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(42, 31, 13, 0.15);
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}
.hero-cta:hover {
  background-color: var(--gold);
  box-shadow: 0 6px 20px rgba(196, 163, 90, 0.35);
  transform: translateY(-2px);
}

/* Right side glassmorphic info cards */
.hero-right {
  position: absolute;
  top: 18%;
  right: 5%;
  width: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(196, 163, 90, 0.15);
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  box-shadow: 0 10px 30px rgba(42, 31, 13, 0.08);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  min-height: 96px;
}
.glass-panel:hover {
  border-left-color: var(--gold-hover);
  transform: translateX(-4px);
  box-shadow: 0 15px 35px rgba(196, 163, 90, 0.2);
  background: var(--white);
}

.glass-top { min-width: 330px; padding: 1.35rem 1.65rem; }
.glass-top .glass-value { font-size: 18px; line-height: 1.25; }
.glass-top .glass-label { font-size: 13.5px; }

.glass-mid { min-width: 338px; padding: 1.05rem 1.5rem; }
.glass-mid .glass-value { font-size: 21px; }
.glass-mid .glass-label { font-size: 12px; }

.glass-bot { min-width: 270px; padding: 0.825rem 1.35rem; }
.glass-bot .glass-value { font-size: 19.5px; }
.glass-bot .glass-label { font-size: 10.5px; }

  /* ──────────────────────────────────────────────
     PRICE MEDALLION — circular seal badge (desktop)
     Sits below the TYPOLOGY card, overlapping its
     bottom-right corner slightly.
     2-second loop, frequent attention-grabbing wobble.
     ────────────────────────────────────────────── */
  .price-medallion-wrap {
    align-self: flex-end;
    width: 130px;
    height: 130px;
    margin-top: 10px;
    margin-right: 94px;
    position: relative;
    z-index: 6;
    cursor: pointer;
    border-radius: 50%;
    filter: drop-shadow(0 4px 14px rgba(42, 31, 13, 0.3));
    animation: medallionGlow 2s ease-in-out infinite,
               medallionJiggle 2s ease-in-out infinite;
  }
  .price-medallion-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .price-medallion-wrap:hover {
    filter: drop-shadow(0 6px 18px rgba(42, 31, 13, 0.4)) brightness(1.05);
  }

.glass-label {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.glass-value {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Badges strip on bottom of Hero */
.hero-badges {
  position: absolute;
  bottom: 4%;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-around;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}
.badge-item {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.badge-icon {
  color: var(--gold);
  margin-right: 6px;
}

/* ──────────────────────────────────────────────
   SECTION 2: DESCRIPTION (ABOUT)
   ────────────────────────────────────────────── */
.desc-section {
  background-color: var(--gold-lightest); /* Lightest gold alternate bg */
  padding: 20px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.desc-container {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px;
  align-items: center;
}

.desc-left {
  width: 100%;
}
.desc-image-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}
.desc-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}
.desc-image-card:hover .desc-hero-image {
  transform: scale(1.02);
}

.desc-right {
  display: flex;
  flex-direction: column;
}

.desc-text-block {
  border-left: 4px solid var(--gold);
  padding-left: 32px;
  margin-bottom: 28px;
}

.desc-project-name {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.desc-sub-label {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.desc-sub-label:hover {
  text-decoration: underline;
}

.desc-body-text {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-body);
  text-align: justify;
  line-height: 1.75;
}

/* Feature Chips */
.desc-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-left: 36px;
}
.desc-chip {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--card-border);
  color: var(--text-body);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.desc-chip:hover {
  background-color: var(--bg-cream);
  border-color: var(--gold);
}
.chip-emoji {
  margin-right: 8px;
  font-size: 1rem;
}

/* Action button */
.desc-cta-btn {
  background-color: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(42, 31, 13, 0.12);
  margin-left: 36px;
}
.desc-cta-btn:hover {
  background-color: var(--gold);
  box-shadow: 0 6px 20px rgba(196, 163, 90, 0.3);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────
   SECTION 3: SPECIALTY (PENTAGON ACCORDION)
   ────────────────────────────────────────────── */
.specialty-section {
  background-color: var(--bg-cream);
  padding-bottom: 80px;
}

.specialty-banner {
  position: relative;
  width: 95%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  background-color: var(--gold-lightest);
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  margin: 0 auto;
}

.specialty-left {
  width: 40%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pentagon-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(4px 10px 20px rgba(42, 31, 13, 0.12));
  overflow: visible;
}

.pentagon-slice {
  stroke: var(--gold);
  stroke-width: 0.8;
  stroke-linejoin: round;
  transform-origin: 32.4px 50px;
}

.lifestyle-label {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.33, 1);
}
.label-pill {
  display: inline-block;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.lifestyle-label:hover .label-pill,
.lifestyle-label.hovered .label-pill {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.03);
}

.specialty-right {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 8% 5% 6%;
  position: relative;
}
.specialty-content {
  max-width: 580px;
  z-index: 2;
}
.specialty-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.specialty-divider {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 26px;
  border: none;
}
.specialty-description {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-body);
  text-align: justify;
}

/* ──────────────────────────────────────────────
   SECTION 4: AMENITIES
   ────────────────────────────────────────────── */
.amenities-section {
  background: var(--gold-lightest); /* alternating lightest gold bg */
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 0 40px 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Custom horizontal scrollbar styling */
.amenities-section::-webkit-scrollbar {
  height: 6px;
}
.amenities-section::-webkit-scrollbar-track {
  background: rgba(196, 163, 90, 0.1);
  border-radius: 3px;
}
.amenities-section::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.amenities-cards-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: max-content;
  margin: 0 auto;
  padding: 24px 10px;
}

.amenity-card {
  position: relative;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.amenity-card:hover img,
.amenity-card:hover .amenity-card-bg {
  transform: scale(1.08);
}

.amenity-card-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center bottom;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Elegant label card with translucent gold/cream panel */
.amenity-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(42, 31, 13, 0.85) 0%, rgba(42, 31, 13, 0.3) 60%, transparent 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* Cascaded height arrangement for visual rhythm */
.amenity-card:nth-child(1) { height: 340px; width: 185px; }
.amenity-card:nth-child(2) { height: 390px; width: 210px; }
.amenity-card:nth-child(3) { height: 440px; width: 240px; }
.amenity-card:nth-child(4) { height: 390px; width: 210px; }
.amenity-card:nth-child(5) { height: 340px; width: 185px; }

/* ──────────────────────────────────────────────
   SECTION 5: FLOOR PLAN
   ────────────────────────────────────────────── */
.floorplan-section {
  background-color: var(--bg-cream);
  padding-bottom: 60px;
}

.floorplan-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
  padding: 0 24px;
  min-height: 60vh;
}

.floorplan-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  background-color: var(--white);
  padding: 12px;
  transition: var(--transition);
}
.floorplan-img-wrap:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.floorplan-img-wrap img {
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.floorplan-divider {
  width: 1px;
  height: 50vh;
  background: rgba(196, 163, 90, 0.35);
  flex-shrink: 0;
  align-self: center;
}

.floorplan-note {
  margin-top: 24px;
  font-family: Georgia, serif;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
}

/* ──────────────────────────────────────────────
   SECTION 6: INTERNAL VIEW (3D COLLAGE)
   ────────────────────────────────────────────── */
.internal-view-section {
  background-color: var(--gold-lightest); /* alternating lightest gold bg */
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 0 40px 60px;
}

.internal-view-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 581 / 382;
}

.internal-view-img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              z-index 0.1s;
}

.internal-view-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 10 !important;
}

/* Grid coordinate mappings (1.5x scaled absolute coordinates) */
.internal-view-img-11 {
  left: 3.5%;
  top: 10.5%;
  width: 44.7%;
  height: 41.9%;
  z-index: 2;
}

.internal-view-img-1 {
  left: 49.2%;
  top: 19.7%;
  width: 31.8%;
  height: 32.7%;
  z-index: 3;
}

.internal-view-img-2 {
  left: 17.2%;
  top: 53.92%;
  width: 31%;
  height: 32.7%;
  z-index: 2;
}

.internal-view-img-13 {
  left: 49.2%;
  top: 53.92%;
  width: 44.7%;
  height: 41.9%;
  z-index: 1;
}

/* Stylized blockquote labels inside collage */
.internal-view-quote {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.6;
  letter-spacing: 0.3px;
  padding: 1rem;
}

.internal-view-quote-1 {
  left: 0%;
  top: 53.7%;
  width: 15.5%;
  height: 32.7%;
}

.internal-view-quote-2 {
  left: 80.9%;
  top: 19.6%;
  width: 19.1%;
  height: 32.7%;
}

.internal-view-note {
  margin-top: 24px;
  font-family: Georgia, serif;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
}

/* ──────────────────────────────────────────────
   SECTION 7: LOCATION ADVANTAGES
   ────────────────────────────────────────────── */
.location-section {
  background-color: var(--bg-cream);
  padding-bottom: 60px;
}

.location-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.location-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

.location-note {
  margin-top: 24px;
  font-family: Georgia, serif;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
}

/* ──────────────────────────────────────────────
   SECTION 8: FAQ (ACCORDION)
   ────────────────────────────────────────────── */
.amogh-faq-section {
  background-color: var(--gold-lightest); /* alternating lightest gold bg */
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 20px 80px;
  width: 100%;
}
.amogh-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.amogh-faq-divider {
  height: 1px;
  background-color: var(--gold);
  border: none;
  width: 120px;
  margin: 0 auto;
  opacity: 0.8;
}
.amogh-faq-divider-top { margin-bottom: 24px; }
.amogh-faq-divider-bottom { margin-top: 24px; }

.amogh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  list-style: none;
}

.amogh-faq-card {
  background-color: var(--white);
  border: 1px solid var(--card-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.amogh-faq-card:not(.amogh-faq-open):hover {
  background-color: rgba(196, 163, 90, 0.05);
}
.amogh-faq-card.amogh-faq-open {
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.12);
}

.amogh-faq-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  gap: 18px;
  font-family: inherit;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.amogh-faq-badge {
  background-color: var(--gold);
  color: var(--white);
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 15px;
  transition: transform 0.3s ease;
}
.amogh-faq-card.amogh-faq-open .amogh-faq-badge {
  transform: scale(1.05);
}

.amogh-faq-question-text {
  font-weight: bold;
  color: var(--text-dark);
  font-size: clamp(15px, 1.8vw, 16px);
  font-family: Georgia, serif;
  flex-grow: 1;
  line-height: 1.45;
}

.amogh-faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.amogh-faq-icon::before,
.amogh-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  border-radius: 1px;
}
.amogh-faq-icon::before {
  width: 16px;
  height: 2px;
}
.amogh-faq-icon::after {
  width: 2px;
  height: 16px;
}
.amogh-faq-card.amogh-faq-open .amogh-faq-icon {
  transform: rotate(45deg);
}

.amogh-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.amogh-faq-card.amogh-faq-open .amogh-faq-panel {
  max-height: 500px;
}

.amogh-faq-content {
  padding: 20px 24px 24px 24px;
  border-top: 1px solid rgba(196, 163, 90, 0.15);
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────
   SECTION 9: ENQUIRY POPUP (MODAL)
   ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 31, 13, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  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: all;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  border: 1px solid var(--card-border);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.modal-close-btn:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-content {
  padding: 40px;
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
}
.modal-header {
  margin-bottom: 24px;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.25;
}
.modal-subtitle-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
}

.modal-submit-btn {
  background-color: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(42, 31, 13, 0.15);
}
.modal-submit-btn:hover {
  background-color: var(--gold);
  box-shadow: 0 6px 16px rgba(196, 163, 90, 0.3);
}

.modal-consent {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Success state inside popup */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease forwards;
}
.success-icon-circle {
  width: 64px;
  height: 64px;
  background-color: var(--gold-lightest);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: bold;
}
.success-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 12px;
}
.success-message {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

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

  @keyframes medallionGlow {
    0%, 100% {
      filter: drop-shadow(0 4px 14px rgba(42, 31, 13, 0.3))
              drop-shadow(0 0 0px rgba(196, 163, 90, 0));
    }
    50% {
      filter: drop-shadow(0 4px 18px rgba(42, 31, 13, 0.32))
              drop-shadow(0 0 12px rgba(196, 163, 90, 0.55));
    }
  }

  @keyframes medallionJiggle {
    0%, 40%   { transform: rotate(0deg) scale(1); }
    50%       { transform: rotate(-6deg) scale(1.05); }
    60%       { transform: rotate(6deg) scale(1.05); }
    70%       { transform: rotate(-4deg) scale(1.03); }
    80%       { transform: rotate(4deg) scale(1.03); }
    90%, 100% { transform: rotate(0deg) scale(1); }
  }


/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.site-footer {
  background-color: var(--text-dark);
  border-top: 3px solid var(--gold);
  padding: 48px 20px;
  text-align: center;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer-text {
  color: var(--gold-lightest);
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════ */

/* ──────────────────────────────────────────────
   SMART TV / 4K DISPLAYS (2000px+)
   ────────────────────────────────────────────── */
@media (min-width: 2000px) {
  html { font-size: 19px; } /* Scales up base sizing */
  
  .nav-container {
    max-width: 1800px;
    padding: 0 80px;
    height: 90px;
  }
  .nav-logo { font-size: 1.7rem; }
  .nav-phone { font-size: 1.05rem; padding: 12px 30px; }

  .hero-wrapper { max-width: 100%; }

  .section-header { padding: 110px 40px 60px; }
  .section-title { font-size: 3.2rem; }
  .section-subtitle { font-size: 1.15rem; }
  .section-divider { width: 80px; height: 3px; }

  .desc-container {
    max-width: 1800px;
    gap: 80px;
    padding: 80px 80px;
  }
  .desc-project-name { font-size: 4rem; }
  .desc-body-text { font-size: 1.1rem; }
  .desc-chip { font-size: 0.95rem; padding: 10px 22px; }

  .specialty-banner { max-width: 1700px; }
  .specialty-headline { font-size: 3rem; }
  .specialty-description { font-size: 1.1rem; }

  .amenities-section { padding: 0 80px 100px; }
  .amenity-card:nth-child(1) { height: 420px; width: 230px; }
  .amenity-card:nth-child(2) { height: 480px; width: 260px; }
  .amenity-card:nth-child(3) { height: 550px; width: 300px; }
  .amenity-card:nth-child(4) { height: 480px; width: 260px; }
  .amenity-card:nth-child(5) { height: 420px; width: 230px; }
  .amenity-card-label { font-size: 18px; padding: 32px 18px 18px; }

  .floorplan-container { max-width: 1700px; min-height: 70vh; }

  .internal-view-wrap { max-width: 1300px; }
  .internal-view-quote { font-size: 1.05rem; }

  .location-img-wrap { max-width: 1500px; }

  .amogh-faq-container { max-width: 1000px; }
  .amogh-faq-title { font-size: 2.5rem; }
  .amogh-faq-question-text { font-size: 1.15rem; }
  .amogh-faq-content { font-size: 1.05rem; }
  .amogh-faq-badge { width: 44px; height: 44px; min-width: 44px; font-size: 17px; }

  .enquiry-float { padding: 28px 20px; font-size: 16px; }

  .floating-icon { width: 64px; height: 64px; font-size: 28px; bottom: 32px; }
  .floating-whatsapp { left: 32px; }
  .floating-phone { right: 32px; }

  .site-footer { padding: 64px 40px; }
  .footer-brand { font-size: 1.7rem; }
  .footer-text { font-size: 1.05rem; }
}

/* ──────────────────────────────────────────────
   LAPTOP / SMALL DESKTOP (1025px - 1399px)
   ────────────────────────────────────────────── */
@media (max-width: 1399px) {
  .desc-container {
    gap: 40px;
    padding: 40px 32px;
  }
  .desc-project-name { font-size: 2.85rem; }

  .specialty-headline { font-size: 2.1rem; }
  .specialty-divider { width: 80px; margin-bottom: 20px; }
  .specialty-description { font-size: 0.92rem; line-height: 1.7; }
  .label-pill { padding: 6px 12px; font-size: 0.65rem; letter-spacing: 0.14em; }
}

/* ──────────────────────────────────────────────
   TABLET LANDSCAPE (769px - 1024px)
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-container { padding: 0 32px; }

  /* Hero Section Stacking */
  .hero-wrapper { display: flex; flex-direction: column; }
  .hero-overlay {
    position: relative;
    inset: auto;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    padding: 35px 40px;
    gap: 30px;
  }
  .hero-left {
    position: relative;
    top: auto; left: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .hero-right {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    flex-direction: row;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .price-medallion-wrap {
    align-self: center;
    width: 92px;
    height: 92px;
    margin-top: 10px;
    margin-right: 0;
  }
  .glass-panel {
    flex: 1;
    width: auto !important;
    min-width: 0 !important;
    padding: 20px !important;
    border-radius: var(--radius);
  }
  .glass-panel .glass-value { font-size: 17px !important; }
  .glass-panel .glass-label { font-size: 11px; }
  .glass-panel:hover { transform: translateY(-4px); }

  .hero-badges {
    position: relative;
    bottom: auto; left: auto; right: auto;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 15px 20px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  /* Description Stacking */
  .desc-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px 60px;
  }
  .desc-left { max-width: 680px; margin: 0 auto; }
  .desc-text-block { padding-left: 24px; }
  .desc-chips { padding-left: 28px; }
  .desc-cta-btn { margin-left: 28px; }
  .desc-project-name { font-size: 2.75rem; }

  /* Specialty Pentagon layout scaling */
  .specialty-headline { font-size: 1.8rem; }
  .specialty-description { font-size: 0.86rem; line-height: 1.6; }
  .label-pill { padding: 5px 10px; font-size: 0.6rem; }

  /* Amenities layout scaling */
  .amenities-cards-row {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Floor Plan Stacking */
  .floorplan-container { flex-direction: column; gap: 24px; min-height: auto; }
  .floorplan-divider { width: 60%; height: 1px; }
  .floorplan-img-wrap img { max-height: 50vh; }

  /* Internal View: switch from collage to stacked at tablet size */
  .internal-view-section {
    padding: 40px 24px 60px;
  }
  .internal-view-wrap {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
  }
  .internal-view-img {
    position: static;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1340 / 850;
    left: auto !important;
    top: auto !important;
    object-fit: contain !important;
    background-color: var(--white);
  }
  .internal-view-img-11,
  .internal-view-img-1,
  .internal-view-img-2,
  .internal-view-img-13 {
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    position: static !important;
  }
  .internal-view-quote {
    position: static;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    padding: 1.5rem;
    font-size: 1rem;
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
  }
  .internal-view-quote-1,
  .internal-view-quote-2 {
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    position: static !important;
  }
}

/* ──────────────────────────────────────────────
   TABLET PORTRAIT (768px)
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-container { padding: 0 24px; height: 64px; }
  .nav-logo { font-size: 1.25rem; }
  .nav-phone { padding: 8px 16px; font-size: 0.8rem; }

  .section-header { padding: 60px 16px 30px; }
  .section-title { font-size: 1.9rem; }

  /* Specialty Stacking */
  .specialty-banner {
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }
  .specialty-left {
    width: auto;
    max-width: 280px;
    height: auto;
    aspect-ratio: 711 / 1000;
    align-self: center;
    margin: 0 auto;
  }
  .specialty-right { width: 100%; padding: 36px 24px 80px; }
  .specialty-headline { font-size: 1.7rem; }

  /* Description Stacking */
  .desc-container { padding: 30px 24px 48px; gap: 36px; }
  .desc-left { height: auto; }
  .desc-project-name { font-size: 2.25rem; }
  .desc-body-text { font-size: 0.95rem; text-align: left; }

  /* Modal responsive spacing */
  .modal-content { padding: 32px 24px; }
  .modal-title { font-size: 1.5rem; }

  /* Amenities horizontal padding */
  .amenities-section { padding: 0 20px 60px; }
  .amenity-card { width: 160px !important; }
  .amenity-card:nth-child(1) { height: 190px !important; }
  .amenity-card:nth-child(2) { height: 220px !important; }
  .amenity-card:nth-child(3) { height: 250px !important; }
  .amenity-card:nth-child(4) { height: 220px !important; }
  .amenity-card:nth-child(5) { height: 190px !important; }
  .amenity-card-label { padding: 18px 10px 10px; }

  /* Internal View Stacking */
  .internal-view-section {
    padding: 40px 16px 50px;
  }
  .internal-view-wrap {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .internal-view-img {
    position: static;
    width: 100% !important;
    height: auto !important;         /* auto: height derived from aspect-ratio */
    aspect-ratio: 1340 / 850;        /* shows full floor plan, no cropping */
    left: auto !important;
    top: auto !important;
    object-fit: contain !important;  /* no cropping, full image visible */
    background-color: var(--white);  /* matches PNG background, no letterbox visible */
  }
  .internal-view-img-11,
  .internal-view-img-1,
  .internal-view-img-2,
  .internal-view-img-13 {
    width: 100% !important;
    height: auto !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
  }
  .internal-view-quote {
    height: auto !important;
    padding: 1.25rem;
    font-size: 0.95rem;
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
  }
  .internal-view-quote-1,
  .internal-view-quote-2 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
  }

  /* FAQ accordion adjustments */
  .amogh-faq-section { padding: 40px 16px 60px; }
  .amogh-faq-trigger { padding: 16px 16px; gap: 12px; }
  .amogh-faq-badge { width: 32px; height: 32px; min-width: 32px; font-size: 13px; }
  .amogh-faq-content { padding: 16px 16px 20px; }
}

/* ──────────────────────────────────────────────
   MOBILE & PHABLET (max-width: 767px)
   ────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero section typography centering */
  .hero-title { text-align: center; font-size: 32px; }
  .hero-subtitle { text-align: center; }
  .hero-cta { width: 100%; text-align: center; padding: 14px 20px; font-size: 14px; }
  .hero-highlights li { font-size: 14px; }

  .hero-right {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .glass-panel {
    width: 100% !important;
    border-left: none;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 4px 4px;
    text-align: center;
    align-items: center;
  }
  .glass-panel:hover { transform: translateY(-2px); }

  /* Hide circular medallion at mobile — replaced by photo-overlay badge below */
  .price-medallion-wrap {
    display: none;
  }

  /* Show and position the new circular copy over the bottom-left of the hero photo */
  .price-medallion-photo {
    display: block;
    position: absolute;
    bottom: 6%;
    left: 5%;
    width: 100px;
    height: 100px;
    z-index: 5;
    cursor: pointer;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
    animation: medallionGlow 2s ease-in-out infinite,
               medallionJiggle 2s ease-in-out infinite;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: start;
  }

  /* Fixed/floating icons responsive scaling */
  .enquiry-float { padding: 18px 12px; font-size: 11px; letter-spacing: 2px; }

  .floating-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 20px;
  }
  .floating-whatsapp { left: 16px; }
  .floating-phone { right: 16px; }
}

/* ──────────────────────────────────────────────
   MID-SIZE ANDROID PHONES (max-width: 600px)
   ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-container {
    padding: 0 14px;
  }
  .nav-logo {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
  }
  .nav-phone {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .desc-project-name {
    font-size: 2.1rem;
  }
  .specialty-headline {
    font-size: 1.6rem;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-highlights li {
    font-size: 13.5px;
  }
  .desc-body-text {
    font-size: 0.92rem;
  }
}

/* ──────────────────────────────────────────────
   SMALL MOBILE SCREEN (max-width: 480px)
   ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; height: 56px; }
  .nav-logo { font-size: 1.1rem; letter-spacing: 0.05em; }
  .nav-phone {
    padding: 7px 12px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .section-title { font-size: 1.6rem; }
  .desc-project-name { font-size: 2rem; }
  .specialty-headline { font-size: 1.45rem; }
  .specialty-left {
    max-width: 240px;
  }
  .internal-view-section { padding: 32px 12px 40px; }
  .internal-view-wrap { gap: 12px; }
  .internal-view-quote { padding: 1rem; font-size: 0.88rem; }
  .price-medallion-photo { width: 84px; height: 84px; }
}

/* ──────────────────────────────────────────────
   VERY SMALL PHONES (max-width: 360px)
   ────────────────────────────────────────────── */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 12px;
    height: 52px;
  }
  .nav-logo {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
  }
  .nav-phone {
    padding: 6px 10px;
    font-size: 0.7rem;
    gap: 3px;
    white-space: nowrap;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-cta {
    font-size: 13px;
    padding: 12px 16px;
  }
  .price-medallion-photo { width: 74px; height: 74px; }
  .section-title {
    font-size: 1.45rem;
  }
  .desc-project-name {
    font-size: 1.75rem;
  }
  .specialty-headline {
    font-size: 1.3rem;
  }
  .enquiry-float {
    padding: 16px 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .floating-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    bottom: 16px;
  }
  .floating-whatsapp {
    left: 12px;
  }
  .floating-phone {
    right: 12px;
  }
  .amogh-faq-trigger {
    padding: 14px 12px;
    gap: 10px;
  }
  .amogh-faq-question-text {
    font-size: 14px;
  }
  .specialty-left {
    max-width: 210px;
  }
}

/* ===== Amogh zoomable lightbox (afp-) ===== */
.afp-trigger{position:relative;cursor:pointer;overflow:hidden;}
.afp-trigger img{transition:transform .35s ease;}
.afp-trigger:hover img{transform:scale(1.02);}
.afp-zoomable{cursor:zoom-in;transition:filter .25s ease;}
.afp-zoomable:hover{filter:brightness(1.06);}
.afp-badge{position:absolute;top:12px;right:12px;width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.92);color:#222;display:flex;align-items:center;justify-content:center;
  font-size:18px;z-index:3;box-shadow:0 0 0 0 rgba(180,140,80,.55);animation:afpPulse 2.2s ease-in-out infinite;}
.afp-trigger:hover .afp-badge{animation:none;opacity:0;}
@keyframes afpPulse{0%{box-shadow:0 0 0 0 rgba(180,140,80,.55);}60%{box-shadow:0 0 0 10px rgba(180,140,80,0);}100%{box-shadow:0 0 0 0 rgba(180,140,80,0);}}
.afp-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:8px;background:rgba(0,0,0,0);transition:background .3s ease;pointer-events:none;}
.afp-trigger:hover .afp-overlay{background:rgba(0,0,0,.42);}
.afp-overlay-icon{width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.18);
  border:1.5px solid rgba(255,255,255,.7);display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:22px;opacity:0;transform:translateY(6px);transition:.3s ease;}
.afp-overlay-text{color:#fff;font-size:13px;font-weight:600;letter-spacing:.05em;opacity:0;transform:translateY(6px);transition:.3s ease;}
.afp-trigger:hover .afp-overlay-icon,.afp-trigger:hover .afp-overlay-text{opacity:1;transform:translateY(0);}

.afp-lightbox{display:none;position:fixed;inset:0;z-index:10000;background:rgba(0,0,0,.85);}
.afp-lightbox.afp-open{display:block;}
.afp-lb-stage{position:absolute;inset:0;overflow:hidden;cursor:grab;touch-action:none;}
.afp-lb-stage.afp-grabbing{cursor:grabbing;}
.afp-lb-img{position:absolute;top:50%;left:50%;max-width:90vw;max-height:90vh;
  transform:translate(-50%,-50%) scale(1);transform-origin:center center;
  transition:transform .12s ease-out;user-select:none;-webkit-user-drag:none;}
.afp-lb-btn{position:absolute;z-index:10001;width:42px;height:42px;border:none;border-radius:50%;
  background:rgba(0,0,0,.55);color:#fff;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;}
.afp-lb-btn:hover{background:rgba(0,0,0,.85);}
.afp-lb-close{top:16px;right:16px;}.afp-lb-zin{top:16px;left:16px;}.afp-lb-zout{top:68px;left:16px;}
.afp-lb-hint{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  font-size:12px;color:rgba(255,255,255,.6);white-space:nowrap;pointer-events:none;text-align:center;}
@media (max-width:600px){.afp-lb-hint{font-size:11px;width:90%;}}

.floorplan-img-wrap.afp-trigger,
.location-img-wrap.afp-trigger {
  position: relative !important;
  overflow: hidden;
  cursor: pointer;
}

/* ──────────────────────────────────────────────
   MOBILE FORM ON SOFT KEYBOARD (max-height: 700px)
   ────────────────────────────────────────────── */
@media (max-height: 700px) {
  .modal-content { padding-top: 28px; padding-bottom: 28px; }
  .modal-card {
    max-height: calc(100vh - 20px);
  }
  .modal-content {
    padding: 24px 20px;
  }
  .modal-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  .modal-subtitle-text {
    font-size: 0.82rem;
  }
  .enquiry-form {
    gap: 12px;
  }
  .form-group input, .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .modal-submit-btn {
    padding: 12px;
    margin-top: 6px;
    font-size: 0.88rem;
  }
  .modal-consent {
    font-size: 0.7rem;
    margin-top: 6px;
  }
}

/* ──────────────────────────────────────────────
   LANDSCAPE PHONES / SOFT KEYBOARD (max-height: 500px)
   ────────────────────────────────────────────── */
@media (max-height: 500px) {
  .modal-card {
    max-height: 95vh;
  }
  .modal-content {
    padding: 16px 18px;
  }
  .modal-header {
    margin-bottom: 12px;
  }
  .modal-title {
    font-size: 1.15rem;
  }
  .modal-subtitle-text {
    display: none;
  }
  .enquiry-form {
    gap: 8px;
  }
  .form-group input, .form-group select {
    padding: 8px 10px;
  }
  .modal-submit-btn {
    padding: 10px;
    margin-top: 4px;
  }
  .modal-consent {
    font-size: 0.65rem;
  }
}

/* ──────────────────────────────────────────────
   CLICK-TO-CONNECT MODAL
   ────────────────────────────────────────────── */

/* Card size override — smaller than the full enquiry modal */
.c2c-card {
  max-width: 420px;
  width: calc(100% - 40px);
  padding: 0;
  overflow: hidden;
}

/* Top gold accent bar */
.c2c-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  width: 100%;
}

/* Reuse modal-content spacing inside c2c states */
.c2c-state {
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.c2c-state-hidden {
  display: none !important;
}

/* Icon circle */
.c2c-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-lightest);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* Pulsing animation for loading icon */
.c2c-icon-pulse {
  animation: c2cPulse 1.2s ease-in-out infinite;
}
@keyframes c2cPulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(196,163,90,0.4); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(196,163,90,0); }
}

/* Success icon — green tint */
.c2c-icon-success {
  background: rgba(34,139,34,0.08);
  border-color: rgba(34,139,34,0.4);
  color: #228B22;
}

/* Error icon — red tint */
.c2c-icon-error {
  background: rgba(180,30,30,0.08);
  border-color: rgba(180,30,30,0.3);
  color: #b41e1e;
}

/* Subtitle text */
.c2c-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

/* Input hint */
.c2c-field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Override form-group width inside c2c (full width) */
.c2c-state .form-group {
  width: 100%;
  gap: 4px;
}

/* Submit button icon spacing */
.c2c-submit-btn i { margin-right: 6px; }

/* Virtual number privacy note */
.c2c-virtual-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  background: var(--gold-lightest);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.c2c-virtual-note i { color: var(--gold-dark); font-size: 13px; }

/* Done button */
.c2c-done-btn { width: 100%; }

/* Retry button */
.c2c-retry-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
  margin-top: -4px;
  letter-spacing: 0.04em;
}

/* Loading dots animation */
.c2c-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.c2c-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: c2cDot 1.2s ease-in-out infinite;
}
.c2c-dots span:nth-child(1) { animation-delay: 0s; }
.c2c-dots span:nth-child(2) { animation-delay: 0.2s; }
.c2c-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes c2cDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Close button position (shared with existing .modal-close-btn if present) */
.c2c-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.c2c-close:hover { color: var(--text-dark); }

/* Mobile adjustments */
@media (max-width: 480px) {
  .c2c-state { padding: 24px 20px 20px; gap: 12px; }
  .c2c-icon-wrap { width: 52px; height: 52px; font-size: 20px; }
  .c2c-card { width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .price-medallion-wrap,
  .price-medallion-photo {
    animation: none !important;
  }
}



