/*
Theme Name: Property In Bhiwadi
Theme URI: https://propertyinbhiwadi.com
Author: Property In Bhiwadi Team
Author URI: https://propertyinbhiwadi.com
Description: Premium Real Estate WordPress Theme for Bhiwadi – Fully Dynamic, SEO Optimized, WhatsApp Lead Integration, Google E-E-A-T Ready
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: propertyinbhiwadi
Tags: real-estate, property, bhiwadi, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, rtl-language-support, threaded-comments, translation-ready

Color Palette:
Primary:    #0A2540 (Deep Navy Blue)
Secondary:  #FF6B2B (Vibrant Orange)
Accent:     #10B981 (Emerald Green)
Light BG:   #F8FAFC
Dark Text:  #1A1A2E
*/

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

:root {
  --primary:   #0A2540;
  --secondary: #FF6B2B;
  --accent:    #10B981;
  --light:     #F8FAFC;
  --dark:      #1A1A2E;
  --gray:      #64748B;
  --border:    #E2E8F0;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(10,37,64,0.10);
  --shadow-lg: 0 8px 40px rgba(10,37,64,0.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--gray); line-height: 1.8; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* Section spacing */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B2B22, #FF6B2B44);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,43,0.35);
}
.btn-primary:hover {
  background: #e55a1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,43,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: #0d3060; transform: translateY(-2px); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

/* =================== HEADER =================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,37,64,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo img { height: 48px; width: auto; }
.site-logo .text-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.site-logo .text-logo span { color: var(--secondary); }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav .current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
}
.header-phone:hover { border-color: var(--secondary); color: var(--white); }
.header-phone svg { color: var(--secondary); }

.mobile-toggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A2540 0%, #0d3a6e 60%, #1a1a3e 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.9) 0%, rgba(10,37,64,0.6) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,107,43,0.4);
  border-radius: 50%;
  animation: float 8s infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.5); opacity: 0.8; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.15);
  border: 1px solid rgba(255,107,43,0.4);
  color: #ffb494;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 480px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat strong span { color: var(--secondary); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* Search Bar */
.hero-search {
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}
.hero-search select, .hero-search input {
  flex: 1;
  padding: 12px 16px;
  background: var(--light);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--dark);
}
.hero-search .btn { white-space: nowrap; }

