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

:root {
  --primary: #1a2a4a;
  --primary-light: #2c3e6b;
  --primary-dark: #0f1a30;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dark: #b8942e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f0eee9;
  --medium-gray: #a8a4a0;
  --dark-gray: #4a4642;
  --text: #2d2a26;
  --text-light: #6b6763;
  --shadow: 0 4px 30px rgba(26, 42, 74, 0.1);
  --shadow-lg: 0 10px 50px rgba(26, 42, 74, 0.15);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Utility Classes */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

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

.section-title .label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 42, 74, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.logo-text span { color: var(--gold); }

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

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.nav .btn { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: 0.35;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 48, 0.92) 0%, rgba(26, 42, 74, 0.7) 50%, rgba(15, 26, 48, 0.85) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Search Bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-right: 1px solid var(--light-gray);
}

.search-group:last-of-type { border-right: none; }

.search-group svg { flex-shrink: 0; }

.search-group select,
.search-group input {
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
}

.search-group select { cursor: pointer; }

.search-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medium-gray);
  display: block;
  margin-bottom: 2px;
}

.search-btn {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

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

.hero-stat .number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ===== FEATURED PROPERTIES SECTION ===== */
.featured { background: var(--white); }

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

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

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

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

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

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

.property-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.property-tag.featured-tag { background: var(--primary); color: var(--white); }

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

.property-wishlist:hover { background: var(--white); transform: scale(1.1); }

.property-body { padding: 24px; }

.property-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.property-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.property-title:hover { color: var(--gold); }

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.property-features {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--dark-gray);
}

/* ===== CATEGORIES SECTION ===== */
.categories { background: var(--off-white); }

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

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid transparent;
}

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

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.category-card:hover .category-icon { background: var(--gold); }

.category-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about { background: var(--white); }

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--primary);
  padding: 24px 32px;
  border-radius: 16px;
  text-align: center;
}

.about-image .experience-badge .num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-image .experience-badge .txt {
  font-size: 13px;
  font-weight: 500;
}

.about-content .label { font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.about-feature svg { flex-shrink: 0; }

/* ===== WHY CHOOSE US ===== */
.why-choose { background: var(--primary); position: relative; overflow: hidden; }

.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
}

.why-choose .section-title h2,
.why-choose .section-title p { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-card h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== AGENTS SECTION ===== */
.agents { background: var(--off-white); }

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

.agent-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.agent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.agent-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.agent-info { padding: 20px; }

.agent-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.agent-info .role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.agent-info p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.agent-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.agent-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.agent-socials a:hover { background: var(--gold); color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
  position: relative;
}

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

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.testimonial-author h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== PARTNER BUILDERS ===== */
.partners { background: var(--off-white); }

.partner-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-item {
  padding: 24px 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.partner-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== FAQS ===== */
.faqs { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== BLOG SECTION ===== */
.blog { background: var(--off-white); }

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-body { padding: 24px; }

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 10px;
}

.blog-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--medium-gray);
}

/* ===== MARKET INSIGHTS ===== */
.insights { background: var(--primary); }

.insights .section-title h2,
.insights .section-title p { color: var(--white); }

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

.insight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

.insight-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.insight-card .trend {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  display: block;
  margin-bottom: 6px;
}

.insight-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.insight-card .change {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4caf50;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--primary-light); }

/* ===== CONTACT SECTION ===== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

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

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow);
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

/* ===== WHATSAPP CHAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

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

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--medium-gray);
  transition: var(--transition);
  line-height: 1;
}

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

.modal h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ===== EMI CALCULATOR (Property Detail Page) ===== */
.emi-calculator {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 30px;
}

.emi-calculator h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}

.emi-slider { margin-bottom: 20px; }

.emi-slider label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.emi-slider input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: var(--light-gray);
  border-radius: 2px;
  outline: none;
}

.emi-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}

.emi-result {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-top: 20px;
}

.emi-result .amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.emi-result .label {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 0 80px;
  background: var(--primary-dark);
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.page-header .breadcrumb {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== SUCCESS STORIES ===== */
.success-stories { background: var(--white); }

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

.story-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.story-card:hover { box-shadow: var(--shadow); }

.story-card .quote {
  font-size: 40px;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 12px;
}

.story-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.story-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-card .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.story-card .author h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.story-card .author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== MORTGAGE SECTION ===== */
.mortgage-info { background: var(--off-white); }

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

.mortgage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mortgage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mortgage-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.mortgage-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.mortgage-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow);
}

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

.back-to-top:hover { background: var(--gold); color: var(--primary); transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mortgage-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero h1 { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .search-bar { flex-direction: column; }
  .search-group { border-right: none; border-bottom: 1px solid var(--light-gray); padding: 12px 16px; }
  .search-btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 300px; }
  .about-image .experience-badge { right: 0; bottom: 0; }
  .about-features { grid-template-columns: 1fr; }

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

  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section-title h2 { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mortgage-grid { grid-template-columns: 1fr; }

  .page-header h1 { font-size: 32px; }

  .newsletter-form { flex-direction: column; }
  .newsletter h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .search-group { padding: 10px 14px; }
}
