/* =========================================================
   BLACK SWAN BSS v2.0 — main.css
   Mobile-first, fully responsive, CSS-variable driven.
   All colors/fonts overridden dynamically from PHP.
   ========================================================= */

/* ── CSS VARIABLES (defaults; overridden by PHP in <head>) ── */
:root {
  --red:     #8B0000;
  --red-lt:  #ab0000;
  --black:   #1a1a1a;
  --dark:    #2d2d2d;
  --gray:    #666666;
  --lgray:   #999999;
  --border:  #e0e0e0;
  --bg:      #ffffff;
  --bg2:     #f7f7f7;
  --bg3:     #f0f0f0;
  --ff:      'Montserrat', sans-serif;
  --ffs:     'Open Sans', sans-serif;
  --radius:  4px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --transition: .22s ease;
  --container: 1200px;
  --section-py: 80px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font-family: var(--ff); }
ul { list-style: none; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  width: 100%;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--black);
  color: #bbb;
  font-family: var(--ffs);
  font-size: 12.5px;
  padding: 7px clamp(16px,4vw,40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a, .topbar-item { color: #bbb; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-sep { color: #444; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px,4vw,40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  min-height: 64px;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img,
.site-logo { height: 52px; width: auto; padding: 6px 0; object-fit: contain; }
.custom-logo-link { display: flex; align-items: center; }
.navbar-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  padding: 14px 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-btn {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-btn:hover { background: transparent; color: var(--red); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right,rgba(0,0,0,.72),rgba(0,0,0,.18)),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80') center/cover no-repeat;
}
.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px,5vw,60px);
  padding-block: clamp(60px,10vh,100px);
  width: 100%;
}
.hero-left { flex: 1; min-width: 0; padding-top: 16px; }
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-family: var(--ffs);
  font-size: clamp(14px,2vw,16px);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form */
.hero-form-wrap { width: 360px; flex-shrink: 0; }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.form-card-head {
  background: var(--red);
  color: #fff;
  padding: 20px 26px;
  text-align: center;
}
.form-card-head h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.form-card-head p  { font-size: 12px; opacity: .85; font-family: var(--ffs); }
.form-card-body { padding: 22px 26px 26px; }

