/* ============================================================
   PARAS MANOR — Luxury Residences
   Premium Single-Page Website
   Color Palette: Forest Green + Antique Gold
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-deep: #3D5A3D;
  --green-primary: #4A6B4A;
  --green-light: #5A7D5A;
  --green-muted: #6B8E6B;
  --gold-primary: #C9A96E;
  --gold-light: #D4BA85;
  --gold-dark: #B8963E;
  --gold-accent: #E0CFA0;
  --bronze: #A07D3E;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --cream: #F0EDE4;
  --charcoal: #2A2A2A;
  --dark: #1A1A1A;
  --text-body: #E8E4DC;
  --text-muted: #B0A999;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

::selection {
  background: var(--gold-primary);
  color: var(--dark);
}

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

a:hover {
  color: var(--gold-light);
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-primary);
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  height: 100%;
  width: 50%;
  background: var(--gold-primary);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* ---------- Navigation ---------- */
.navbar-manor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar-manor.scrolled {
  background: rgba(61, 90, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-primary);
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 300;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

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

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

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

.nav-cta {
  font-size: 0.75rem !important;
  padding: 10px 25px !important;
  border: 1px solid var(--gold-primary) !important;
  color: var(--gold-primary) !important;
  letter-spacing: 2px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-primary) !important;
  color: var(--dark) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--gold-primary);
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 90, 61, 0.6) 0%,
    rgba(26, 26, 26, 0.4) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease 0.8s forwards;
}

.hero-title span {
  color: var(--gold-primary);
  display: block;
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 1.1s forwards;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 1.3s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 1.5s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 110, 0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--gold-primary);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block;
  padding: 16px 45px;
  background: var(--gold-primary);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 16px 45px;
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---------- Section Styles ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-green {
  background: var(--green-deep);
}

.section-dark {
  background: var(--dark);
}

.section-charcoal {
  background: var(--charcoal);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--gold-primary);
  font-style: italic;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-primary);
  margin: 0 auto 25px;
}

.section-desc {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ---------- Gold Divider Strip ---------- */
.gold-strip {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* ---------- About / Legacy Section ---------- */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legacy-image {
  position: relative;
  overflow: hidden;
}

.legacy-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.legacy-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-primary);
}

.legacy-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.3;
}

.legacy-text h3 span {
  color: var(--gold-primary);
  font-style: italic;
}

.legacy-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Highlights / Key Features ---------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.highlight-card {
  background: rgba(74, 107, 74, 0.3);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  background: rgba(74, 107, 74, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Parallax Image Sections ---------- */
.parallax-section {
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 90, 61, 0.85) 0%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 40px;
}

.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.parallax-content p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

/* ---------- Location Section ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.location-map img {
  width: 100%;
  transition: transform 0.6s ease;
}

.location-map:hover img {
  transform: scale(1.02);
}

.connectivity-group {
  margin-bottom: 40px;
}

.connectivity-group h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.connectivity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.connectivity-item:hover {
  padding-left: 10px;
  border-bottom-color: rgba(201, 169, 110, 0.2);
}

.connectivity-item .name {
  font-size: 0.9rem;
  color: var(--text-body);
}

.connectivity-item .time {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Amenities Section ---------- */
.amenities-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.amenity-filter {
  padding: 10px 30px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.amenity-filter.active,
.amenity-filter:hover {
  color: var(--dark);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

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

.amenity-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  group: true;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.amenity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.9) 100%);
  transition: var(--transition);
}

.amenity-card:hover .amenity-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(61, 90, 61, 0.9) 100%);
}

.amenity-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  transform: translateY(10px);
  transition: var(--transition);
}

.amenity-card:hover .amenity-card-content {
  transform: translateY(0);
}

.amenity-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 5px;
}

.amenity-card-content p {
  font-size: 0.8rem;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenity-card:hover .amenity-card-content p {
  opacity: 1;
}

/* ---------- Gallery Section ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 605px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 90, 61, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(61, 90, 61, 0.5);
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--gold-primary);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Specifications ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.spec-card {
  background: rgba(74, 107, 74, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 35px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
}

.spec-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.spec-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 5px;
}

.spec-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Floor Plan Section ---------- */
.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.floorplan-content {
  position: relative;
}

.floorplan-image {
  text-align: center;
  background: rgba(74, 107, 74, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 30px;
}

.floorplan-image img {
  max-height: 550px;
  width: auto;
}

.floorplan-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.fp-detail {
  text-align: center;
  padding: 25px;
  background: rgba(74, 107, 74, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.fp-detail .value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.fp-detail .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Design Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background: rgba(74, 107, 74, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 45px 35px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.team-role {
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-stat {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-primary);
}

/* ---------- Contact / Enquiry Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(74, 107, 74, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: var(--transition);
}

.contact-detail:hover {
  border-color: var(--gold-primary);
}

.contact-detail i {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-form {
  background: rgba(74, 107, 74, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 50px;
}

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

.form-group label {
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Banks Section ---------- */
.banks-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.6;
  transition: var(--transition);
}

.banks-row:hover {
  opacity: 1;
}

.bank-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-deep);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

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

.footer-brand .nav-brand-name {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 15px;
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-rera {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold-primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ---------- Counter Animation ---------- */
.counter {
  display: inline-block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
  .legacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { height: 400px; grid-row: span 1; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplan-details { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .section-title { font-size: 2rem; }
  .section-header { margin-bottom: 50px; }
  
  .nav-links { 
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 90, 61, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
  }
  
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  
  .highlights-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item, .gallery-item.tall { height: 250px; }
  .specs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .floorplan-details { grid-template-columns: 1fr 1fr; }
  .legacy-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .stat-number { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .parallax-section { background-attachment: scroll; height: 400px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .banks-row { gap: 30px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .nav-brand-name { font-size: 1.2rem; letter-spacing: 5px; }
  .hero-subtitle { font-size: 1.1rem; }
  .legacy-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
