/* ==============================
   AURUM ESTATES — Premium Luxury CSS
   ============================== */

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

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

:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-light: #d4b44a;
  --gold-dark: #a8861e;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #2a2a2a;
  --gray-800: #1a1a1a;
  --gray-900: #111111;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* --- Page Fade In --- */
.page-wrapper { opacity: 0; transition: opacity 0.8s ease; }
.page-wrapper.loaded { opacity: 1; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--black); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow { max-width: 900px; }
.container-wide { max-width: 1440px; }

/* --- Sections --- */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--black); color: var(--gray-300); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-gray { background: var(--gray-100); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.3);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

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

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Nav --- */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-slow);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition);
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav a:nth-child(7) { transition-delay: 0.4s; }

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

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  width: 30px; height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-search {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
}

.hero-search select, .hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  min-width: 0;
}

.hero-search select option { color: var(--black); }

.hero-search .divider {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.15);
}

.hero-search .btn { flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(11,11,11,0.6), rgba(11,11,11,0.8));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* --- Property Cards --- */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.property-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.property-card:hover .property-card-img img {
  transform: scale(1.08);
}

.property-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}

.property-card-fav {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.property-card-fav:hover { background: var(--gold); color: var(--white); }

.property-card-body { padding: 1.5rem; }

.property-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.property-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.property-card-location {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-card-meta {
  display: flex;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.property-card-meta span {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* --- Property Grid --- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Filters --- */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 160px;
}

.filter-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.filter-group select, .filter-group input[type="range"] {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.filter-group select:focus { border-color: var(--gold); }

.filter-group input[type="range"] {
  padding: 0;
  border: none;
  background-image: none;
  accent-color: var(--gold);
  height: 42px;
}

.price-display {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.3rem;
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sort-bar p { color: var(--gray-400); font-size: 0.9rem; margin: 0; }

.sort-bar select {
  padding: 0.6rem 2rem 0.6rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--black);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination button:hover, .pagination button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* --- Gallery Slider --- */
.gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.gallery-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  border: none;
}

.gallery-btn:hover { background: var(--gold); color: var(--white); }
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.back-to-listings {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  margin-left: auto;
  transition: var(--transition);
  line-height: 1;
}

.back-to-listings:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.gallery-dots {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.gallery-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.gallery-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* --- Property Detail --- */
.property-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.property-info h2 { margin-bottom: 0.5rem; }

.property-location {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.property-price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.property-description {
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.property-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.highlight-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-text span { display: block; font-size: 0.75rem; color: var(--gray-400); }
.highlight-text strong { color: var(--black); font-size: 0.95rem; }

/* --- Details Table --- */
.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table tr { border-bottom: 1px solid var(--gray-200); }

.details-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.details-table td:first-child {
  color: var(--gray-400);
  font-weight: 500;
  width: 40%;
}

.details-table td:last-child {
  color: var(--black);
  font-weight: 600;
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.amenity-item .icon { color: var(--gold); }

/* --- EMI Calculator --- */
.emi-calculator {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.emi-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.emi-field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}

.emi-field input:focus { border-color: var(--gold); }

.emi-result {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
}

.emi-result .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.emi-result .label { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.3rem; }

/* --- Sticky Contact Bar --- */
.sticky-contact {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--black);
  padding: 0.8rem 0;
  z-index: 900;
  transform: translateY(100%);
  transition: var(--transition);
}

.sticky-contact.visible { transform: translateY(0); }

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

.sticky-contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-contact-info .price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.sticky-contact-info .name {
  color: var(--white);
  font-size: 0.9rem;
}

.sticky-contact-buttons {
  display: flex;
  gap: 0.8rem;
}

/* --- Testimonials --- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 33.333%;
  padding: 0 1rem;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name { font-weight: 600; color: var(--black); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonials-nav button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-nav button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* --- Services Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  margin: 0 auto 1.5rem;
}

.service-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* --- Location Cards --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

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

.location-card-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(11,11,11,0.9));
  color: var(--white);
}

.location-card-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.3rem; }
.location-card-overlay p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* --- Logos Section --- */
.logos-section {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.logo-item:hover { color: var(--gold); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201,162,39,0.08) 0%, transparent 60%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: var(--gray-400); margin-bottom: 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card { text-align: center; }

.team-card-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover .team-card-img { border-color: var(--gold); }

.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card h4 { margin-bottom: 0.3rem; }
.team-card p { font-size: 0.85rem; color: var(--gold); margin: 0; }

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  display: block;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}

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

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

.contact-info-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

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

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input:focus { border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a { color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 800;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11,11,11,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover { color: var(--black); }

.modal h3 { margin-bottom: 0.5rem; }
.modal p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* --- Success Toast --- */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  z-index: 3000;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast .check { color: #4CAF50; font-size: 1.2rem; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Floor Plan --- */
.floor-plan-img {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.video-play-btn:hover { transform: scale(1.1); }

/* --- Landmarks --- */
.landmarks-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.landmark-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.landmark-item .name { color: var(--gray-600); }
.landmark-item .distance { color: var(--gold); font-weight: 600; font-size: 0.85rem; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.8rem; }
.legal-content p { color: var(--gray-500); line-height: 1.9; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; color: var(--gray-500); margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; line-height: 1.7; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .property-overview { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 50%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 600px; }
  .hero-content { padding-top: 4rem; }
  .hero-search { flex-direction: column; }
  .hero-search .divider { width: 100%; height: 1px; }

  .property-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .filters-bar { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .emi-form { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .gallery { height: 300px; }

  .sticky-contact .container { flex-direction: column; gap: 0.8rem; }
  .sticky-contact-buttons { width: 100%; }
  .sticky-contact-buttons .btn { flex: 1; font-size: 0.7rem; padding: 0.6rem 0.8rem; }

  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .logos-grid { justify-content: center; gap: 2rem; }
  .logo-item { font-size: 1rem; }

  .landmarks-list { grid-template-columns: 1fr; }
  .property-highlights { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  h1 { font-size: 2rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-item .number { font-size: 2rem; }
  .whatsapp-float { bottom: 5rem; }
}
