:root {
  --primary: #1a1a1a;
  --accent: #c07830;
  --accent-hover: #a0621e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8fafc;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #111111;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ---- NAVBAR ---- */
.navbar {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 136px;
}
.navbar-logo img { height: 120px; width: auto; transition: opacity .2s; }
.navbar-logo img:hover { opacity: .8; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  transition: color .2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .85rem; font-weight: 700; color: var(--primary);
  transition: background .2s;
}
.btn-phone:hover { background: var(--bg); }
.btn-phone svg { color: var(--accent); }
.btn-contact {
  background: var(--accent); color: #fff;
  padding: .5rem 1.5rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  transition: background .2s;
}
.btn-contact:hover { background: var(--accent-hover); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mobile-menu {
  display: none; flex-direction: column; padding: 1rem 1.5rem;
  border-top: 1px solid var(--border); background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 0; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--primary);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-contact { margin-top: .75rem; text-align: center; display: block; }

@media(max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: block; }
}

/* ---- HERO ---- */
.hero {
  position: relative; height: 85vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.6); z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: auto;
  padding: 0 1.5rem; text-align: center; color: #fff;
  width: 100%;
}
.hero-badge {
  display: inline-block; padding: .5rem 1.25rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.4);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.1;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 300; margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.9);
  max-width: 600px; margin: 0 auto 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-hero-outline {
  padding: 1rem 2rem; border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff; font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: background .2s, color .2s;
}
.btn-hero-outline:hover { background: #fff; color: var(--primary); }
.hero-wave {
  position: absolute; bottom: 0; left: 0;
  width: 100%; z-index: 2;
}

/* ---- SECTIONS ---- */
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.container { max-width: 1280px; margin: auto; padding: 0 1.5rem; }
.section-label {
  display: inline-block; padding: .35rem 1rem;
  border-radius: 999px; background: rgba(192,120,48,.1);
  color: var(--accent); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; font-weight: 700;
  color: var(--primary); margin-bottom: 1rem;
}
.section-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }

/* ---- CARDS ---- */
.card {
  background: #fff; border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; padding: .2rem .6rem; border-radius: 999px; margin-bottom: .75rem;
}
.badge-sale { background: rgba(192,120,48,.1); color: var(--accent); }
.badge-rent { background: rgba(192,120,48,.12); color: var(--primary); }
.card-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.card-location { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.card-location svg { vertical-align: middle; margin-right: 4px; }
.card-price { font-size: 1.25rem; font-weight: 800; color: var(--accent); }
.card-price-sub { font-size: .75rem; color: var(--text-muted); }
.card-meta { display: flex; gap: 1rem; margin-top: .75rem; }
.card-meta span { font-size: .8rem; color: var(--text-muted); }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: #fff; border-radius: 1.25rem;
  padding: 1.5rem; border: 1px solid var(--border);
  border-top: 4px solid var(--accent); height: 100%;
}
.service-icon {
  width: 56px; height: 56px; border-radius: .75rem;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon svg { color: #fff; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.service-link { color: var(--accent); font-weight: 600; font-size: .85rem; margin-top: 1rem; display: inline-flex; align-items: center; gap: 4px; }

/* ---- WHY SECTION (dark bg) ---- */
.section-dark {
  position: relative; padding: 6rem 0;
  color: #fff; overflow: hidden;
}
.section-dark video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.section-dark-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.85); z-index: 1;
}
.section-dark .container { position: relative; z-index: 2; }
.why-card {
  background: rgba(255,255,255,.06); border-radius: 1rem;
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.1);
}
.why-icon {
  width: 48px; height: 48px; border-radius: .75rem;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ---- AMODIATION ---- */
.check-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.check-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.check-item strong { font-weight: 700; color: var(--primary); display: block; margin-bottom: .25rem; }
.check-item span { font-size: .9rem; color: var(--text-muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: #fdf3e3; padding: 6rem 0; }
.testimonial-track { overflow: hidden; }
.testimonial-slide { display: flex; gap: 1.5rem; transition: transform .5s ease; }
.testimonial-card {
  flex-shrink: 0; width: calc(33.333% - 1rem);
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.07);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-quote { font-size: .95rem; color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: .9rem; font-weight: 700; color: var(--primary); }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }
.carousel-nav { display: flex; gap: .75rem; margin-top: 2rem; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
}
.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

@media(max-width: 768px) {
  .testimonial-card { width: calc(100% - 0px); }
}

/* ---- STATS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--accent); display: block;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.7); }
@media(max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- CONTACT FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--primary); margin-bottom: .5rem; }
.form-control {
  width: 100%; padding: .875rem 1rem; border-radius: .75rem;
  border: 1px solid var(--border); background: #fff;
  font-size: .95rem; color: #111;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.form-control:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,120,48,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: .75rem;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: background .2s, transform .1s;
  font-family: inherit;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ---- FOOTER ---- */
footer {
  background: var(--primary); color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
footer h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .75rem; }
footer ul a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-btn:hover { background: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.45);
}
.footer-bottom a:hover { color: var(--accent); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--primary); padding: 7rem 0 4rem;
  color: #fff; text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-top: .75rem; }

/* ---- FILTERS ---- */
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .6rem 1.25rem; border-radius: 999px;
  border: 1px solid var(--border); background: #fff;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  color: var(--primary); transition: all .2s; font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.search-bar {
  display: flex; gap: .75rem; margin-bottom: 2rem; align-items: center;
}
.search-input {
  flex: 1; padding: .875rem 1.25rem; border-radius: .75rem;
  border: 1px solid var(--border); font-size: .95rem; font-family: inherit;
}
.search-input:focus { outline: none; border-color: var(--accent); }

