/* -------------------------------------------------------------------------- */
/* AMBIKA FLORENCE PARK - CUSTOM LOGO & VENETIAN RENAISSANCE STYLESHEET        */
/* Palette: Warm Venetian Burgundy (#6B1D28), Antique Gold (#D1A756), Teal     */
/* -------------------------------------------------------------------------- */

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

:root {
  --bg-dark: #1A1415;
  --bg-dark-surface: #241B1D;
  --bg-light: #F9F7F4;
  --bg-card: #FFFFFF;

  /* Italian Venetian Renaissance Burgundy & Antique Gold */
  --burgundy-primary: #6B1D28;
  --burgundy-light: #8B2B39;
  --burgundy-dark: #4A121A;
  --burgundy-soft-bg: rgba(107, 29, 40, 0.08);

  --gold-primary: #D1A756;
  --gold-light: #F5E2B3;
  --gold-dark: #A37F33;
  --gold-gradient: linear-gradient(135deg, #D1A756 0%, #F5E2B3 50%, #B08B38 100%);
  --gold-glow: rgba(209, 167, 86, 0.35);

  --whatsapp-color: #25D366;

  --text-dark: #241B1D;
  --text-body: #54494B;
  --text-muted: #948A8C;

  --border-light: #EBE5DF;
  --border-gold: rgba(209, 167, 86, 0.38);

  --font-serif: 'Cinzel', Trajan Pro, Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(26, 20, 21, 0.04);
  --shadow-md: 0 12px 32px rgba(26, 20, 21, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 20, 21, 0.14);
  --shadow-gold: 0 10px 30px rgba(209, 167, 86, 0.35);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Typography Utilities */
.serif {
  font-family: var(--font-serif);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-burgundy {
  color: var(--burgundy-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--burgundy-soft-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Header & Announcement Bar */
.top-bar {
  background: var(--bg-dark);
  color: #D1C5C7;
  padding: 10px 0;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(209, 167, 86, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: var(--gold-primary);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: all 0.35s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Official Logo Styling */
.site-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.685rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--burgundy-primary);
  display: block;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy-primary);
}

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

/* NAVBAR CTA BUTTON */
.nav-cta-btn {
  padding: 12px 26px;
  background: var(--gold-gradient);
  color: #1A1415;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(209, 167, 86, 0.35);
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  background: var(--burgundy-primary);
  color: #FFF;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 29, 40, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO HOME SECTION WITH VENETIAN BURGUNDY OVERLAY */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 90px 0 110px;
  background: #1A1415 url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
  color: #FFF;
  overflow: hidden;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 21, 0.93) 0%, rgba(74, 18, 26, 0.88) 60%, rgba(26, 20, 21, 0.95) 100%);
  z-index: 1;
}

/* Animated Gold Ambient Backdrop Glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(209, 167, 86, 0.2) 0%, transparent 60%);
  z-index: 2;
  animation: pulseBg 6s ease-in-out infinite alternate;
}

@keyframes pulseBg {
  0% { opacity: 0.4; }
  100% { opacity: 0.8; }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(209, 167, 86, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease out;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.9s ease out;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: #E6DAD9;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 1s ease out;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 1.1s ease out;
}

.stat-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(209, 167, 86, 0.3);
  padding: 20px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: rgba(107, 29, 40, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
}

.stat-box p {
  font-size: 0.75rem;
  color: #D1C5C7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease out;
}

.btn-gold {
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: #1A1415;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(209, 167, 86, 0.4);
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--burgundy-primary);
  color: #FFF;
  border-color: var(--gold-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(107, 29, 40, 0.45);
}

.btn-glass {
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-glass:hover {
  background: #25D366;
  color: #FFF;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* HERO FORM CARD FLOATING ANIMATION */
.hero-card-form {
  background: rgba(36, 27, 29, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-gold);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  animation: floatSlow 6s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-card-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 6px;
  text-align: center;
}

.hero-card-form p {
  font-size: 0.875rem;
  color: #D1C5C7;
  text-align: center;
  margin-bottom: 28px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.775rem;
  color: #E6DAD9;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 20, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 14px rgba(209, 167, 86, 0.35);
}

.btn-submit-gold {
  width: 100%;
  padding: 16px;
  background: var(--burgundy-primary);
  color: #FFF;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit-gold:hover {
  background: var(--gold-gradient);
  color: #1A1415;
  box-shadow: var(--shadow-gold);
  transform: scale(1.01);
}

/* SECTION BASE STYLING & ANIMATIONS */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* SCROLL REVEAL ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* OVERVIEW SHOWCASE */
.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.media-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-frame:hover img {
  transform: scale(1.06);
}

.media-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(26, 20, 21, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-primary);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.media-floating-badge span {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.media-floating-badge p {
  font-size: 0.75rem;
  color: #D1C5C7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-box {
  background: #FFF;
  border: 1px solid var(--border-light);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--burgundy-primary);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--burgundy-soft-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--burgundy-primary);
  color: #FFF;
}

.feature-box h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* GALLERY GRID SHOWCASE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 21, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* FLOOR PLANS SECTION */
.floorplan-switcher-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.plan-tab-btn {
  padding: 12px 28px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.plan-tab-btn.active, .plan-tab-btn:hover {
  background: var(--burgundy-primary);
  color: #FFF;
  border-color: var(--burgundy-primary);
  box-shadow: 0 8px 20px rgba(107, 29, 40, 0.3);
}

.plan-display-box {
  background: #FFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.plan-info-side h3 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.plan-price-highlight {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--burgundy-primary);
  margin-bottom: 24px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.spec-tile {
  background: #F9F7F4;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--burgundy-primary);
}

.spec-tile span {
  display: block;
  font-size: 0.725rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.spec-tile strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.plan-image-frame {
  background: #F9F7F4;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
}

.plan-image-frame img {
  border-radius: var(--radius-sm);
  max-height: 380px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.plan-image-frame:hover img {
  transform: scale(1.03);
}

/* AMENITIES SHOWCASE */
.amenities-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.amenity-box {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.amenity-box:hover {
  transform: translateY(-8px);
  border-color: var(--burgundy-primary);
  box-shadow: var(--shadow-lg);
}

.amenity-icon-box {
  width: 56px;
  height: 56px;
  background: var(--burgundy-soft-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-primary);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.amenity-box:hover .amenity-icon-box {
  background: var(--burgundy-primary);
  color: #FFF;
  transform: rotateY(180deg);
}

.amenity-box h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.amenity-box p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* LOCATION ADVANTAGE */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.distance-list-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.distance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.distance-row:hover {
  transform: translateX(6px);
  border-color: var(--burgundy-primary);
}

.distance-info-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.distance-info-left i {
  color: var(--burgundy-primary);
  font-size: 1.2rem;
}

.distance-info-left span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.distance-badge-time {
  padding: 6px 16px;
  background: var(--burgundy-soft-bg);
  color: var(--burgundy-primary);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 800;
}

.map-card-box {
  background: #FFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.map-view-frame {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-md);
  background: #1A1415 url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin-overlay {
  background: rgba(26, 20, 21, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-primary);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  color: #FFF;
  max-width: 85%;
}

.map-pin-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.map-pin-overlay p {
  font-size: 0.875rem;
  color: #D1C5C7;
}

/* EMI CALCULATOR */
.calculator-card-layout {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: var(--shadow-md);
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.range-input {
  width: 100%;
  accent-color: var(--burgundy-primary);
  height: 6px;
  background: #EBE5DF;
  border-radius: 4px;
}

.calculator-result-box {
  background: #F9F7F4;
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border-light);
}

.emi-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--burgundy-primary);
  margin: 10px 0;
}

/* FAQ ACCORDION */
.faq-accordion-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-accordion-item {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}

.faq-accordion-header {
  padding: 22px 28px;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-accordion-header i {
  color: var(--burgundy-primary);
  transition: transform 0.35s ease;
}

.faq-accordion-item.active .faq-accordion-header i {
  transform: rotate(180deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 220px;
  padding: 0 28px 24px 28px;
}

/* FOOTER SECTION & SOCIAL MEDIA ICONS */
.footer-section {
  background: var(--bg-dark);
  color: #D1C5C7;
  padding: 80px 0 36px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-gold);
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFF;
  margin-bottom: 24px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-nav-links a {
  color: #D1C5C7;
  transition: color 0.25s ease;
}

.footer-nav-links a:hover {
  color: var(--gold-light);
}

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

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-row i {
  color: var(--gold-primary);
  margin-top: 4px;
}

/* SOCIAL MEDIA BUTTONS STYLING */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(209, 167, 86, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.35s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #1A1415;
  border-color: var(--gold-primary);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(209, 167, 86, 0.4);
}

.social-icon-btn.fb:hover { background: #1877F2; color: #FFF; border-color: #1877F2; box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4); }
.social-icon-btn.insta:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #FFF; border-color: #dc2743; box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4); }
.social-icon-btn.linkedin:hover { background: #0A66C2; color: #FFF; border-color: #0A66C2; box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4); }
.social-icon-btn.youtube:hover { background: #FF0000; color: #FFF; border-color: #FF0000; box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4); }

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.825rem;
  color: #8C8082;
}

/* FLOATING CONTACT WIDGET */
.floating-widget-bar {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.widget-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.widget-btn:hover {
  transform: scale(1.12);
}

.widget-btn.whatsapp {
  background: var(--whatsapp-color);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.widget-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.3);
  animation: pulseRing 2s infinite;
}

.widget-btn.call {
  background: var(--gold-gradient);
  color: #1A1415;
  box-shadow: 0 10px 30px rgba(209, 167, 86, 0.4);
}

.widget-btn.call::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  background: rgba(209, 167, 86, 0.35);
  animation: pulseRing 2s infinite 0.5s;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.widget-tooltip {
  position: absolute;
  right: 74px;
  background: var(--bg-dark);
  color: #FFF;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--gold-primary);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  transform: translateX(10px);
}

.widget-btn:hover .widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* MODAL BACKDROP */
.modal-backdrop-wrap {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26, 20, 21, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop-wrap.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content-card {
  background: #FFF;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

.modal-backdrop-wrap.active .modal-content-card {
  transform: scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close-icon:hover {
  color: var(--text-dark);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid, .overview-layout, .plan-display-box, .location-wrapper, .calculator-card-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFF;
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-cards-grid, .specs-grid, .gallery-grid, .footer-grid-layout {
    grid-template-columns: 1fr;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
  .hero {
    background-attachment: scroll;
  }
}
