/* ================================================================
   WilArts WordPress Theme — main.css
   Color Palette:
     --orange:  #f97316
     --amber:   #f59e0b
     --brown:   #3d2510
     --cream:   #fdf8f4
     --muted:   #8b6b54
     --white:   #ffffff
================================================================ */

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

:root {
  --orange:  #f97316;
  --amber:   #f59e0b;
  --brown:   #3d2510;
  --cream:   #fdf8f4;
  --muted:   #8b6b54;
  --white:   #ffffff;
  --grad:    linear-gradient(135deg, var(--orange), var(--amber));
  --shadow:  0 4px 24px rgba(249,115,22,.15);
  --radius:  16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Utility ── */
.wa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wa-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.3); }
.wa-btn-primary   { background: var(--grad); color: var(--white); }
.wa-btn-white     { background: var(--white); color: var(--orange); }
.wa-btn-outline   { background: transparent; color: var(--orange); border: 2px solid rgba(249,115,22,.35); }
.wa-btn-outline:hover { background: rgba(249,115,22,.06); border-color: rgba(249,115,22,.6); box-shadow: none; }
.wa-btn-outline-white { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.wa-btn-sm        { padding: 7px 16px; font-size: 12px; border-radius: 8px; }
.wa-btn-full      { width: 100%; }

/* ── Top Bar ── */
.wa-topbar {
  background: var(--grad);
  color: var(--white);
  padding: 8px 24px;
  display: none;
}
@media (min-width: 768px) { .wa-topbar { display: block; } }

.wa-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-topbar-brand { display: flex; flex-direction: column; }
.wa-topbar-headline { font-weight: 700; font-size: 13px; }
.wa-topbar-sub      { font-size: 11px; color: rgba(255,255,255,.75); }

.wa-topbar-contact { display: flex; gap: 24px; }
.wa-topbar-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--white);
  transition: color .2s;
}
.wa-topbar-link:hover { color: rgba(255,255,255,.75); }

/* ── Navbar ── */
.wa-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,248,244,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,.1);
  transition: box-shadow .3s;
}
.wa-navbar--scrolled { box-shadow: 0 4px 24px rgba(61,37,16,.08); }

.wa-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.wa-logo { display: flex; align-items: center; }
.wa-logo-img { height: 44px; width: auto; }

.wa-nav { display: none; gap: 4px; }
@media (min-width: 768px) {
  .wa-nav { display: flex; }
}
.wa-nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  transition: background .2s, color .2s;
}
.wa-nav-link:hover, .wa-nav-link.active {
  background: rgba(249,115,22,.08);
  color: var(--orange);
}

.wa-nav-cta { display: none; }
@media (min-width: 768px) { .wa-nav-cta { display: inline-flex; } }

.wa-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .wa-hamburger { display: none; } }
.wa-hamburger span {
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}
.wa-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wa-hamburger--open span:nth-child(2) { opacity: 0; }
.wa-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.wa-nav--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--cream);
  padding: 16px;
  border-bottom: 1px solid rgba(249,115,22,.1);
  gap: 4px;
}

/* ── Section Base ── */
.wa-section { padding: 80px 0; }
.wa-section-white { background: var(--white); }
.wa-section-cream { background: var(--cream); }

.wa-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.wa-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
}

.wa-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

.wa-section-title {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.wa-section-desc {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.wa-section-cta { text-align: center; margin-top: 40px; }
.wa-section-cta p { color: var(--muted); margin-bottom: 16px; }

/* ── Badge ── */
.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.wa-badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.wa-badge-pill {
  background: var(--grad);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ── Alert ── */
.wa-alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 15px; }
.wa-alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.wa-alert-error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #b91c1c; }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.wa-hero {
  background: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle orange glow blobs */
.wa-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.wa-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%);
  pointer-events: none;
}

.wa-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
  position: relative;
}
@media (min-width: 960px) {
  .wa-hero-inner { grid-template-columns: 1fr 1fr; }
}

.wa-hero-title {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}
.wa-hero-title .wa-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wa-hero-sub  { font-size: 20px; font-weight: 500; color: rgba(61,37,16,.7); margin-bottom: 4px; }
.wa-hero-sub2 { font-size: 16px; font-weight: 400; color: var(--muted); }

.wa-hero-desc { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 16px 0 28px; max-width: 480px; }

.wa-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.wa-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wa-stat { text-align: center; }
.wa-stat-value { display: block; font-size: 26px; font-weight: 800; color: var(--brown); }
.wa-stat-label { font-size: 12px; color: var(--muted); }
.wa-stat-divider { width: 1px; height: 40px; background: rgba(61,37,16,.15); }

