/* ============================================================
   SOFI HALI YIKAMA — Main Stylesheet
   ============================================================ */

/* 1. Design Tokens
   ============================================================ */
:root {
  --navy:        #0C1F38;
  --navy-mid:    #163356;
  --navy-light:  #1E4080;
  --amber:       #D97706;
  --amber-dk:    #B45309;
  --amber-lt:    #F59E0B;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --green:       #059669;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --sh:    0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --sh-md: 0 8px 24px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.04);
  --sh-lg: 0 16px 48px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
  --sh-xl: 0 24px 64px rgba(0,0,0,.16);

  --ease: 250ms ease;
  --ease-slow: 400ms ease;

  --max-w: 1200px;
  --pad: clamp(1rem, 5vw, 2rem);
  --hh: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hh);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* 3. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section      { padding: 96px 0; }
.section--soft{ background: var(--gray-50); }
.section--dark{ background: var(--navy); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(217,119,6,.10);
  border: 1px solid rgba(217,119,6,.22);
  border-radius: var(--r-full);
  color: var(--amber);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section--dark .section-tag {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.25);
  color: var(--amber-lt);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section--dark .section-title { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.section--dark .section-desc { color: rgba(255,255,255,.60); }

/* 4. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
}
.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,.38);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,31,56,.30);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.10);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #20BA57;
  border-color: #20BA57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
}

.btn--ghost {
  padding: 0;
  border: none;
  background: none;
  color: var(--amber);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 0;
}
.btn--ghost svg { transition: transform var(--ease); }
.btn--ghost:hover { gap: 8px; }
.btn--ghost:hover svg { transform: translateX(3px); }

/* 5. Header
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.logo-mark img { width: 42px; height: 42px; object-fit: contain; display: block; }
.logo-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--ease);
}
.logo-text span {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color var(--ease);
}
.header.is-scrolled .logo-text strong { color: var(--navy); }
.header.is-scrolled .logo-text span   { color: var(--gray-500); }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.nav__link:hover              { color: var(--white); background: rgba(255,255,255,.10); }
.nav__link.is-active          { color: var(--amber-lt); font-weight: 700; }
.header.is-scrolled .nav__link{ color: var(--gray-700); }
.header.is-scrolled .nav__link:hover  { color: var(--navy); background: var(--gray-100); }
.header.is-scrolled .nav__link.is-active { color: var(--amber); }

.header__cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.10); }
.header.is-scrolled .hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: background var(--ease);
}
.header.is-scrolled .hamburger span { background: var(--navy); }

/* 6. Mobile Menu
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.10);
  border-radius: var(--r);
  color: var(--white);
  font-size: 1.3rem;
  transition: background var(--ease);
}
.mobile-menu__close:hover { background: rgba(255,255,255,.18); }

.mobile-menu__link {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  padding: 12px 32px;
  border-radius: var(--r);
  transition: all var(--ease);
}
.mobile-menu__link:hover { color: var(--amber-lt); background: rgba(255,255,255,.06); }

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  width: 280px;
}

/* 7. Hero
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--hh);
  overflow: hidden;
}

.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 90% 50%, rgba(217,119,6,.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(30,64,128,.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 55% at 65% 10%, rgba(22,51,86,.55) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(217,119,6,.12);
  border: 1px solid rgba(217,119,6,.26);
  border-radius: var(--r-full);
  color: #FCD34D;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__loc svg { color: var(--amber-lt); flex-shrink: 0; }

.hero__h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--amber-lt);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.48);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero card (desktop right) */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero__card-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__card-icon {
  width: 46px; height: 46px;
  background: rgba(217,119,6,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-lt);
  flex-shrink: 0;
}
.hero__card-icon svg { width: 22px; height: 22px; }
.hero__card-head h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.hero__card-head p {
  font-size: .72rem;
  color: rgba(255,255,255,.48);
  margin-top: 2px;
}
.hero__card-body { padding: 20px 24px; }
.hero__svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r);
  transition: background var(--ease);
}
.hero__svc-item:hover { background: rgba(255,255,255,.06); }
.hero__svc-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__svc-item span {
  font-size: .875rem;
  color: rgba(255,255,255,.80);
  font-weight: 500;
}
.hero__card-foot {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(217,119,6,.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__card-foot svg { color: var(--amber-lt); flex-shrink: 0; }
.hero__card-foot strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
}
.hero__card-foot span {
  font-size: .75rem;
  color: rgba(255,255,255,.50);
}

/* 8. Trust Strip
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--r);
  transition: background var(--ease);
}
.trust-item:hover { background: var(--gray-50); }
.trust-item__icon {
  width: 48px; height: 48px;
  background: rgba(12,31,56,.06);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all var(--ease);
}
.trust-item:hover .trust-item__icon {
  background: rgba(217,119,6,.10);
  color: var(--amber);
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: .75rem;
  color: var(--gray-500);
}

/* 9. About
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; }
.about__img {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Replace with: background-image: url('assets/images/about.jpg'); background-size: cover; background-position: center; */
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .28;
  color: var(--white);
}
.img-placeholder svg  { width: 72px; height: 72px; }
.img-placeholder span { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }

