/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1f2d;
  --navy2:     #152535;
  --teal:      #2dc78a;
  --teal-dark: #23a874;
  --teal-bg:   #e8f9f2;
  --white:     #ffffff;
  --off:       #f7f8fa;
  --border:    #e8eaed;
  --text:      #1a2332;
  --muted:     #5a6a7a;
  --light:     #8a9aaa;
  --radius:    14px;
  --shadow:    0 2px 16px rgba(13,31,45,.07);
  --shadow-md: 0 6px 32px rgba(13,31,45,.1);
  --ease:      0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }
img { max-width: 100%; display: block; }
p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  overflow: hidden;
}
.logo-img {
  width: 32px; height: 32px;
  border-radius: 6px; flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--white); }

.nav-book-btn {
  background: transparent !important;
  color: var(--teal) !important;
  border: 2px solid var(--teal) !important;
  padding: 7px 16px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background var(--ease), color var(--ease) !important;
  white-space: nowrap;
}
.nav-book-btn:hover {
  background: var(--teal) !important;
  color: #0d1f2d !important;
}

.logo-tagline {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.45);
  letter-spacing: .04em; white-space: nowrap;
  display: none;
}
@media (min-width: 900px) { .logo-tagline { display: block; } }
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; display: block; }
.mobile-menu { display: none; flex-direction: column; background: var(--navy); padding: 8px 28px 20px; border-top: 1px solid rgba(255,255,255,.06); }
.mobile-menu a { color: rgba(255,255,255,.8); padding: 12px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 14px rgba(45,199,138,.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,199,138,.45);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,31,45,.55) 0%,
    rgba(13,31,45,.62) 50%,
    rgba(13,31,45,.72) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; padding: 120px 28px 80px;
  animation: fadeUp .85s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: rgba(255,255,255,.82);
  max-width: 680px; margin: 0 auto 2rem;
  line-height: 1.6; font-weight: 500;
}

.btn-hero {
  font-size: 19px !important;
  padding: 16px 38px !important;
}

/* ===== SHARED SECTION ===== */
section { padding: 44px 0; }
h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -.02em; margin-bottom: .75rem;
  text-align: center;
}
.section-sub {
  text-align: center; color: var(--muted);
  font-size: 1rem; max-width: 560px;
  margin: 0 auto 3rem; line-height: 1.7;
}

/* ===== ABOUT ===== */
.section-about { background: var(--white); }

.about-bullets {
  list-style: none; max-width: 640px; margin: 0 auto 3rem;
}
.about-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 1rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.about-bullets li:last-child { border-bottom: none; }
.about-bullets li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.tel-link { color: var(--teal); font-weight: 600; }
.tel-link:hover { text-decoration: underline; }

/* 3-col cards */
.cards-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: .5rem; line-height: 1.35;
}
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ===== SERVICE ===== */
.section-service { background: var(--off); }

/* ===== TESTIMONIALS ===== */
.section-testimonials { background: var(--white); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tcard-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.tcard-img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--teal);
}
.tcard-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--teal);
  font-size: 1.2rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: .95rem; color: var(--text); margin: 0; }
.tcard-loc  { font-size: 12px; color: var(--muted); margin: 2px 0 4px; }
.tcard-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.tcard-vehicle {
  display: inline-block;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: var(--teal);
  background: var(--teal-bg); padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px;
}
.tcard-text { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.tcard-text strong { color: var(--text); }

/* ===== CONTACT ===== */
.section-contact { background: var(--off); }

.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start;
}

.form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 1.4rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 5px;
}
.req { color: var(--teal); }
.form-group input {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--ease);
}
.form-group input:focus { border-color: var(--teal); }

.fault-toggle { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.fault-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.fault-opt input[type="radio"] { width: 17px; height: 17px; accent-color: var(--teal); flex-shrink: 0; }
.fault-opt span { font-size: 14px; color: var(--text); }

.fault-warning {
  padding: 11px 14px; background: #fffbeb;
  border: 1px solid #fbbf24; border-radius: 8px;
  font-size: 13px; color: #92400e; margin-bottom: 14px;
}
.submit-btn { width: 100%; border-radius: 9px; margin-top: 4px; font-size: 15px; padding: 13px; }
.form-success {
  margin-top: 12px; padding: 13px 16px;
  background: #ecfdf5; border: 1px solid #6ee7b7;
  border-radius: 8px; color: #065f46; font-size: 14px;
}
.form-error {
  margin-top: 12px; padding: 13px 16px;
  background: #fef2f2; border: 1px solid #fca5a5;
  border-radius: 8px; color: #991b1b; font-size: 14px;
}
.form-error a { color: #991b1b; font-weight: 600; text-decoration: underline; }

/* Contact info column */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 18px 24px; border-radius: 12px;
  background: #25d366; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 4px; letter-spacing: -.01em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp svg { width: 26px; height: 26px; flex-shrink: 0; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }

.info-phone, .info-email {
  display: block; font-size: 1rem; font-weight: 600;
  color: var(--teal); margin-bottom: 10px;
  transition: color var(--ease);
}
.info-phone:hover, .info-email:hover { color: var(--teal-dark); }
.info-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.cal-label { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.cal-btn { width: 100%; text-align: center; border-radius: 9px; font-size: 14px; padding: 11px 20px; }
.cal-hint { font-size: 11px; color: var(--light); margin-top: 8px; text-align: center; }
.cal-hint code { background: var(--off); padding: 1px 4px; border-radius: 3px; font-size: 10px; }

.hours-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow);
}
.hours-card h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.hours-card p { font-size: 13px; color: var(--muted); margin-bottom: 4px; }

/* ===== FOOTER ===== */
.footer-logo-img {
  width: 56px; height: 56px;
  border-radius: 12px; flex-shrink: 0;
  object-fit: cover; display: block;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}
.footer-logo { color: var(--white); }
.footer-tag { font-size: 12px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); margin: 0; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 22px; }
  .hero-content h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .cards-3 { grid-template-columns: 1fr; }
}
