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

:root {
  --accent: #00c4bc;
  --accent-dark: #009e97;
  --dark: #0a0e1a;
  --dark2: #141929;
  --text: #1a1a2e;
  --sub: #555;
  --border: #e5e7eb;
  --white: #fff;
  --light-bg: #f8f9fb;
  --radius: 10px;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar-phone {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: 99;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 11px; font-weight: 500; color: var(--text); }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; gap: 16px; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--text); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { position: relative; min-height: calc(100vh - 76px); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-fit: cover; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,14,26,.88) 45%, rgba(10,14,26,.6) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,196,188,.15);
  border: 1px solid rgba(0,196,188,.4);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-left h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-left h1 .accent { color: var(--accent); }
.hero-bullets { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 13px 24px; border-radius: 7px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  padding: 13px 24px; border-radius: 7px;
  font-weight: 600; font-size: 15px;
}
.btn-outline:hover { border-color: var(--white); }
.btn-outline-light {
  display: inline-flex; align-items: center;
  border: 2px solid var(--accent); color: var(--accent);
  padding: 13px 24px; border-radius: 7px;
  font-weight: 600; font-size: 15px;
}
.btn-outline-light:hover { background: var(--accent); color: var(--white); }
.btn-outline-light.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-service {
  display: inline-block;
  color: var(--accent); font-weight: 700; font-size: 14px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.btn-service:hover { color: var(--accent-dark); border-color: var(--accent-dark); }

/* ── HERO FORM CARD ── */
.hero-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-form-card h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.hero-form-card > p { font-size: 13px; color: var(--sub); margin-bottom: 20px; }
.hero-form-card form { display: flex; flex-direction: column; gap: 12px; }
.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
}
.hero-form-card input:focus,
.hero-form-card select:focus { outline: none; border-color: var(--accent); }
.hero-form-card button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
.hero-form-card button:hover { background: var(--accent-dark); }
.form-note { font-size: 12px; color: #999; text-align: center; margin-top: 10px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item { text-align: center; padding: 8px 40px; display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 20px; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 12px; color: var(--sub); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
#services { padding: 40px 0; }
.section-dark { background: var(--dark); }
.section-head { text-align: center; margin-bottom: 52px; }
.eyebrow-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.eyebrow-label--light { color: var(--accent); }
.section-head h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--text); line-height: 1.2; }
.section-dark .section-head h2 { color: var(--white); }
.section-sub { font-size: 16px; color: var(--sub); margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-img { height: 200px; }
.service-body { padding: 24px; }
.service-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-body p { font-size: 14px; color: var(--sub); line-height: 1.6; margin-bottom: 16px; }
.section-cta { text-align: center; }
.section-cta p { color: var(--sub); font-size: 15px; margin-bottom: 16px; }
.section-dark .section-cta p { color: rgba(255,255,255,.6); }

/* ── ABOUT SECTION ── */
.about-section { background: var(--light-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.about-left .eyebrow-label { margin-bottom: 12px; }
.about-left h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-bio {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-left .btn-primary { margin-top: 8px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat strong { font-size: 28px; font-weight: 800; color: var(--text); }
.about-stat span {
  font-size: 12px;
  color: var(--sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── WHY SECTION HEADING ── */
.why-section-heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 24px; }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── REVIEWS / FAQ / CONTACT padding overrides ── */
#reviews { padding: 40px 0; }
.faq-section { padding: 40px 0; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.review-card { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card blockquote { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer strong { font-size: 14px; font-weight: 600; color: var(--text); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-family: var(--font);
  font-size: 15px; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; color: var(--accent); }
.faq-a { display: none; padding: 0 0 20px 0; }
.faq-a p { font-size: 14px; color: var(--sub); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { content: '−'; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--dark); padding: 40px 0; }
.contact-top { text-align: center; margin-bottom: 40px; }
.contact-section h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.contact-top > p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.contact-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-form-row { display: grid; grid-template-columns: 340px 1fr; gap: 0; border-radius: 12px; overflow: hidden; }
.contact-info-panel {
  background: var(--accent); padding: 40px 32px;
}
.contact-info-panel h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-info-panel > p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; }
.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.contact-info-item a, .contact-info-item span { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.5; }
.contact-info-item a:hover { color: var(--white); }
.contact-form-panel { background: var(--white); padding: 40px 36px; }
.contact-form-panel h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.contact-form-panel form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: var(--white); resize: none;
}
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus { outline: none; border-color: var(--accent); }
.contact-form-panel button {
  background: var(--accent); color: var(--white);
  border: none; padding: 14px; border-radius: 7px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  cursor: pointer; width: 100%;
}
.contact-form-panel button:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
.footer { background: #06080f; padding: 18px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-tag { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-strip { gap: 0; }
  .trust-item { padding: 8px 16px; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