.about__badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--sh-xl);
}
.about__badge strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.about__badge span {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .9;
}

.about__text {
  font-size: .975rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 28px;
}
.about__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.about__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: all var(--ease);
}
.about__point:hover {
  border-color: rgba(217,119,6,.28);
  box-shadow: var(--sh);
}
.about__point-icon {
  width: 42px; height: 42px;
  background: rgba(217,119,6,.10);
  color: var(--amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__point-icon svg { width: 20px; height: 20px; }
.about__point strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.about__point span { font-size: .85rem; color: var(--gray-500); }

/* 10. Services
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}
.svc-card:hover {
  border-color: var(--amber);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.svc-card__thumb {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Replace: background-image: url('assets/images/service-X.jpg'); background-size: cover; */
}
.svc-card__thumb--carpet   { background: linear-gradient(135deg,#0C1F38,#1E4080); }
.svc-card__thumb--handwoven{ background: linear-gradient(135deg,#134E4A,#0D9488); }
.svc-card__thumb--bedding  { background: linear-gradient(135deg,#1e1b4b,#4338ca); }
.svc-card__thumb--sofa     { background: linear-gradient(135deg,#422006,#92400E); }

.svc-card__label {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.svc-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card__desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}
.svc-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.svc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray-700);
}
.check {
  width: 18px; height: 18px;
  background: rgba(217,119,6,.12);
  color: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check svg { width: 10px; height: 10px; }

/* 11. Process
   ============================================================ */
.process-wrap {
  position: relative;
}
.process-line {
  position: absolute;
  top: 35px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, rgba(217,119,6,.5), rgba(255,255,255,.12));
  z-index: 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.proc-step { text-align: center; }
.proc-step__num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  font-weight: 900;
  color: rgba(255,255,255,.55);
  transition: all var(--ease);
}
.proc-step:hover .proc-step__num {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(217,119,6,.18);
}
.proc-step h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.proc-step p {
  font-size: .78rem;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
}

/* 12. Why Us
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
  width: 54px; height: 54px;
  border-radius: var(--r);
  background: rgba(12,31,56,.06);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all var(--ease);
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card:hover .why-card__icon {
  background: rgba(217,119,6,.10);
  color: var(--amber);
}
.why-card h3 {
  font-size: .975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* 13. Gallery Slider
   ============================================================ */
.gallery-slider {
  position: relative;
  user-select: none;
}
.gallery-slider__viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.gallery-slider__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-slider__slide {
  min-width: 100%;
  aspect-ratio: 16/9;
}
.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh);
  transition: all var(--ease);
  z-index: 2;
}
.gallery-slider__btn--prev { left: 14px; }
.gallery-slider__btn--next { right: 14px; }
.gallery-slider__btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.gallery-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.gallery-slider__dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.gallery-slider__dot.is-active {
  width: 28px;
  background: var(--amber);
}

/* 14. Testimonials
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--ease);
}
.testi-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #FCD34D;
}
.testi-card__stars svg { width: 16px; height: 16px; }
.testi-card__quote {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}
.testi-card__quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 0;
  font-size: 2.8rem;
  color: rgba(217,119,6,.35);
  font-style: normal;
  line-height: 1;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dk));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: .875rem; font-weight: 700; color: var(--white); }
.testi-card__author span  { font-size: .75rem; color: rgba(255,255,255,.48); }

/* 15. FAQ
   ============================================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item.is-open {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217,119,6,.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .975rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
  cursor: pointer;
}
.faq-item.is-open .faq-q { color: var(--amber); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform var(--ease); }
.faq-item.is-open .faq-icon { background: var(--amber); color: var(--white); }
.faq-item.is-open .faq-icon svg { transform: rotate(180deg); }
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height var(--ease-slow);
}
.faq-a__inner {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.85;
}

/* 16. Contact
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact__left {}
.contact__headline {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact__subtext {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}
.contact__cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--ease);
}
.contact-card:hover { border-color: rgba(217,119,6,.3); box-shadow: var(--sh); }
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: rgba(12,31,56,.06);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  font-size: .9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
  display: block;
}
.contact-card p a { display: inline; }
.contact-card a:hover { color: var(--amber); }
.contact__ctas { display: flex; flex-direction: column; gap: 10px; }
.contact__map {
  margin-top: 20px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--gray-400);
  /* Replace with Google Maps iframe embed */
}
.contact__map svg { width: 28px; height: 28px; }
.contact__map span { font-size: .8rem; font-weight: 500; }

.contact__form-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.form-box__title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-box__sub   { font-size: .875rem; color: var(--gray-500); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-req { color: var(--amber); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: .975rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: all var(--ease);
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,31,56,.08);
}
.form-textarea  { resize: vertical; min-height: 110px; line-height: 1.65; }
.form-input.is-error,
.form-select.is-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  margin-top: 6px;
  transition: all var(--ease);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,.32);
}
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-submit.is-success { background: var(--green); }

/* 17. Footer
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.60); padding-top: 80px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-desc {
  font-size: .875rem;
  line-height: 1.8;
  margin: 16px 0 22px;
  max-width: 300px;
}
.footer__socials { display: flex; gap: 8px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.60);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--ease);
  cursor: pointer;
}
.soc-btn:hover { background: var(--amber); color: var(--white); transform: translateY(-2px); }

.footer__col h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--amber-lt); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__hours li:last-child { border: none; }
.footer__hours li strong { color: rgba(255,255,255,.80); }
.footer__hours .closed { color: #F87171; }
.footer__phones { margin-top: 18px; display: flex; flex-direction: column; gap: 5px; }
.footer__phones a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__phones a:first-child { color: var(--amber-lt); font-weight: 700; }
.footer__phones a:hover { color: var(--amber-lt); }

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--ease);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.70); }

/* 18. Floating
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.48);
  transition: all var(--ease);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,.58); }
.float-wa svg { width: 26px; height: 26px; }

.float-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: var(--sh-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--ease);
}
.float-top.is-visible { opacity: 1; pointer-events: auto; }
.float-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); }
.float-top svg { width: 18px; height: 18px; }

/* 19. Toast
   ============================================================ */
.toast {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: var(--sh-xl);
  border-left: 4px solid var(--green);
  max-width: 360px;
  transform: translateX(calc(100% + 30px));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.toast.is-visible { transform: translateX(0); }
.toast__ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(5,150,105,.12);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast__ic svg { width: 16px; height: 16px; }
.toast strong { display: block; font-size: .875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.toast span   { font-size: .78rem; color: var(--gray-500); }

/* 20. Reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { transition-delay: .10s; }
[data-reveal-delay="150"] { transition-delay: .15s; }
[data-reveal-delay="200"] { transition-delay: .20s; }
[data-reveal-delay="300"] { transition-delay: .30s; }
[data-reveal-delay="400"] { transition-delay: .40s; }
[data-reveal-delay="500"] { transition-delay: .50s; }

/* 21. Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding: 64px 0; }
  .hero__card  { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { display: none; }
  .process__grid { grid-template-columns: repeat(3, 1fr); }
  .process-line  { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: 1fr; }
  .gallery-slider__btn { width: 40px; height: 40px; }
  .testi-grid     { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .contact__form-box { padding: 24px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .contact__inner { gap: 28px; }
}

@media (max-width: 480px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .gallery-slider__btn { width: 36px; height: 36px; }
  .gallery-slider__btn--prev { left: 8px; }
  .gallery-slider__btn--next { right: 8px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }
}