/* ── FORM FIELDS ──────────────────────────────────────────── */
.fg { margin-bottom: 13px; }
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.req { color: var(--red); }
.fg input, .fg select, .fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--bg2);
  color: var(--black);
  padding: 10px 12px;
  font-family: var(--ffs);
  font-size: 13.5px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,0,0,.08);
}
.fg textarea { resize: vertical; min-height: 78px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  margin-top: 4px;
}
.form-submit-btn:hover:not(:disabled) { background: var(--red-lt); transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-msg {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--ffs);
}
.form-msg--success { background: #edfbf3; border: 1px solid #5cb85c; color: #2d7a2d; }
.form-msg--error   { background: #fff0f0; border: 1px solid #e74c3c; color: #c0392b; }

#hero-form .fg { margin-bottom: 9px; }
#hero-form .fg input,
#hero-form .fg select,
#hero-form .fg textarea { padding: 8px 10px; font-size: 13px; }
#hero-form .form-policy-note { margin-bottom: 10px; padding: 8px 10px; font-size: 11.5px; }
#hero-form .form-submit-btn { padding: 11px; }

.hero-form-wrap .form-card-head { padding: 16px 22px; }
#hero-form .fg textarea { min-height: 52px; }
#hero-form .form-policy-note { line-height: 1.35; }


.form-policy-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(139,0,0,.18);
  border-left: 3px solid var(--red);
  background: #fff8f8;
  color: #4d4d4d;
  font-family: var(--ffs);
  font-size: 12px;
  line-height: 1.45;
  border-radius: var(--radius);
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-hero {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-hero:hover { background: transparent; color: #fff; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-wa:hover { opacity: .88; transform: translateY(-1px); }
.wa-icon { font-size: 18px; line-height: 1; }
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--red); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-outline--white { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline--white:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-white:hover { background: transparent; color: #fff; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.section-cta { text-align: center; margin-top: 40px; }

/* ── SECTION SHARED ───────────────────────────────────────── */
.sec-head { text-align: center; max-width: 660px; margin-inline: auto; margin-bottom: 50px; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-head h2,
.about-text h2,
.steps-left-col h2,
.testi-section__inner h2,
.why-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-head p { font-family: var(--ffs); font-size: 15px; color: var(--gray); line-height: 1.72; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section { background: #fff; padding-block: var(--section-py); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,72px);
  align-items: center;
}
.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 14px; }
.about-text h2 span { color: var(--red); }
.about-text > p { font-family: var(--ffs); font-size: 15px; line-height: 1.75; color: var(--gray); margin-bottom: 22px; }
.check-list { margin-bottom: 30px; }
.check-list li {
  font-family: var(--ffs);
  font-size: 14.5px;
  color: var(--dark);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--bg3);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -18px;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(139,0,0,.35);
}
.about-badge strong { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.about-badge span   { font-size: 11px; opacity: .9; letter-spacing: .06em; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section { background: var(--bg2); padding-block: var(--section-py); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-3px); }
.svc-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(139,0,0,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.svc-body h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.25; }
.svc-body p  { font-family: var(--ffs); font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.svc-link {
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--transition);
}
.svc-link:hover { gap: 10px; }

/* ── STEPS ────────────────────────────────────────────────── */
.steps-section { background: #fff; padding-block: var(--section-py); }
.steps-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px,6vw,72px);
  align-items: start;
}
.steps-left-col .section-tag { margin-bottom: 10px; }
.steps-left-col h2 { margin-bottom: 28px; }
.steps-left-col h2 span { color: var(--red); }
.steps-nav { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.step-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-left: 3px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 0 var(--radius) var(--radius) 0;
  outline: none;
}
.step-tab:hover, .step-tab.active {
  border-left-color: var(--red);
  background: rgba(139,0,0,.04);
}
.step-tab:focus-visible { box-shadow: inset 0 0 0 2px var(--red); }
.step-tab-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--gray);
  transition: all var(--transition);
}
.step-tab.active .step-tab-num { border-color: var(--red); color: var(--red); background: rgba(139,0,0,.08); }
.step-tab-text { font-size: 14px; font-weight: 600; color: var(--dark); transition: color var(--transition); }
.step-tab.active .step-tab-text { color: var(--red); }
.step-content-area { padding-top: 8px; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: bssFadeUp .3s ease; }
@keyframes bssFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
}
.step-panel h3 { font-size: 21px; font-weight: 800; color: var(--black); margin-bottom: 12px; }
.step-panel p  { font-family: var(--ffs); font-size: 15px; color: var(--gray); line-height: 1.75; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--black);
  padding-block: clamp(50px,8vh,72px);
  text-align: center;
}
.cta-band .container { max-width: 780px; }
.cta-band h2 {
  font-size: clamp(20px,3vw,36px);
  font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.25;
}
.cta-band p {
  font-family: var(--ffs); font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 540px; margin-inline: auto;
  margin-bottom: 32px; line-height: 1.7;
}
.cta-row { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── WHY CHOOSE ───────────────────────────────────────────── */
.why-section { background: var(--bg2); padding-block: var(--section-py); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px;
  background: rgba(139,0,0,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px;
}
.why-card h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.why-card p  { font-family: var(--ffs); font-size: 12.5px; color: var(--gray); line-height: 1.65; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-section { background: #fff; padding-block: var(--section-py); }
.testi-section__inner { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px,4vw,40px); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-card::before {
  content: '"';
  font-family: Georgia, serif; font-size: 72px;
  color: rgba(139,0,0,.1);
  position: absolute; top: 4px; right: 16px; line-height: 1;
  pointer-events: none;
}
.stars { color: var(--red); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card > p {
  font-family: var(--ffs); font-size: 13.5px; color: var(--gray);
  line-height: 1.72; margin-bottom: 20px; font-style: italic;
}
.testi-foot { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.tav-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tname { font-size: 14px; font-weight: 700; color: var(--black); }
.trole { font-size: 11.5px; color: var(--lgray); margin-top: 2px; font-family: var(--ffs); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { background: var(--bg2); padding-block: var(--section-py); }
.contact-section__head { margin-bottom: 36px; }
.contact-section__head h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--black); margin-top: 8px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(36px,5vw,64px);
  align-items: start;
}
.contact-info-col > p { font-family: var(--ffs); font-size: 14.5px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.ci-row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--red); color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ci-text strong {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px;
}
.ci-text span { font-family: var(--ffs); font-size: 13.5px; color: var(--dark); line-height: 1.55; }
.ci-text a { color: var(--dark); transition: color var(--transition); }
.ci-text a:hover { color: var(--red); }
.contact-form-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px,4vw,36px) clamp(20px,4vw,32px);
  box-shadow: var(--shadow);
}
.contact-form-col h3 { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.contact-form-col > p { font-family: var(--ffs); font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.contact-map iframe { width: 100%; height: 220px; border: 0; border-radius: var(--radius); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: #888;
  padding: 22px clamp(16px,4vw,40px);
}
.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12.5px; font-family: var(--ffs); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; font-family: var(--ffs); color: #888; transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: visible;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float-label {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float-label::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a1a1a;
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(139,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-animate="fade-right"] { transform: translateX(-20px); }
[data-animate="fade-left"]  { transform: translateX(20px); }
[data-animate].is-visible   { opacity: 1; transform: none; }

/* ── ELEMENTOR OVERRIDES ──────────────────────────────────── */
.elementor-page .site-footer,
.elementor-page .wa-float,
.elementor-page .back-to-top { display: flex; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (max 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; align-items: center; }
  .hero-left { padding-top: 0; text-align: center; }
  .hero-sub  { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-form-wrap { width: 100%; max-width: 500px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { margin-top: 48px; }
  .about-badge { left: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 640px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .topbar { justify-content: center; text-align: center; font-size: 11.5px; }
  .topbar-left { justify-content: center; gap: 10px; }
  .topbar-right { justify-content: center; gap: 8px; }

  .navbar { min-height: 56px; }
  .nav-btn { padding: 8px 16px; font-size: 11px; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-inner { padding-block: 48px 40px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-hero, .btn-wa { width: 100%; justify-content: center; }

  .form-row-2 { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .about-badge { position: static; display: inline-flex; gap: 8px; align-items: center; margin-top: 20px; padding: 12px 16px; }
  .about-badge strong { font-size: 24px; }

  .btn-group { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }

  .steps-inner { gap: 32px; }
  .step-tab { padding: 12px 14px; }
  .step-tab-text { font-size: 13px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .wa-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 80px; right: 20px; width: 40px; height: 40px; font-size: 14px; }

  .contact-form-col { padding: 22px 18px; }

  .testi-card::before { font-size: 52px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (max 380px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 24px; }
  .why-card, .svc-card { padding: 20px 16px; }
  .why-grid { gap: 12px; }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .topbar, .navbar, .wa-float, .back-to-top, .hero-form-wrap, .cta-band { display: none !important; }
  .hero { min-height: auto; padding: 32px 0; }
  * { box-shadow: none !important; }
}
