/* ============================================
   SM Properties — style.css
   Full design system: variables, layout, components, animations, responsive
   ============================================ */

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

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary: #E63946;
  --primary-dark: #c8303c;
  --primary-light: #FFF1F2;
  --navy: #1D3557;
  --navy-dark: #162845;
  --navy-light: #F0F4FF;
  --white: #ffffff;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-600: #495057;
  --gray-700: #343A40;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(230,57,70,0.35);
  --shadow-glow-navy: 0 0 20px rgba(29,53,87,0.35);
  --radius-card: 1.25rem;
  --radius-btn: 0.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--gray-50);
  color: #1C1C1C;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--primary); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ---- Layout ---- */
.section-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .section-wrapper { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .section-wrapper { padding: 0 2rem; } }

/* ---- Typography Helpers ---- */
.section-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { color: var(--gray-500); font-size: 1.125rem; margin-bottom: 2.5rem; }
.text-shadow { text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.text-shadow-lg { text-shadow: 0 4px 20px rgba(0,0,0,0.5); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: all 0.3s ease; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: white;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--navy-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 0.75rem 1.5rem; border-radius: var(--radius-btn);
  font-weight: 600; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--primary); color: white; }

/* ---- Input Fields ---- */
.input-field {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200); border-radius: 0.5rem;
  outline: none; transition: all 0.2s;
  background: white; color: var(--gray-700);
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
}
.input-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.12); }
.input-field::placeholder { color: var(--gray-400); }

/* ---- Badges ---- */
.badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; }
.badge-new { background: #e8f5e9; color: #2e7d32; }
.badge-sale { background: #fce4e4; color: var(--primary); }
.badge-rent { background: #e3f2fd; color: #1565c0; }
.badge-luxury { background: #fff8e1; color: #f57f17; }
.badge-nobrokerage { background: #fff3e0; color: #e65100; }

/* ---- Cards ---- */
.property-card {
  background: white; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); transition: all 0.3s ease; cursor: pointer;
}
.property-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-8px); }
.glass-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-card); }