/* Hero Image */
.wa-hero-image { position: relative; }

.wa-hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(61,37,16,.25);
  background: var(--cream);
}

.wa-hero-main-img { width: 100%; height: 480px; object-fit: cover; display: block; }

.wa-hero-rating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  z-index: 10;
}

.wa-hero-thumbnails {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-thumbnail {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.wa-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.wa-hero-img-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(61,37,16,.75), transparent);
}
.wa-hero-img-info-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}
.wa-hero-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wa-hero-info-title { font-size: 13px; font-weight: 700; color: var(--brown); }
.wa-technique-icons { display: flex; gap: 6px; }
.wa-technique-icons span {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* Hero badge row — below image, no negative positioning (Firefox safe) */
.wa-hero-badge-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.wa-hero-badge-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(61,37,16,.1);
  border: 1px solid rgba(249,115,22,.12);
}
.wa-hero-badge-icon { font-size: 18px; flex-shrink: 0; }
.wa-hero-badge-title { font-size: 12px; font-weight: 700; color: var(--brown); line-height: 1; }
.wa-hero-badge-sub   { font-size: 10px; color: var(--muted); line-height: 1; margin-top: 3px; }

.wa-scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  animation: bounce .8s ease-in-out infinite alternate;
}
@keyframes bounce { to { transform: translateX(-50%) translateY(6px); } }

/* Float animation */
.wa-float { animation: float 3s ease-in-out infinite alternate; }
.wa-float-slow { animation: float 4s ease-in-out infinite alternate-reverse; }
@keyframes float { to { transform: translateY(-8px); } }

