/*
Theme Name:  LuxGurgaon
Theme URI:   https://luxgurgaon.com
Author:      Rahul Tripathi
Author URI:  https://luxgurgaon.com/about/rahul-tripathi/
Description: A premium luxury real estate theme for LuxGurgaon — independent luxury property broker in Gurgaon. Features property listings, location pages, NRI buyer section and market reports.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxgurgaon
Tags:        real-estate, luxury, one-column, custom-menu, featured-images, translation-ready
*/

/* ─────────────────────────────────────────────
   TABLE OF CONTENTS
   1. Reset & Root Variables
   2. Base Typography
   3. Utilities
   4. Buttons
   5. Top Bar
   6. Navigation
   7. Hero Section
   8. Property Search Bar
   9. Property Type Strip
   10. Featured Properties
   11. Property Cards
   12. Stats Bar
   13. Why Choose Rahul
   14. Locations Section
   15. Testimonials
   16. Blog / Resources
   17. CTA Section
   18. Footer
   19. WhatsApp Float
   20. WordPress Core Overrides
   21. Responsive
───────────────────────────────────────────── */

/* 1. Reset & Root Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1A3C5E;
  --primary-dark: #122A45;
  --accent:       #C9922A;
  --accent-light: #F5A623;
  --white:        #FFFFFF;
  --off-white:    #F8F7F4;
  --light-grey:   #F0EEE9;
  --mid-grey:     #E5E2DC;
  --text:         #1A1A2E;
  --text-2:       #4A4A68;
  --text-3:       #8A8A9A;
  --border:       #E8E5DF;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --radius:       4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* 2. Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--primary);
}

/* 3. Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; color: var(--primary);
  line-height: 1.25; margin-bottom: 16px;
}

.section-sub {
  color: var(--text-2); font-size: 15px;
  max-width: 520px; line-height: 1.8;
}

.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}

/* 4. Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  border-radius: var(--radius); text-decoration: none;
  transition: all 0.25s ease; cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-primary  { background: var(--accent); color: var(--white); }
.btn-primary:hover  { background: #b07d20; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,146,42,0.3); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover  { background: var(--primary); color: var(--white); }
.btn-outline-white  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* 5. Top Bar */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 12px; color: rgba(255,255,255,0.75);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left  { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-item  { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* 6. Navigation */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--primary); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.site-logo span { color: var(--accent); }

/* WordPress Nav Menu */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; list-style: none; gap: 4px; margin: 0; padding: 0; }
.main-nav ul li a {
  display: block; padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a { color: var(--primary); background: var(--off-white); }
.main-nav ul li.current-menu-item > a { color: var(--accent); font-weight: 600; }

/* Dropdown */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 200px;
  box-shadow: var(--shadow-hover);
  border-radius: 4px; border-top: 3px solid var(--accent);
  flex-direction: column; gap: 0; z-index: 200;
}
.main-nav ul li:hover > ul { display: flex; }
.main-nav ul li ul li a { border-radius: 0; border-bottom: 1px solid var(--border); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.wa-nav {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #25D366;
  text-decoration: none;
}
.wa-nav svg { width: 18px; height: 18px; fill: #25D366; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); transition: all 0.3s;
}

/* 7. Hero Section */
.hero {
  min-height: 88vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,26,46,0.88) 0%,
    rgba(10,26,46,0.72) 55%,
    rgba(10,26,46,0.45) 100%
  );
}
.hero-content { position: relative; z-index: 2; padding: 80px 0 60px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 2px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600; color: var(--white);
  line-height: 1.12; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.8; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; margin-top: 36px; }