/* ---- Gradient Text ---- */
.gradient-text { background: linear-gradient(to right, var(--primary), #f4a261); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- Hero ---- */
.hero-overlay { background: linear-gradient(135deg, rgba(29,53,87,0.85) 0%, rgba(230,57,70,0.5) 100%); }

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled { background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 0.75rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 2.75rem; object-fit: contain; }
@media (min-width: 768px) { .nav-logo img { height: 3rem; } }
.nav-links { display: none; align-items: center; gap: 0.25rem; margin-left: 5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-weight: 500; font-size: 0.875rem;
  transition: all 0.2s; position: relative;
}
#navbar.transparent .nav-link { color: rgba(255,255,255,0.9); }
#navbar.transparent .nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-link { color: var(--gray-700); }
#navbar.scrolled .nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active { color: var(--primary) !important; }
#navbar.transparent .nav-link.active { color: white !important; }
.nav-right { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
#navbar.transparent .nav-phone { color: rgba(255,255,255,0.9); }
#navbar.transparent .nav-phone:hover { color: white; }
#navbar.scrolled .nav-phone { color: var(--gray-600); }
#navbar.scrolled .nav-phone:hover { color: var(--primary); }
.nav-cta {
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600; transition: all 0.2s;
}
#navbar.transparent .nav-cta { background: rgba(255,255,255,0.2); color: white; border: 1px solid rgba(255,255,255,0.3); }
#navbar.transparent .nav-cta:hover { background: rgba(255,255,255,0.3); }
#navbar.scrolled .nav-cta { background: var(--primary); color: white; }
#navbar.scrolled .nav-cta:hover { background: var(--primary-dark); }
.hamburger { display: flex; align-items: center; justify-content: center; padding: 0.5rem; border-radius: 0.5rem; transition: all 0.2s; }
@media (min-width: 1024px) { .hamburger { display: none; } }
#navbar.transparent .hamburger { color: white; }
#navbar.transparent .hamburger:hover { background: rgba(255,255,255,0.1); }
#navbar.scrolled .hamburger { color: var(--gray-700); }
#navbar.scrolled .hamburger:hover { background: var(--gray-100); }
/* Mobile Menu */
#mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: white; box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding-top: 5rem; padding-bottom: 1.5rem;
  transform: translateY(-110%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateY(0); }
.mobile-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  color: var(--gray-700); font-weight: 500; transition: all 0.2s;
  margin: 0 0.75rem;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--primary-light); color: var(--primary); }
.mobile-dot { width: 0.5rem; height: 0.5rem; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.mobile-phone-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; margin: 0.75rem; border-radius: 0.75rem;
  background: var(--primary-light); color: var(--primary); font-weight: 600;
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section { position: relative; height: 100vh; min-height: 600px; max-height: 900px; overflow: hidden; }
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 10; padding: 1rem;
}
.hero-title { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: white; text-align: center; margin-bottom: 1rem; line-height: 1.15; }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
.hero-title span { color: #f87171; }
.hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 40rem; text-align: center; line-height: 1.7; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; justify-content: center; }
.hero-chip {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  padding: 0.375rem 0.875rem; border-radius: 999px;
  color: white; font-size: 0.8rem; font-weight: 500;
}
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; animation: bounce 1.5s infinite; }
.scroll-indicator svg { color: rgba(255,255,255,0.7); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================
   LOCALITIES (CITY GRID)
   ============================ */
.localities-section { padding: 4rem 0; background: white; }
.city-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(8,1fr); } }
.city-card { cursor: pointer; text-align: center; transition: transform 0.3s; }
.city-card:hover { transform: translateY(-6px); }
.city-img-wrap { position: relative; width: 100%; aspect-ratio: 1; border-radius: 1rem; overflow: hidden; margin-bottom: 0.5rem; box-shadow: var(--shadow-card); }
.city-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.city-card:hover .city-img-wrap img { transform: scale(1.1); }
.city-overlay { position: absolute; inset: 0; opacity: 0.5; transition: opacity 0.3s; }
.city-card:hover .city-overlay { opacity: 0.7; }
.city-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.city-label p { color: white; font-weight: 700; font-size: 0.8rem; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }

/* ============================
   FEATURED PROPERTIES
   ============================ */
