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

:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --accent:  #c8f135;
  --gray-100:#f4f4f4;
  --gray-600:#666;
  --radius:  6px;
  --max-w:   1100px;
  --nav-h:   64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-accent  { background: var(--accent); color: var(--black); }
.btn-outline  { border-color: var(--white); color: var(--white); background: transparent; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(10px);
  height: var(--nav-h);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-weight: 900; font-size: 17px; letter-spacing: 0.08em; color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.hamburger { display: none; background: none; border: none; font-size: 26px; color: var(--white); cursor: pointer; line-height: 1; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 12px 24px 20px;
}
.mobile-menu a { color: var(--white); padding: 12px 0; font-size: 15px; border-bottom: 1px solid #222; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  color: var(--white);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}
.hero-content h1 {
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hero-location {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about { background: var(--black); color: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a1a;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--accent);
}
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.about-text .btn { margin-top: 16px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--gray-100); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.google-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.google-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); }
.google-score  { font-size: 56px; font-weight: 900; line-height: 1; }
.stars         { font-size: 28px; color: #fbbc04; letter-spacing: 2px; }
.review-count  { font-size: 13px; color: var(--gray-600); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #e5e5e5;
}
.stars-sm { color: #fbbc04; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p   { font-size: 14px; color: #444; font-style: italic; margin-bottom: 12px; line-height: 1.6; }
.reviewer        { font-size: 13px; font-weight: 700; color: var(--black); }
.reviews-cta     { text-align: center; }

/* ===== TRANSFORMATIONS ===== */
.transformations { background: var(--black); color: var(--white); }
.transformations h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: 0.05em; margin-bottom: 36px; text-align: center; }

.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 900px;
  margin: 0 auto;
}
.slider {
  display: flex;
  transition: transform 0.4s ease;
}
.slide {
  min-width: 100%;
  aspect-ratio: 4/3;
  background: #111;
  overflow: hidden;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn:hover { background: var(--accent); color: var(--black); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--accent); }

.transformations-cta { text-align: center; margin-top: 40px; }

/* ===== LOCATION ===== */
.location { background: var(--white); }
.location h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 8px; }
.location-address { color: var(--gray-600); margin-bottom: 28px; font-size: 15px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.location-cta { }

/* ===== FAQ ===== */
.faq { background: var(--gray-100); }
.faq h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 36px; }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: var(--black);
}
.faq-icon { font-size: 22px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-cta { margin-top: 40px; }

/* ===== CONTACT ===== */
.contact { background: var(--black); color: var(--white); text-align: center; }
.contact h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
.contact-intro { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.contact-options { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s, transform 0.15s;
}
.contact-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.whatsapp-btn { background: #25D366; color: var(--white); }
.call-btn     { background: var(--accent); color: var(--black); }
.contact-btn-icon { font-size: 20px; }

/* ===== GET STARTED FORM ===== */
.get-started { background: var(--gray-100); }
.get-started h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 32px; }
.gs-form { max-width: 600px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.gs-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.gs-form input:focus { outline: none; border-color: var(--black); }
.gs-form .btn { margin-top: 8px; }
.form-msg { margin-top: 10px; font-size: 14px; color: green; }

/* ===== MAIL LIST ===== */
.mail-list { background: var(--black); color: var(--white); }
.mail-list-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.mail-list h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; margin-bottom: 8px; }
.mail-list p  { color: rgba(255,255,255,0.65); font-size: 14px; }
.mail-form { display: flex; flex-direction: column; gap: 12px; }
.mail-form input {
  padding: 13px 16px;
  border: 1.5px solid #333;
  border-radius: var(--radius);
  background: #111;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
}
.mail-form input:focus { outline: none; border-color: var(--accent); }
.unsub { color: rgba(255,255,255,0.35); font-size: 12px; margin-top: 6px; }

/* ===== FOOTER ===== */
.footer { background: #050505; color: rgba(255,255,255,0.4); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer .logo { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer p { font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { aspect-ratio: 16/9; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .mail-list-inner{ grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .nav-links   { display: none; }
  .hamburger   { display: block; }
  .section     { padding: 60px 0; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .contact-options { flex-direction: column; align-items: center; }
}