.hstat { text-align: left; }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 600; color: var(--white); line-height: 1;
}
.hstat-num span { color: var(--accent-light); }
.hstat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* 8. Property Search Bar */
.search-bar-wrap {
  background: var(--white); border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2); overflow: hidden; max-width: 860px;
}
.search-tabs { display: flex; background: var(--off-white); border-bottom: 1px solid var(--border); }
.search-tab {
  padding: 14px 28px; font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--text-3); border: none; background: transparent;
  font-family: 'Poppins', sans-serif; transition: all 0.2s;
}
.search-tab.active {
  background: var(--white); color: var(--primary);
  border-bottom: 3px solid var(--accent); margin-bottom: -1px;
}
.search-fields { display: flex; align-items: center; padding: 16px 20px; gap: 0; }
.search-field { flex: 1; padding: 0 20px; border-right: 1px solid var(--border); }
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 4px;
}
.search-field select, .search-field input {
  width: 100%; border: none; outline: none;
  font-size: 14px; font-weight: 500; color: var(--text);
  background: transparent; font-family: 'Poppins', sans-serif;
  appearance: none; cursor: pointer;
}
.search-btn {
  margin-left: 16px; padding: 14px 28px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 4px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s; white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.search-btn:hover { background: #b07d20; }
.search-btn svg { width: 16px; height: 16px; stroke: white; fill: none; }

/* 9. Property Type Strip */
.type-strip { background: var(--primary); padding: 0; }
.type-strip-inner { display: flex; overflow-x: auto; }
.type-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 32px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all 0.2s;
}
.type-btn:hover, .type-btn.active { color: var(--white); border-color: var(--accent); }
.type-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* 10. Featured Properties */
.featured-section { padding: 88px 0; background: var(--white); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* 11. Property Cards */
.prop-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s ease; cursor: pointer;
}
.prop-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.prop-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--light-grey);
}
.prop-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.prop-card:hover .prop-img { transform: scale(1.05); }
.prop-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; border-radius: 2px; text-transform: uppercase;
}
.badge-sale    { background: var(--accent); color: white; }
.badge-new     { background: var(--primary); color: white; }
.badge-premium { background: #7C3AED; color: white; }
.prop-price {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(10,26,46,0.9); color: white;
  padding: 6px 14px; font-size: 15px; font-weight: 700;
  border-radius: 2px; font-family: 'Playfair Display', serif;
}
.prop-fav {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.prop-fav svg { width: 16px; height: 16px; stroke: var(--text-3); fill: none; }
.prop-body { padding: 20px 20px 16px; }
.prop-type { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.prop-title { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.prop-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.prop-location svg { width: 14px; height: 14px; stroke: var(--text-3); fill: none; flex-shrink: 0; }
.prop-specs {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px;
}
.spec {
  flex: 1; display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2); font-weight: 500;
  padding-right: 12px; border-right: 1px solid var(--border);
}
.spec:last-child { border-right: none; padding-right: 0; padding-left: 12px; flex: none; }
.spec svg { width: 15px; height: 15px; stroke: var(--text-3); fill: none; }
.prop-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--border); background: var(--off-white);
}
.prop-agent { display: flex; align-items: center; gap: 10px; }
.agent-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
}
.agent-name { font-size: 12px; font-weight: 600; color: var(--text-2); }
.prop-action {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.prop-action svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* 12. Stats Bar */
.stats-bar { background: var(--primary); padding: 56px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.sbar-item { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.sbar-item:last-child { border-right: none; }
.sbar-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 600; color: var(--white); display: block; line-height: 1;
}
.sbar-num em { color: var(--accent-light); font-style: normal; }
.sbar-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px; display: block; }

/* 13. Why Choose Rahul */
.why-section { padding: 88px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-side { position: relative; }
.why-img-main {
  width: 100%; aspect-ratio: 5/6; background: linear-gradient(135deg, var(--primary) 0%, #2a5a8c 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.why-img-main::before {
  content: 'RT'; font-family: 'Playfair Display', serif;
  font-size: 120px; color: rgba(255,255,255,0.07); font-style: italic;
}
.why-img-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; background: var(--accent);
  border-radius: 4px; z-index: -1;
}
.why-stats-box {
  position: absolute; bottom: 28px; left: -28px;
  background: white; padding: 20px 24px; border-radius: 6px;
  box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 16px;
}
.wstat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600; color: var(--primary); line-height: 1; }
.wstat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.wstat-divider { width: 1px; height: 40px; background: var(--border); }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; border-radius: 6px;
  background: rgba(201,146,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.why-item-title { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.why-item-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.rera-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,60,94,0.08); padding: 10px 18px;
  border-radius: 4px; font-size: 12px; font-weight: 600;
  color: var(--primary); border: 1px solid rgba(26,60,94,0.15);
}
.rera-pill svg { width: 14px; height: 14px; stroke: var(--primary); fill: none; }

/* 14. Locations */
.locations-section { padding: 88px 0; background: var(--white); }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.loc-card {
  position: relative; border-radius: 8px; overflow: hidden;
  text-decoration: none; display: block; cursor: pointer;
}
.loc-card:nth-child(1) { grid-column: 1 / 3; }
.loc-bg { width: 100%; height: 200px; display: block; transition: transform 0.5s ease; background-size: cover; background-position: center; }
.loc-card:nth-child(1) .loc-bg { height: 280px; }
.loc-card:hover .loc-bg { transform: scale(1.06); }
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,46,0.82) 0%, rgba(10,26,46,0.1) 60%); }
.loc-info { position: absolute; bottom: 0; padding: 20px; width: 100%; }
.loc-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: white; display: block; }
.loc-card:nth-child(1) .loc-name { font-size: 24px; }
.loc-count { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; display: block; }
.loc-chip {
  position: absolute; top: 14px; left: 14px; background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

/* 15. Testimonials */
.testimonials-section { padding: 88px 0; background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--white); border-radius: 8px; padding: 36px 30px;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-hover); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { color: var(--accent-light); font-size: 16px; }
.testi-text { font-size: 14px; line-height: 1.85; color: var(--text-2); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.tavi {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: white;
}
.tavi img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.tname { font-size: 14px; font-weight: 600; color: var(--primary); }
.trole { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* 16. Blog */
.blog-section { padding: 88px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all 0.3s; cursor: pointer; text-decoration: none;
  display: block; background: var(--white);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-img { width: 100%; aspect-ratio: 16/9; display: block; transition: transform 0.4s; background-size: cover; background-position: center; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 22px 22px 20px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-title { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.blog-meta { font-size: 12px; color: var(--text-3); }

/* 17. CTA Section */
.cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0f2840 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(201,146,42,0.07);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; flex-wrap: wrap; }
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 600;
  color: white; margin-bottom: 14px; line-height: 1.25;
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 480px; line-height: 1.8; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-contact {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 14px 20px;
}
.cta-contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.cta-contact-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.cta-contact-label { font-size: 11px; color: rgba(255,255,255,0.5); }
.cta-contact-val { font-size: 16px; font-weight: 700; color: white; }

/* 18. Footer */
.site-footer { background: #0A1A2E; padding: 72px 0 0; color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 13px; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,0.45); max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: white; margin-bottom: 20px; }

/* WordPress Footer Menu */
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--accent-light); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.fc-icon { width: 34px; height: 34px; border-radius: 4px; background: rgba(201,146,42,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; }
.fc-label { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.fc-val { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-rera { color: rgba(201,146,42,0.7); }

/* 19. WhatsApp Float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* 20. WordPress Core Overrides */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 6px; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden;
}

/* 21. Responsive */
@media (max-width: 960px) {
  .property-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .sbar-item { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .loc-card:nth-child(1) { grid-column: 1 / 3; }
  .cta-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 16px; }
  .main-nav.open ul { flex-direction: column; }
  .nav-toggle { display: flex; }
  .top-bar-left { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .search-fields { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .property-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}