/* ---- CONTACT INFO ---- */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem;
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: .75rem;
  background: rgba(192,120,48,.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { color: var(--accent); }
.contact-info-item strong { display: block; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.contact-info-item a, .contact-info-item span { color: var(--text-muted); font-size: .95rem; }
.contact-info-item a:hover { color: var(--accent); }

/* ---- MAP ---- */
.map-container { border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.1); }

/* ---- MENTIONS ---- */
.mentions-section { padding: 5rem 0; }
.mentions-block { margin-bottom: 2.5rem; }
.mentions-block h2 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: .75rem; }
.mentions-block p { color: var(--text-muted); line-height: 1.8; }

/* ---- AMODIATION BADGE ---- */
.stat-badge {
  position: absolute; bottom: -1.5rem; right: 2rem;
  background: #fff; border-radius: 1rem;
  padding: 1rem 1.5rem; display: flex; gap: 1rem;
  align-items: center; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}
.stat-badge-icon {
  width: 48px; height: 48px; border-radius: .75rem;
  background: rgba(192,120,48,.1); display: flex;
  align-items: center; justify-content: center;
}
.stat-badge strong { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; }
.stat-badge span { font-size: .8rem; color: var(--text-muted); }

/* ---- GRID HELPERS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .cards-grid { grid-template-columns: 1fr; }
}

/* ---- TOAST ---- */
#toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--primary); color: #fff; padding: 1rem 1.5rem;
  border-radius: .75rem; z-index: 999; opacity: 0;
  transform: translateY(1rem); transition: all .3s;
  max-width: 300px; pointer-events: none;
}
#toast.show { opacity: 1; transform: translateY(0); }
#toast.success { border-left: 4px solid #22c55e; }
#toast.error { border-left: 4px solid #ef4444; }
#toast strong { display: block; margin-bottom: .25rem; }

/* ---- ESTIMATION STEPS ---- */
.step-indicator { display: flex; gap: .5rem; margin-bottom: 2rem; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  background: var(--border); color: var(--text-muted);
  transition: all .3s;
}
.step-dot.active { background: var(--accent); color: #fff; }
.step-dot.done { background: var(--primary); color: #fff; }
.step-label { font-size: .75rem; text-align: center; margin-top: .25rem; color: var(--text-muted); }

/* ---- LOADING SKELETON ---- */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: .75rem; height: 380px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Accessibility */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
