/* 
   Bollywood Green City Mohali (bgcm.com)
   Design System & Luxury Real Estate Stylesheet
*/

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

:root {
  /* Primary Emerald Luxury Palette */
  --bg-emerald-dark: #092019;
  --bg-emerald-deep: #0D2D23;
  --bg-emerald-medium: #144232;
  --bg-emerald-light: #1E5C47;
  
  /* Champagne & Metallic Gold Accents */
  --gold-primary: #C5A059;
  --gold-light: #E2C78A;
  --gold-hover: #D8B46B;
  --gold-dark: #9A7733;
  --gold-glow: rgba(197, 160, 89, 0.2);
  --gold-gradient: linear-gradient(135deg, #D8B46B 0%, #C5A059 50%, #9A7733 100%);
  --gold-text-gradient: linear-gradient(135deg, #F3E5C8 0%, #C5A059 50%, #E2C78A 100%);

  /* Neutrals & Backgrounds */
  --canvas-alabaster: #F9F8F3;
  --canvas-card: #FFFFFF;
  --canvas-dark-card: #103328;
  --text-dark: #1A2420;
  --text-muted: #5A6962;
  --text-light: #E2EAF0;
  --text-light-muted: #A3B8B0;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* RESET & BASIC SETUP */
*, *::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(--canvas-alabaster);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* TYPOGRAPHY UTILITIES */
.serif-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--bg-emerald-dark);
}

.dark-section .section-heading {
  color: #FFFFFF;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.dark-section .section-description {
  color: var(--text-light-muted);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-emerald-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(197, 160, 89, 0.4);
  background: linear-gradient(135deg, #E2C78A 0%, #D8B46B 100%);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--bg-emerald-dark);
  transform: translateY(-3px);
}

.btn-emerald {
  background: var(--bg-emerald-medium);
  color: #FFFFFF;
}

.btn-emerald:hover {
  background: var(--bg-emerald-light);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TOP CONTACT HEADER BAR */
.top-bar {
  background-color: var(--bg-emerald-dark);
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.top-info-item svg {
  color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link {
  color: var(--gold-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-link:hover {
  color: #FFFFFF;
}

/* NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 45, 35, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

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

.brand-symbol {
  width: 45px;
  height: 45px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--bg-emerald-dark);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.nav-link {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

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

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(to right, rgba(9, 32, 25, 0.88) 0%, rgba(13, 45, 35, 0.65) 100%), url('../assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  padding: 80px 0;
}

.hero-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--canvas-alabaster) 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* HERO INQUIRY CARD */
.hero-inquiry-card {
  background: rgba(16, 51, 40, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-control option {
  background-color: var(--bg-emerald-deep);
  color: #FFFFFF;
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-primary {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--bg-emerald-dark);
  border: 2px solid var(--gold-primary);
  color: #FFFFFF;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-year {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.feature-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--bg-emerald-dark);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold-glow);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* PROPERTY CONFIGURATIONS / FLOOR PLANS */
.property-section {
  padding: 100px 0;
  background: var(--bg-emerald-dark);
  color: #FFFFFF;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 28px;
  background: rgba(20, 66, 50, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 50px;
  color: var(--text-light-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-gradient);
  color: var(--bg-emerald-dark);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.plan-card {
  background: var(--canvas-dark-card);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.plan-image-wrap {
  position: relative;
  background: #061813;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.plan-image-wrap img {
  border-radius: var(--radius-md);
  max-height: 420px;
  object-fit: cover;
}

.plan-details {
  padding: 48px 48px 48px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.plan-price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

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

.spec-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.15);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
}

/* AMENITIES SECTION */
.amenities-section {
  padding: 100px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.amenity-card {
  background: var(--canvas-card);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

.amenity-icon {
  width: 64px;
  height: 64px;
  background: rgba(13, 45, 35, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-emerald-medium);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--bg-emerald-medium);
  color: var(--gold-primary);
}

.amenity-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--bg-emerald-dark);
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* EMI CALCULATOR SECTION */
.calculator-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-emerald-dark) 0%, var(--bg-emerald-deep) 100%);
  color: #FFFFFF;
}

.calc-box {
  background: var(--canvas-dark-card);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  box-shadow: var(--shadow-lg);
}

.calc-slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 12px;
}

.slider-value {
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.calc-result-card {
  background: rgba(13, 45, 35, 0.9);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.result-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

.emi-amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 16px 0;
}

.breakdown-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.breakdown-row span:last-child {
  color: #FFFFFF;
  font-weight: 600;
}

/* LOCATION SECTION */
.location-section {
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.matrix-item {
  background: var(--canvas-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.matrix-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

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

.place-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  color: var(--gold-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.place-name {
  font-weight: 700;
  color: var(--bg-emerald-dark);
}

.place-dist {
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-emerald-dark);
  color: #FFFFFF;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 32, 25, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-cat {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 0;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact-info-panel {
  background: var(--bg-emerald-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.info-details p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.contact-form-panel {
  background: var(--canvas-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* FLOATING ACTION BUTTONS (BOTTOM RIGHT) */
.floating-actions-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.floating-btn-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.floating-btn-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.floating-btn-call {
  background: var(--gold-gradient);
  color: var(--bg-emerald-dark);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.floating-btn-call:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.7);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-emerald-dark);
  color: #FFFFFF;
  border: 1px solid var(--gold-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-anim {
  animation: pulseGlow 2.2s infinite;
}

/* FOOTER */
.footer {
  background: #051410;
  color: var(--text-light-muted);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

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

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

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* MODAL POPUPS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 16, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-emerald-dark);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 550px;
  position: relative;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .plan-card, .calc-box, .location-grid, .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions-wrap {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