.properties-section { padding: 4rem 0; background: var(--gray-50); }
.properties-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .properties-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .properties-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1280px) { .properties-grid { grid-template-columns: repeat(4,1fr); } }
/* Property Card */
.prop-card { background: white; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; transition: all 0.3s; }
.prop-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-8px); }
.prop-img { position: relative; height: 12rem; overflow: hidden; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.prop-price { position: absolute; top: 0.75rem; right: 0.75rem; background: white; color: var(--navy); font-weight: 700; font-size: 0.8rem; padding: 0.25rem 0.6rem; border-radius: 0.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.prop-body { padding: 1rem; }
.prop-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-location { display: flex; align-items: center; gap: 0.3rem; color: var(--gray-500); font-size: 0.75rem; margin-bottom: 0.75rem; }
.prop-specs { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--gray-100); border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; }
.prop-spec { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0.5rem 0.25rem; }
.prop-spec:not(:last-child) { border-right: 1px solid var(--gray-100); }
.prop-spec-val { display: flex; align-items: center; gap: 0.2rem; font-size: 0.65rem; font-weight: 600; color: var(--navy); justify-content: center; width: 100%; }
.prop-spec-label { font-size: 0.6rem; color: var(--gray-400); text-transform: uppercase; font-weight: 500; margin-top: 0.15rem; }
.prop-spec-val span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); padding-top: 0.75rem; }
.prop-builder { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: var(--gray-500); }
.prop-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; font-weight: 600; color: var(--gray-700); }
.prop-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0 1rem 1rem; }
.prop-action-call, .prop-action-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.5rem; border-radius: 0.6rem; font-size: 0.75rem; font-weight: 600;
  transition: all 0.2s;
}
.prop-action-call { background: var(--primary-light); color: var(--primary); }
.prop-action-call:hover { background: var(--primary); color: white; }
.prop-action-wa { background: #e8f5e9; color: #2e7d32; }
.prop-action-wa:hover { background: #25D366; color: white; }

/* ============================
   STATS SECTION
   ============================ */
.stats-section { padding: 5rem 0; background: var(--navy); position: relative; overflow: hidden; }
.stats-section::before { content:''; position:absolute; top:0; right:0; width:20rem; height:20rem; background:rgba(230,57,70,0.08); border-radius:50%; transform:translate(50%,-50%); }
.stats-section::after { content:''; position:absolute; bottom:0; left:0; width:16rem; height:16rem; background:rgba(255,255,255,0.04); border-radius:50%; transform:translate(-50%,50%); }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(5,1fr); } }
.stat-item { text-align: center; }
.stat-icon { display: flex; justify-content: center; margin-bottom: 0.75rem; font-size: 1.75rem; }
.stat-value { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 2rem; color: white; margin-bottom: 0.25rem; }
.stat-label { color: #9ca3af; font-size: 0.875rem; }

/* ============================
   CTA DUAL CARDS
   ============================ */
.cta-section { padding: 4rem 0; background: var(--gray-50); }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .cta-grid { grid-template-columns: 1fr 1fr; } }
.cta-card { border-radius: 1.5rem; padding: 2rem; color: white; position: relative; overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.3s; }
.cta-card:hover { transform: translateY(-4px); }
.cta-card::before { content:''; position:absolute; top:0; right:0; width:8rem; height:8rem; background:rgba(255,255,255,0.05); border-radius:50%; transform:translate(50%,-50%); transition: transform 0.5s; }
.cta-card:hover::before { transform:translate(50%,-50%) scale(1.1); }
.cta-card-navy { background: linear-gradient(135deg, var(--navy) 0%, #16324f 100%); }
.cta-card-red { background: linear-gradient(135deg, #c0392b 0%, var(--primary) 100%); }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 1rem; }
.cta-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-btn-white { background: white; color: var(--navy); font-weight: 700; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.875rem; transition: all 0.2s; display: inline-block; }
.cta-btn-white:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-btn-white-red { color: var(--primary) !important; }
.cta-btn-outline-w { border: 1px solid rgba(255,255,255,0.3); color: white; font-weight: 700; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.875rem; transition: all 0.2s; display: inline-block; }
.cta-btn-outline-w:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { padding: 4rem 0; background: var(--gray-50); }
.testimonials-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.testimonial-nav { display: flex; gap: 0.625rem; }
.testimonial-nav button { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: white; border: 1px solid var(--gray-100); color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.testimonial-nav button:hover { background: var(--primary); color: white; border-color: transparent; }
.testi-card { background: white; border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 1px 8px rgba(0,0,0,0.05); border: 1px solid var(--gray-100); height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.testi-stars { display: flex; gap: 0.2rem; color: #f59e0b; margin-bottom: 0.75rem; }
.testi-quote { color: #e5e7eb; font-size: 2rem; font-family: Georgia, serif; line-height: 1; }
.testi-text { color: var(--gray-600); font-size: 0.75rem; line-height: 1.7; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.testi-footer { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); margin-top: 1rem; }
.testi-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; border: 1px solid currentColor; flex-shrink: 0; }
.testi-name { font-weight: 600; color: var(--navy); font-size: 0.75rem; }
.testi-loc { color: var(--gray-400); font-size: 0.65rem; }

/* ============================
   CONTACT CTA BANNER
   ============================ */
.contact-cta-section { padding: 4rem 0; background: white; }
.contact-cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #16324f 60%, var(--primary-dark) 100%);
  border-radius: 1.5rem; padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .contact-cta-inner { padding: 2.5rem 3.5rem; } }
.contact-cta-inner::before { content:''; position:absolute; top:0; right:0; width:16rem; height:16rem; background:rgba(255,255,255,0.04); border-radius:50%; transform:translate(50%,-50%); }
.contact-cta-inner::after { content:''; position:absolute; bottom:0; left:0; width:12rem; height:12rem; background:rgba(230,57,70,0.15); border-radius:50%; transform:translate(-50%,50%); }
.cta-icon { width: 3.5rem; height: 3.5rem; background: rgba(255,255,255,0.15); border-radius: 1rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-cta-inner h2 { font-family: 'Outfit', sans-serif; font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 0.75rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .contact-cta-inner h2 { font-size: 2.25rem; } }
.contact-cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-btns-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; z-index: 1; }
.cta-call-btn { background: white; color: var(--primary); padding: 1rem 2rem; border-radius: 0.75rem; font-weight: 700; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-call-btn:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); transform: translateY(-2px); }
.cta-wa-btn { border: 2px solid rgba(255,255,255,0.5); color: white; padding: 1rem 2rem; border-radius: 0.75rem; font-weight: 700; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-wa-btn:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ============================
   FOOTER
   ============================ */
footer { background: var(--navy); color: white; }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 2.75rem; object-fit: contain; }
.footer-desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.social-btn { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-btn:hover { transform: translateY(-3px) scale(1.12); }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-contact-item:hover { color: white; }
.footer-contact-icon { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: white; margin-bottom: 1.25rem; }
.footer-link { display: flex; align-items: center; gap: 0.5rem; color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-link:hover { color: #f87171; }
.footer-link svg { opacity: 0.5; flex-shrink: 0; }
.footer-link:hover svg { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { padding: 1.25rem 0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; text-align: left; } }
.footer-bottom p { color: #6b7280; font-size: 0.875rem; }
.footer-credit { color: #6b7280; font-size: 0.875rem; text-align: center; }
.footer-credit strong { color: #9ca3af; font-weight: 500; }
.footer-legal { display: flex; align-items: center; gap: 1.5rem; }
.footer-legal a { color: #6b7280; font-size: 0.875rem; transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ============================
   FLOATING BUTTONS
   ============================ */
.floating-btns { position: fixed; z-index: 50; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-btns-right { bottom: 1.5rem; right: 1.5rem; }
.floating-btns-left { bottom: 1.5rem; left: 1.5rem; }
.float-btn { width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: all 0.3s; color: white; }
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25D366; }
.float-call { background: var(--primary); }

/* ============================
   PROPERTY MODAL
   ============================ */
#modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#modal-overlay.active { opacity: 1; pointer-events: all; }
#modal-box {
  background: white; border-radius: 1.5rem; overflow: hidden;
  width: 100%; max-width: 56rem; max-height: 90vh; overflow-y: auto;
  transform: scale(0.95); transition: transform 0.3s;
}
#modal-overlay.active #modal-box { transform: scale(1); }
.modal-img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 768px) { .modal-img { height: 22rem; } }
.modal-body { padding: 1.5rem; }
@media (min-width: 768px) { .modal-body { padding: 2rem; } }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.modal-price { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.modal-specs { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; background: var(--gray-50); border-radius: 1rem; padding: 1rem; margin-bottom: 1.5rem; border: 1px solid var(--gray-100); }
@media (min-width: 640px) { .modal-specs { grid-template-columns: repeat(4,1fr); } }
.modal-spec-item { text-align: center; }
.modal-spec-label { font-size: 0.7rem; text-transform: uppercase; color: var(--gray-400); font-weight: 500; display: block; }
.modal-spec-val { font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.modal-section-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.75rem; }
.modal-highlights { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.modal-highlight { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-700); font-size: 0.875rem; }
.modal-pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--gray-100); }
.modal-pricing-table th { background: var(--navy); color: white; padding: 0.625rem 1rem; text-align: left; font-size: 0.8rem; font-weight: 600; }
.modal-pricing-table td { padding: 0.625rem 1rem; font-size: 0.8rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.modal-pricing-table tr:last-child td { border-bottom: none; }
.modal-pricing-table tr:nth-child(even) td { background: var(--gray-50); }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 2rem; height: 2rem; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.15); z-index: 10; }
.modal-img-wrap { position: relative; }

/* ============================
   INNER PAGE HERO
   ============================ */
.inner-hero { position: relative; overflow: hidden; }
.inner-hero img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(29,53,87,0.9), rgba(230,57,70,0.6)); }
.inner-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.inner-hero h1 { font-family: 'Outfit', sans-serif; font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: 0.75rem; line-height: 1.15; }
@media (min-width: 768px) { .inner-hero h1 { font-size: 3rem; } }
.inner-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 32rem; }

/* ============================
   SERVICES PAGE
   ============================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card {
  padding: 2rem; border-radius: 1.25rem; background: linear-gradient(to bottom right, white, var(--gray-50));
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-card);
  transition: all 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-8px) scale(1.01); }
.service-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); font-size: 2rem; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { border-top: 1px solid rgba(29,53,87,0.08); padding-top: 1rem; margin-top: auto; }
.service-features-title { font-size: 0.7rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.service-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--gray-700); margin-bottom: 0.5rem; }
.check-icon { color: #10b981; flex-shrink: 0; font-size: 0.875rem; }
.trust-strip { padding: 4rem 0; background: var(--navy); color: white; position: relative; overflow: hidden; text-align: center; }
.trust-strip::before { content:''; position:absolute; top:0; right:0; width:20rem; height:20rem; background:rgba(230,57,70,0.08); border-radius:50%; transform:translate(50%,-50%); }
.trust-strip::after { content:''; position:absolute; bottom:0; left:0; width:16rem; height:16rem; background:rgba(255,255,255,0.04); border-radius:50%; transform:translate(-50%,50%); }
.trust-strip-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.trust-shield { width: 4rem; height: 4rem; background: rgba(255,255,255,0.1); border-radius: 1rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 2rem; }
.trust-strip h2 { font-family: 'Outfit', sans-serif; font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .trust-strip h2 { font-size: 2.25rem; } }
.trust-strip p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-mission { padding: 4rem 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary-light); color: var(--primary); padding: 0.375rem 1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 1.5rem; width: 100%; object-fit: cover; height: 380px; box-shadow: var(--shadow-card-hover); }
.about-badge { position: absolute; background: var(--primary); color: white; border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow-glow); }
.about-badge-bottom { bottom: -1.5rem; left: -1.5rem; }
.about-badge-top { top: -1.5rem; right: -1.5rem; background: var(--navy); box-shadow: var(--shadow-glow-navy); }
.about-badge p:first-child { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.875rem; }
.about-badge p:last-child { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.values-section { padding: 4rem 0; background: var(--gray-50); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4,1fr); } }
.value-card { padding: 1.5rem; border-radius: 1.25rem; text-align: center; transition: transform 0.3s; }
.value-card:hover { transform: translateY(-6px); }
.value-icon-wrap { width: 4rem; height: 4rem; background: white; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06); font-size: 2rem; }
.value-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }
.timeline-section { padding: 4rem 0; background: var(--gray-50); }
.timeline-wrapper { position: relative; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--gray-200); transform: translateX(-50%); display: none; }
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-items { display: flex; flex-direction: column; gap: 2rem; }
.timeline-item { display: flex; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .timeline-item.even { flex-direction: row-reverse; } }
.timeline-content { flex: 1; }
@media (min-width: 768px) { .timeline-item.odd .timeline-content { padding-right: 3rem; text-align: right; } .timeline-item.even .timeline-content { padding-left: 3rem; } }
.timeline-card { background: white; border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow-card); max-width: 22rem; }
@media (min-width: 768px) { .timeline-item.odd .timeline-card { margin-left: auto; } }
.timeline-card:hover { box-shadow: var(--shadow-card-hover); }
.timeline-year { display: inline-block; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.75rem; border-radius: 999px; margin-bottom: 0.5rem; }
.timeline-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 0.25rem; }
.timeline-card p { color: var(--gray-500); font-size: 0.875rem; }
.timeline-dot { display: none; width: 3rem; height: 3rem; background: var(--primary); border-radius: 50%; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-glow); z-index: 1; color: white; font-size: 1.25rem; }
@media (min-width: 768px) { .timeline-dot { display: flex; } }
.timeline-spacer { display: none; flex: 1; }
@media (min-width: 768px) { .timeline-spacer { display: block; } }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section { padding: 4rem 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-form-title { font-family: 'Outfit', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-sub { color: var(--gray-500); margin-bottom: 2rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; }
.custom-select { position: relative; }
.custom-select-btn { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: 0.5rem; background: white; color: var(--gray-700); font-family: 'Inter', sans-serif; font-size: 0.875rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: all 0.2s; text-align: left; }
.custom-select-btn:hover { border-color: var(--primary); }
.custom-select-btn.open { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.12); }
.custom-select-btn svg { transition: transform 0.2s; flex-shrink: 0; color: var(--gray-400); }
.custom-select-btn.open svg { transform: rotate(180deg); color: var(--primary); }
.custom-select-dropdown { position: absolute; left: 0; right: 0; top: calc(100% + 6px); background: white; border: 1px solid var(--gray-200); border-radius: 0.75rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 50; max-height: 15rem; overflow-y: auto; padding: 0.25rem 0; display: none; }
.custom-select-dropdown.open { display: block; }
.custom-select-option { padding: 0.625rem 1rem; font-size: 0.875rem; cursor: pointer; transition: all 0.15s; color: var(--gray-700); }
.custom-select-option:hover { background: var(--primary-light); color: var(--primary); }
.custom-select-option.selected { background: var(--primary); color: white; font-weight: 600; }
.why-contact { background: linear-gradient(135deg, #eff6ff, #e0f2fe); border: 1px solid #bfdbfe; border-radius: 1.25rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.why-contact h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 1rem; }
.why-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--gray-700); font-weight: 500; margin-bottom: 1rem; }
.faq-card { background: white; border: 1px solid var(--gray-100); border-radius: 1.25rem; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.faq-header h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; text-align: left; transition: background 0.15s; }
.faq-question:hover { background: var(--gray-50); }
.faq-question span { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
.faq-question svg { flex-shrink: 0; color: var(--primary); transition: transform 0.25s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1rem; font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }
.map-section { padding: 4rem 0; background: white; }
.map-container { border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--gray-100); height: 25rem; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================
   LEGAL PAGES (Privacy / Terms)
   ============================ */
.legal-hero { height: 14rem; }
.legal-content { padding: 3rem 0 4rem; }
.legal-card { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card); border: 1px solid var(--gray-100); max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .legal-card { padding: 3rem; } }
.legal-updated { color: var(--gray-400); font-size: 0.875rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); margin-bottom: 2rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-family: 'Outfit', sans-serif; font-size: 1.375rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.legal-section p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-section ul { padding-left: 1.5rem; list-style: disc; color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; }
.legal-section ul li { margin-bottom: 0.5rem; }
.legal-section strong { color: var(--gray-700); }
.legal-contact { border-top: 1px solid var(--gray-100); padding-top: 2rem; margin-top: 2rem; }
.legal-contact h2 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.legal-contact p { font-size: 0.9375rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.legal-contact a { color: var(--primary); font-weight: 600; }

/* ============================
   SCROLL ANIMATION
   ============================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ============================
   SWIPER OVERRIDES
   ============================ */
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.5; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 24px !important; border-radius: 4px !important; transition: all 0.3s ease !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; background: white; width: 44px !important; height: 44px !important; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; font-weight: 900; }