/* ────────────────────────────────────────
   GRADIENT & BG UTILITIES
──────────────────────────────────────── */
.wa-bg-orange { background: #fff7ed; border-color: rgba(249,115,22,.18); }
.wa-bg-amber  { background: #fffbeb; border-color: rgba(245,158,11,.18); }

.wa-grad-orange-amber  { background: linear-gradient(135deg, #f97316, #f59e0b); }
.wa-grad-amber-orange  { background: linear-gradient(135deg, #f59e0b, #f97316); }
.wa-grad-orange-red    { background: linear-gradient(135deg, #f97316, #ef4444); }
.wa-grad-amber-orange2 { background: linear-gradient(135deg, #fbbf24, #f97316); }
.wa-grad-amber-orange3 { background: linear-gradient(135deg, #f59e0b, #ea580c); }

/* ────────────────────────────────────────
   SERVICES
──────────────────────────────────────── */
.wa-services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 640px)  { .wa-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wa-services-grid { grid-template-columns: repeat(3, 1fr); } }

.wa-service-card {
  border: 1px solid rgba(249,115,22,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.wa-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249,115,22,.15);
}

.wa-service-icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(249,115,22,.3);
  transition: transform .3s;
}
.wa-service-card:hover .wa-service-icon-box { transform: scale(1.1); }

.wa-service-tag {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.wa-service-title { font-size: 17px; font-weight: 700; color: var(--brown); margin-bottom: 10px; }
.wa-service-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.wa-service-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wa-service-feature  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brown); font-weight: 500; }
.wa-feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ────────────────────────────────────────
   PRODUCTS
──────────────────────────────────────── */
.wa-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.wa-product-card {
  background: var(--white);
  border: 1px solid rgba(249,115,22,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.wa-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(249,115,22,.18); }

.wa-product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #fff7ed; }
.wa-product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.wa-product-card:hover .wa-product-img { transform: scale(1.1); }

.wa-product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* Gradient overlay — always visible at base opacity, full on hover */
.wa-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,37,16,.72) 0%, transparent 55%);
  opacity: .5;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.wa-product-card:hover .wa-product-overlay { opacity: 1; }

.wa-product-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.wa-product-card .wa-btn-sm { opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.wa-product-card:hover .wa-btn-sm { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────
   PROCESS
──────────────────────────────────────── */
.wa-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 1024px) { .wa-process-grid { grid-template-columns: repeat(3, 1fr); } }

.wa-process-card {
  text-align: left;
  padding: 36px 28px;
  border: 1px solid rgba(249,115,22,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.wa-process-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(249,115,22,.12); }

/* Step number badge — top-right corner */
.wa-process-num-badge {
  position: absolute;
  top: -14px; right: -14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}

/* Icon box */
.wa-process-icon-box {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(249,115,22,.3);
  transition: transform .3s;
}
.wa-process-card:hover .wa-process-icon-box { transform: scale(1.1); }

.wa-process-title { font-size: 18px; font-weight: 700; color: var(--brown); margin-bottom: 12px; transition: color .2s; }
.wa-process-card:hover .wa-process-title { color: var(--orange); }
.wa-process-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* Highlights list */
.wa-process-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.wa-process-highlight  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--brown); font-weight: 500; }
.wa-highlight-check {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ────────────────────────────────────────
   GUARANTEES
──────────────────────────────────────── */
.wa-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.wa-guarantee-card {
  background: var(--white);
  border: 1px solid rgba(249,115,22,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform .3s, box-shadow .3s;
}
.wa-guarantee-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(249,115,22,.1); }

.wa-guarantee-icon {
  width: 72px; height: 72px;
  background: var(--grad);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.wa-guarantee-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }

.wa-guarantee-title { font-size: 18px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.wa-guarantee-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.wa-guarantee-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  border-radius: 999px;
  padding: 6px 16px;
}
.wa-guarantee-stat-value { color: var(--white); font-weight: 800; font-size: 14px; }
.wa-guarantee-stat-label { color: rgba(255,255,255,.8); font-size: 12px; }

.wa-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .wa-trust-grid { grid-template-columns: repeat(4, 1fr); } }

.wa-trust-badge {
  background: var(--white);
  border: 1px solid rgba(249,115,22,.1);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s;
}
.wa-trust-badge:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(249,115,22,.1); }
.wa-trust-icon  { font-size: 24px; margin-bottom: 8px; }
.wa-trust-value { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.wa-trust-value { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wa-trust-label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ────────────────────────────────────────
   CLIENTS
──────────────────────────────────────── */
.wa-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.wa-marquee-fade-left,
.wa-marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.wa-marquee-fade-left  { left: 0;  background: linear-gradient(to right,  var(--white), transparent); }
.wa-marquee-fade-right { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.wa-marquee {
  display: flex;
  gap: 14px;
  width: max-content;
  margin-bottom: 12px;
}
.wa-marquee-left  { animation: marquee-left  35s linear infinite; }
.wa-marquee-right { animation: marquee-right 28s linear infinite; }

@keyframes marquee-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.wa-client-logo {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(249,115,22,.12);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.wa-client-logo:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(249,115,22,.15); }
.wa-client-logo img { width: 100%; height: 100%; object-fit: contain; }

.wa-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.wa-testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(249,115,22,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
}
.wa-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(249,115,22,.1); }

.wa-testimonial-quote-icon {
  width: 36px; height: 36px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 14px;
}

.wa-testimonial-stars { color: var(--amber); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.wa-testimonial-text  { font-size: 14px; color: var(--brown); font-style: italic; line-height: 1.7; margin-bottom: 20px; }

.wa-testimonial-author { display: flex; align-items: center; gap: 12px; }
.wa-testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-testimonial-name { font-size: 14px; font-weight: 700; color: var(--brown); }
.wa-testimonial-role { font-size: 12px; color: var(--muted); }

/* ────────────────────────────────────────
   CONTACT
──────────────────────────────────────── */
.wa-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .wa-contact-layout { grid-template-columns: 1fr 2fr; } }

.wa-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(249,115,22,.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  transition: transform .2s, box-shadow .2s;
}
.wa-contact-card:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(249,115,22,.1); }

.wa-contact-card-icon {
  font-size: 22px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(249,115,22,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-contact-card-title { font-size: 12px; font-weight: 700; color: var(--brown); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.wa-contact-card-link  { font-size: 15px; color: var(--orange); font-weight: 500; }
a.wa-contact-card-link:hover { text-decoration: underline; }

.wa-quick-response {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.15);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 4px;
}
.wa-quick-response-icon { font-size: 22px; flex-shrink: 0; }
.wa-quick-response-title { font-size: 14px; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.wa-quick-response-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Quote Form */
.wa-quote-form-wrap {
  background: var(--white);
  border: 1px solid rgba(249,115,22,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.05);
}
.wa-quote-form-title { font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 28px; }

.wa-contact-form .wa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .wa-contact-form .wa-form-row { grid-template-columns: 1fr; } }

.wa-form-group { margin-bottom: 16px; }
.wa-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(249,115,22,.18);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.wa-form-group textarea { resize: vertical; min-height: 100px; }

.wa-form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.wa-footer {
  background: #2a1a0e;
  color: var(--white);
  padding: 64px 0 0;
}

.wa-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) {
  .wa-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.wa-footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.wa-footer-desc  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.wa-footer-socials { display: flex; gap: 10px; }
.wa-social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.wa-social-btn:hover { background: var(--orange); color: var(--white); }

.wa-footer-heading { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }

.wa-footer-links { list-style: none; }
.wa-footer-links li { margin-bottom: 10px; }
.wa-footer-links a,
.wa-footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.wa-footer-links a:hover { color: var(--orange); }

.wa-footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.wa-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ────────────────────────────────────────
   SCROLL ANIMATIONS
──────────────────────────────────────── */
.wa-hidden  { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.wa-visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────
   RESPONSIVE HELPERS
──────────────────────────────────────── */
@media (max-width: 767px) {
  .wa-section { padding: 56px 0; }
  .wa-section-header { margin-bottom: 36px; }
  .wa-hero-inner { padding: 56px 20px; }
  .wa-hero-main-img { height: 320px; }
  .wa-floating-badge, .wa-floating-badge-right { display: none; }
  .wa-quote-form-wrap { padding: 24px; }
}

/* ────────────────────────────────────────
   NARROW CONTAINER
──────────────────────────────────────── */
.wa-container-narrow { max-width: 800px; }

/* ────────────────────────────────────────
   FAQ
──────────────────────────────────────── */
.wa-faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.wa-faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.wa-faq-item.is-open { border-color: rgba(249,115,22,.35); box-shadow: 0 4px 20px rgba(249,115,22,.08); }

.wa-faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; }
.wa-faq-toggle:hover .wa-faq-question { color: var(--orange); }

.wa-faq-question { font-size: 15px; font-weight: 600; color: var(--foreground); line-height: 1.45; transition: color .2s; }

.wa-faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #fff7ed; color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; transition: transform .3s, background .2s; }
.wa-faq-item.is-open .wa-faq-icon { transform: rotate(180deg); background: var(--orange); color: #fff; }

.wa-faq-body { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.wa-faq-body[hidden] { display: block !important; }
.wa-faq-item.is-open .wa-faq-body { max-height: 300px; }

.wa-faq-answer { margin: 0; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; border-top: 1px solid #fff7ed; padding-top: 16px; }

.wa-faq-cta { text-align: center; }
.wa-faq-cta p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* ────────────────────────────────────────
   CTA BANNER (Services bottom)
──────────────────────────────────────── */
.wa-cta-banner { margin-top: 48px; background: linear-gradient(135deg, var(--orange), var(--amber)); border-radius: 24px; padding: 48px 40px; text-align: center; position: relative; overflow: hidden; }
.wa-cta-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.wa-cta-blob-tr { width: 220px; height: 220px; top: 0; right: 0; transform: translate(30%,-50%); }
.wa-cta-blob-bl { width: 170px; height: 170px; bottom: 0; left: 0; transform: translate(-25%,50%); }
.wa-cta-banner-inner { position: relative; z-index: 2; }
.wa-cta-heading { font-family: var(--font-serif); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.wa-cta-heading-sm { font-size: clamp(1.2rem,2.5vw,1.6rem); }
.wa-cta-sub { color: rgba(255,255,255,.85); font-size: 15px; margin: 0 0 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.wa-btn-white { display: inline-block; background: #fff; color: var(--orange); font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: 12px; text-decoration: none; transition: box-shadow .2s, transform .2s; }
.wa-btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); transform: scale(1.04); }

/* ────────────────────────────────────────
   CTA STRIP (Process bottom)
──────────────────────────────────────── */
.wa-cta-strip { margin-top: 48px; background: linear-gradient(135deg, var(--orange), var(--amber)); border-radius: 24px; padding: 32px 40px; position: relative; overflow: hidden; }
.wa-cta-strip-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.wa-cta-strip-text { color: #fff; }
.wa-cta-strip-text .wa-cta-sub { margin-bottom: 0; }
.wa-cta-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.wa-cta-badge { background: rgba(255,255,255,.18); border-radius: 16px; padding: 12px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 100px; }
.wa-cta-badge-val { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; }
.wa-cta-badge-label { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }

@media (max-width: 767px) {
  .wa-cta-banner { padding: 32px 24px; }
  .wa-cta-strip { padding: 28px 20px; }
  .wa-cta-strip-inner { flex-direction: column; text-align: center; }
  .wa-cta-badges { justify-content: center; }
}

/* Product overlay description (shown on hover) */
.wa-product-desc-overlay {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.wa-product-card:hover .wa-product-desc-overlay { max-height: 60px; }