/* =================== PROPERTY CARDS =================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img img { transform: scale(1.06); }
.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.property-badge.rent { background: var(--accent); }
.property-badge.sold { background: var(--gray); }
.property-featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10,37,64,0.85);
  color: #FFD700;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.property-wishlist {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.property-wishlist:hover { background: #fee2e2; }

.property-body { padding: 20px; }
.property-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}
.property-price small {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}
.property-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.property-location svg { color: var(--secondary); flex-shrink: 0; }
.property-meta {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.property-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--gray);
}
.property-meta-item svg { color: var(--primary); }
.property-footer { display: flex; gap: 8px; }
.property-footer .btn { flex: 1; justify-content: center; padding: 10px; font-size: 0.82rem; }

/* =================== STATS =================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6e 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { position: relative; padding: 24px; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--secondary); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =================== ABOUT =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--secondary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(255,107,43,0.4);
}
.about-experience-badge strong { display: block; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.about-experience-badge span { font-size: 0.8rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.about-content .badge { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #FF6B2B22, #FF6B2B44);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--secondary);
}
.about-feature h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 2px; }
.about-feature p { font-size: 0.82rem; color: var(--gray); line-height: 1.4; }

/* =================== TEAM =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,37,64,0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-socials { display: flex; gap: 10px; }
.team-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.team-socials a:hover { background: var(--secondary); border-color: var(--secondary); }
.team-body { padding: 20px; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--secondary); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* =================== TESTIMONIALS =================== */
.testimonials-section { background: var(--light); }
.testimonials-slider { position: relative; }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: #FBBF24; font-size: 1rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray);
  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%;
  overflow: hidden;
  border: 3px solid var(--border);
}
.testimonial-author-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.testimonial-author-role { font-size: 0.78rem; color: var(--gray); }
.testimonial-property-badge {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =================== BLOG =================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-meta span {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-cat {
  background: linear-gradient(135deg, #FF6B2B22, #FF6B2B44);
  color: var(--secondary);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-title a:hover { color: var(--secondary); }
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
}
.blog-read-more:hover { gap: 10px; }

/* =================== CONTACT =================== */
.contact-section { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), #0d3a6e);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail h4 { font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; font-weight: 500; }
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}
.contact-detail a:hover { color: var(--secondary); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(255,107,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; gap: 12px; }
.form-submit .btn { flex: 1; justify-content: center; }
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .text-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand .text-logo span { color: var(--secondary); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--secondary);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a svg { color: var(--secondary); flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item svg { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--secondary); }
.footer-bottom-links { display: flex; gap: 20px; }

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-float-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float-btn:hover { transform: scale(1.1); background: #1ebe5d; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* =================== BREADCRUMB =================== */
.breadcrumb-section {
  background: var(--primary);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 40%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb-section h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav span { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: var(--secondary); font-weight: 600; }

/* =================== FILTERS =================== */
.property-filters {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-group { flex: 1; min-width: 150px; }
.filter-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select, .filter-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--light);
}
.filter-group select:focus, .filter-group input:focus {
  border-color: var(--secondary);
}
.filter-results {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.filter-results strong { color: var(--primary); }

/* =================== SINGLE PROPERTY =================== */
.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.property-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  position: relative;
  margin-bottom: 12px;
}
.property-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-thumb {
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-detail-meta {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.property-detail-meta h1 { font-size: 1.5rem; margin-bottom: 8px; }
.property-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.property-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 10px;
  background: var(--light);
  border-radius: 8px;
}
.property-feature svg { color: var(--primary); }
.property-feature strong { color: var(--dark); display: block; }

.property-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: sticky;
  top: 92px;
}
.property-sidebar-card .price-display {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.property-sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.emi-calc { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.emi-calc h4 { margin-bottom: 12px; font-size: 0.95rem; }
.emi-result {
  background: var(--light);
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  margin-top: 12px;
}
.emi-result strong { display: block; font-size: 1.5rem; color: var(--primary); }
.emi-result span { font-size: 0.8rem; color: var(--gray); }

/* =================== SINGLE BLOG =================== */
.blog-content { max-width: 800px; }
.blog-content h2 { margin: 32px 0 16px; }
.blog-content h3 { margin: 24px 0 12px; }
.blog-content p { margin-bottom: 20px; color: var(--gray); }
.blog-content ul, .blog-content ol {
  margin: 0 0 20px 24px;
  color: var(--gray);
}
.blog-content li { margin-bottom: 8px; }
.blog-content img { border-radius: var(--radius); margin: 20px 0; }
.blog-content blockquote {
  border-left: 4px solid var(--secondary);
  padding: 16px 20px;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--primary);
}

/* =================== PAGE: ABOUT =================== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), #0d3a6e);
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.why-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #FF6B2B22, #FF6B2B44);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--secondary);
}

/* =================== GOOGLE MAP =================== */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: grayscale(20%);
}

/* =================== ADMIN AREA =================== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--primary);
  color: var(--white);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.admin-sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.admin-sidebar-brand span { color: var(--secondary); }
.admin-nav { padding: 16px 12px; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.admin-nav a.active { background: var(--secondary); color: var(--white); }
.admin-nav .nav-section {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 16px 14px 6px;
}
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 { font-size: 1.2rem; color: var(--primary); }
.admin-content { padding: 32px; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.admin-stat-info strong { display: block; font-size: 1.6rem; color: var(--primary); font-weight: 800; }
.admin-stat-info span { font-size: 0.82rem; color: var(--gray); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-table th {
  background: var(--light);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--dark); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light); }
.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-active { background: #d1fae5; color: #065f46; }
.badge-sold   { background: #fee2e2; color: #991b1b; }
.badge-pending{ background: #fef3c7; color: #92400e; }
.admin-actions { display: flex; gap: 8px; }
.admin-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid transparent;
}
.admin-btn-edit { background: #dbeafe; color: #1d4ed8; }
.admin-btn-edit:hover { background: #1d4ed8; color: var(--white); }
.admin-btn-delete { background: #fee2e2; color: #dc2626; }
.admin-btn-delete:hover { background: #dc2626; color: var(--white); }
.admin-btn-view { background: #d1fae5; color: #059669; }
.admin-btn-view:hover { background: #059669; color: var(--white); }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.admin-input {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
}
.admin-input:focus { border-color: var(--secondary); }
.admin-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.admin-textarea { min-height: 120px; resize: vertical; }

/* =================== UTILITIES =================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.animate-fade-up { animation: fadeInUp 0.7s ease both; }
.animate-slide-left { animation: slideInLeft 0.7s ease both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 560px; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .property-detail-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: var(--transition);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
  }
  .mobile-nav a:hover { background: var(--secondary); }
  .mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .properties-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-search { flex-direction: column; }
  .property-filters { flex-direction: column; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .property-features-grid { grid-template-columns: 1fr; }
  .about-experience-badge { bottom: 0; right: 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section { padding: 56px 0; }
  .contact-form { padding: 24px; }
  .form-submit { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print {
  #site-header, .whatsapp-float, .property-sidebar-card { display: none; }
}
