/*
Theme Name: Dream Property Hub
Theme URI: https://dreampropertyhub.in
Author: Mishty Web
Author URI: https://mishtyweb.com
Description: Premium Real Estate WordPress Theme - India's Most Trusted Property Platform
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dream-property-hub
*/

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

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --primary: #1e3a5f;
  --primary-light: #2a4f80;
  --accent: #ff8c42;
  --accent-dark: #e07a38;
  --white: #ffffff;
  --bg: #f8f9fc;
  --text: #1e3a5f;
  --text-muted: #6b7a99;
  --border: #e2e8f0;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(30,58,95,0.08);
  --shadow-lg: 0 12px 48px rgba(30,58,95,0.15);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* =====================
   LAYOUT HELPERS
   ===================== */
.dph-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.dph-section { padding: 80px 0; }
.dph-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.dph-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* =====================
   HEADER / NAV
   ===================== */
.dph-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.dph-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.dph-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.dph-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s;
}
.dph-logo:hover .dph-logo-icon { transform: scale(1.08); }
.dph-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.dph-logo-sub { font-size: 0.72rem; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.dph-nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.dph-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.dph-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.dph-nav a:hover { color: var(--white); }
.dph-nav a:hover::after { transform: scaleX(1); }
.dph-nav a.active { color: var(--accent); }
.dph-nav a.active::after { transform: scaleX(1); }

.dph-header-btns { display: flex; align-items: center; gap: 12px; }
.dph-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.dph-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.dph-btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(255,140,66,0.3);
}
.dph-btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Mobile menu toggle */
.dph-hamburger {
  display: none;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: background 0.2s;
}
.dph-hamburger:hover { background: rgba(255,255,255,0.2); }
.dph-mobile-menu {
  display: none;
  background: var(--primary-light);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.dph-mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dph-mobile-menu a:hover { color: var(--accent); }
.dph-mobile-menu-btns { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* =====================
   HERO
   ===================== */
.dph-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 80px 0 60px;
}
.dph-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506851321937-51fff21bc9a0?q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.dph-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,58,95,0.85), rgba(30,58,95,0.95));
}
.dph-hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; }
.dph-hero-badge {
  display: inline-block;
  background: rgba(255,140,66,0.18);
  color: var(--accent);
  border: 1px solid rgba(255,140,66,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.dph-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.dph-hero h1 span { color: var(--accent); }
.dph-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.dph-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.dph-btn-lg {
  padding: 15px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s;
  display: inline-block;
}
.dph-btn-lg.accent { background: var(--accent); color: var(--white); box-shadow: 0 8px 24px rgba(255,140,66,0.35); }
.dph-btn-lg.accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,140,66,0.45); }
.dph-btn-lg.outline { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.06); backdrop-filter: blur(6px); }
.dph-btn-lg.outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

/* Search Bar */
.dph-search-bar {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  max-width: 900px;
  margin: 0 auto;
}
.dph-search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.dph-search-field select {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 10px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231e3a5f' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.dph-search-btn {
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dph-search-btn:hover { background: var(--accent); transform: translateY(-1px); }

/* =====================
   STATS BAR
   ===================== */
.dph-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  box-shadow: var(--shadow);
}
.dph-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.dph-stat {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.dph-stat:last-child { border-right: none; }
.dph-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-feature-settings: "tnum";
}
.dph-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* =====================
   SECTION HEADER
   ===================== */
.dph-section-header { margin-bottom: 52px; }
.dph-section-header.center { text-align: center; }
.dph-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.dph-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.dph-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.dph-section-header.center .dph-section-sub { margin: 0 auto; }

/* =====================
   PROPERTY CARDS
   ===================== */
.dph-properties { background: var(--bg); }
.dph-property-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.dph-property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dph-property-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dph-property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.dph-property-card:hover .dph-property-img-wrap img { transform: scale(1.08); }
.dph-property-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dph-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.dph-badge.orange { background: var(--accent); color: var(--white); }
.dph-badge.white { background: rgba(255,255,255,0.92); color: var(--primary); }
.dph-property-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.dph-property-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.dph-property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.dph-property-location span { font-size: 1rem; }
.dph-property-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.dph-property-detail-label { font-size: 0.72rem; text-transform: uppercase; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; }
.dph-property-detail-value { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-top: 2px; }
.dph-property-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: rgba(30,58,95,0.07);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.2s;
}
.dph-property-cta:hover { background: var(--primary); color: var(--white); }

.dph-view-all {
  text-align: center;
  margin-top: 48px;
}
.dph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.dph-btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* =====================
   WHY CHOOSE US
   ===================== */
