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

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #f97316;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --wa: #22c55e;
  --wa-dark: #16a34a;
  --emergency: #ef4444;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.10);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--dark-2);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ===== TYPOGRAPHY ===== */
.display { font-family: 'Bricolage Grotesque', sans-serif; }
.title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.subtitle { color: var(--muted); margin-bottom: 48px; font-size: .97rem; }
.text-center { text-align: center; }

/* ===== EMERGENCY CTA STRIP ===== */
.emergency-strip {
  background: var(--emergency);
  color: #fff;
  padding: 12px 0;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  z-index: 1001;
}
.emergency-strip a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
  white-space: nowrap;
}
.emergency-strip span { margin: 0 8px; opacity: .6; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img { width: 32px; height: 32px; }
.logo span { color: var(--dark); }

.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  padding: 8px 14px;
  color: var(--dark-2);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
}
.desktop-nav a:hover { background: var(--primary-light); color: var(--primary); }

.nav-cta {
  background: var(--wa);
  color: #fff !important;
  border-radius: 12px !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--wa-dark); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--dark);
}
.menu-btn svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 20px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark-2);
  border-radius: 10px;
  margin: 2px 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-menu .nav-cta { background: var(--wa); color: #fff !important; margin-top: 6px; text-align: center; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
  padding: 80px 0 72px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero p { color: #475569; line-height: 1.8; margin-bottom: 28px; font-size: .97rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(34,197,94,.28);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(34,197,94,.36); }
.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-outline:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(2,132,199,.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  background: #dbeafe;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-badge-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.hero-badge-pill img { width: 18px; height: 18px; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--muted); font-size: .86rem; font-weight: 600; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img { width: 32px; height: 32px; }
.service-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--dark); }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; flex: 1; }
.service-price {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: .82rem;
  padding: 5px 12px;
  border-radius: 8px;
}

/* ===== PRICING ===== */
.pricing-table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--primary);
  color: #fff;
  padding: 18px 22px;
  text-align: left;
  font-size: .9rem;
  font-weight: 700;
}
.pricing-table td { padding: 16px 22px; font-size: .92rem; border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: #f8fafc; }
.pricing-table .note { color: var(--muted); font-size: .8rem; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #38bdf8 100%);
  padding: 44px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 48px rgba(2,132,199,.28);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.promo-banner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.promo-banner p { opacity: .9; margin-bottom: 22px; }

/* ===== AREA ===== */
.area-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.area-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.area-card:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ===== PARTNERS / CUSTOMERS ===== */
.partners-section { background: var(--dark); padding: 52px 0; overflow: hidden; }
.partners-title { color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-bottom: 32px; }
.partners-track-wrap { overflow: hidden; }
.partners-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-partners 18s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px 24px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.partner-logo:hover { background: rgba(255,255,255,.12); }
.partner-logo img { width: 24px; height: 24px; opacity: .7; filter: brightness(10); }
.partner-logo span { color: rgba(255,255,255,.7); font-weight: 700; font-size: .85rem; }
@keyframes scroll-partners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== GOOGLE REVIEWS ===== */
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: gap; gap: 16px; }
.review-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.review-score {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.review-meta { font-size: .8rem; color: var(--muted); }
.g-logo { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--muted); }
.g-logo img { width: 20px; height: 20px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-date { font-size: .76rem; color: var(--muted); }
.review-stars { color: #fbbf24; font-size: .9rem; }
.review-text { color: #475569; font-size: .87rem; line-height: 1.7; flex: 1; }
.review-source { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--muted); }
.review-source img { width: 14px; }

/* ===== BOOKING FORM ===== */
.booking-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 88px 0;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.booking-info h2 { margin-bottom: 16px; }
.booking-info p { color: var(--muted); margin-bottom: 24px; line-height: 1.8; }
.booking-perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark-2);
}
.perk-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 18px; height: 18px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.booking-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: .82rem; font-weight: 700; color: var(--dark-2); }
input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: .9rem;
  color: var(--dark-2);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(2,132,199,.1); }
textarea { resize: vertical; min-height: 80px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

/* ===== TESTIMONIALS ===== */
.testi-slider { position: relative; overflow: hidden; border-radius: var(--radius); }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-slide {
  min-width: 100%;
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testi-quote { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.testi-text { font-size: 1rem; line-height: 1.8; color: #475569; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
}
.testi-name { font-weight: 700; font-size: .92rem; }
.testi-loc { font-size: .78rem; color: var(--muted); }
.testi-controls { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 0 32px;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-logo { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.foot-logo img { width: 28px; height: 28px; filter: brightness(10); }
.foot-desc { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.8; margin-bottom: 20px; }
.foot-contacts { display: flex; flex-direction: column; gap: 8px; }
.foot-contact-item { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: rgba(255,255,255,.7); }
.foot-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; color: var(--primary); }
.foot-col h4 { font-weight: 700; font-size: .9rem; margin-bottom: 16px; color: rgba(255,255,255,.9); }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col ul a { color: rgba(255,255,255,.55); font-size: .86rem; transition: var(--transition); }
.foot-col ul a:hover { color: #fff; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); }
.social-btn svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ===== FLOAT WA ===== */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: var(--wa);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 8px 28px rgba(34,197,94,.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: pulse-wa 2.4s infinite;
}
.float-wa:hover { transform: scale(1.06); box-shadow: 0 12px 36px rgba(34,197,94,.5); }
.float-wa svg { width: 20px; height: 20px; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 8px 28px rgba(34,197,94,.4); }
  50% { box-shadow: 0 8px 40px rgba(34,197,94,.7); }
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 0 40px; gap: 32px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-img-wrap { max-height: 280px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .title { font-size: 1.7rem; }
  .desktop-nav { display: none; }
  .menu-btn { display: flex; }
  .stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .booking-form { padding: 24px; }
  .promo-banner { padding: 28px 20px; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.9rem; }
  .stat-num { font-size: 2rem; }
}