.dph-why { background: var(--white); }
.dph-why-card {
  background: rgba(30,58,95,0.04);
  border: 1px solid rgba(30,58,95,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dph-why-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(255,140,66,0.1); }
.dph-why-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.dph-why-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.dph-why-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* =====================
   CITIES
   ===================== */
.dph-cities { background: var(--primary); }
.dph-cities .dph-section-label { color: var(--accent); }
.dph-cities .dph-section-title { color: var(--white); }
.dph-cities .dph-section-sub { color: rgba(255,255,255,0.6); }
.dph-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dph-city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  transition: transform 0.3s;
}
.dph-city-card:hover { transform: scale(1.02); }
.dph-city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.dph-city-card:hover img { transform: scale(1.08); }
.dph-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.95) 0%, rgba(30,58,95,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.dph-city-name { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.dph-city-count { font-size: 0.88rem; font-weight: 700; color: var(--accent); margin-top: 4px; }

/* =====================
   HOW IT WORKS
   ===================== */
.dph-how { background: var(--bg); }
.dph-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.dph-how-divider {
  position: absolute;
  top: 48px;
  left: 17%;
  right: 17%;
  height: 2px;
  border-top: 2px dashed var(--border);
}
.dph-how-step { text-align: center; position: relative; z-index: 1; }
.dph-how-icon {
  width: 96px;
  height: 96px;
  background: rgba(255,140,66,0.1);
  border-radius: 50%;
  border: 8px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}
.dph-how-step h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.dph-how-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* =====================
   TESTIMONIALS
   ===================== */
.dph-testi { background: rgba(30,58,95,0.04); }
.dph-testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.dph-testi-quote {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 3.5rem;
  color: rgba(30,58,95,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.dph-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.dph-star { color: var(--accent); font-size: 1rem; }
.dph-testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.dph-testi-author { display: flex; align-items: center; gap: 14px; }
.dph-testi-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}
.dph-testi-name { font-weight: 800; color: var(--primary); font-size: 0.95rem; }
.dph-testi-role { font-size: 0.82rem; color: var(--text-muted); }

/* =====================
   LEAD FORM
   ===================== */
.dph-lead { background: var(--white); }
.dph-lead-wrap {
  background: var(--primary);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
  box-shadow: var(--shadow-lg);
}
.dph-lead-left {
  padding: 60px 48px;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1000');
  background-size: cover;
  background-position: center;
  position: relative;
}
.dph-lead-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,58,95,0.88);
}
.dph-lead-left-content { position: relative; z-index: 1; color: var(--white); }
.dph-lead-left h2 { font-size: 1.9rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.dph-lead-left p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; }
.dph-lead-contact { display: flex; align-items: center; gap: 14px; }
.dph-lead-contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,140,66,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dph-lead-contact-label { font-weight: 700; font-size: 0.95rem; }
.dph-lead-contact-value { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.dph-lead-right { background: var(--white); padding: 52px 48px; }
.dph-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dph-form-group { display: flex; flex-direction: column; gap: 7px; }
.dph-form-group.full { grid-column: 1 / -1; }
.dph-form-group label { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.dph-form-group input,
.dph-form-group select,
.dph-form-group textarea {
  height: 50px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: rgba(30,58,95,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.dph-form-group textarea { height: 120px; padding: 14px 16px; resize: vertical; }
.dph-form-group input:focus,
.dph-form-group select:focus,
.dph-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,140,66,0.12);
}
.dph-form-submit {
  width: 100%;
  height: 54px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 8px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(255,140,66,0.3);
}
.dph-form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,140,66,0.4); }

/* =====================
   FOOTER
   ===================== */
.dph-footer { background: var(--primary); color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.dph-footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 2fr 3fr;
  gap: 48px;
  margin-bottom: 60px;
}
.dph-footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 280px; margin-top: 16px; }
.dph-footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.dph-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.dph-social:hover { background: var(--accent); color: var(--white); }
.dph-footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 20px; }
.dph-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.dph-footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.dph-footer-col a:hover { color: var(--accent); }
.dph-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; margin-bottom: 14px; }
.dph-footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.dph-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.dph-footer-bottom a { color: var(--accent); }
.dph-footer-bottom-links { display: flex; gap: 24px; }

/* =====================
   WHATSAPP BUTTON
   ===================== */
.dph-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wabounce 2s ease-in-out 3s 3;
}
.dph-whatsapp:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
@keyframes wabounce { 0%,100%{transform:scale(1)}50%{transform:scale(1.15)} }

/* =====================
   ANIMATIONS
   ===================== */
.dph-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dph-fade.visible { opacity: 1; transform: none; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .dph-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .dph-lead-wrap { grid-template-columns: 1fr; }
  .dph-lead-left { padding: 40px 36px; }
  .dph-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .dph-nav, .dph-header-btns { display: none; }
  .dph-hamburger { display: flex; }
  .dph-search-bar { grid-template-columns: 1fr; }
  .dph-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dph-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .dph-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .dph-stat:last-child { border-bottom: none; }
  .dph-how-grid { grid-template-columns: 1fr; gap: 36px; }
  .dph-how-divider { display: none; }
  .dph-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .dph-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .dph-form-grid { grid-template-columns: 1fr; }
  .dph-lead-right { padding: 36px 24px; }
  .dph-hero h1 { letter-spacing: -0.5px; }
}
@media (max-width: 480px) {
  .dph-container { padding: 0 16px; }
  .dph-section { padding: 56px 0; }
  .dph-cities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dph-hero-btns { flex-direction: column; align-items: center; }
  .dph-btn-lg { width: 100%; text-align: center; }
}

/* =====================
   PROPERTY STATUS BADGE
   ===================== */
.dph-property-status {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* =====================
   FILTER BAR SELECTS
   ===================== */
.dph-filter-bar select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,140,66,0.12);
}
