/* =============================================
   FreshTouch Laundry - Main Stylesheet
   ============================================= */

:root {
  --navy: #0d2152;
  --gold: #f5a623;
  --gold-dark: #e09010;
  --off: #f0f4fb;
  --gray: #64748b;
  --gray2: #334155;
  --border: #dde3f0;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(13, 33, 82, 0.1);
  --shadow-lg: 0 8px 40px rgba(13, 33, 82, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: #fff;
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* ── HEADER ── */
header#ft-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

header#ft-header.scrolled {
  box-shadow: 0 2px 20px rgba(13, 33, 82, 0.1);
}

.hdr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

nav#ft-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav#ft-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

nav#ft-nav a:hover {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.07);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(13, 33, 82, 0.25);
}

.btn-book:hover {
  background: #0a1a40;
  transform: translateY(-1px);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.mob-nav a:hover {
  background: var(--off);
}

/* ── HERO ── */
.hero {
  background: #fff8ed;
  padding-top: 68px;
  display: flex;
  align-items: center;
  min-height: auto;
}

.hero-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 0px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 33, 82, 0.07);
  border: 1px solid rgba(13, 33, 82, 0.12);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-city .material-icons-round {
  font-size: 15px;
  color: var(--gold);
}

.hero h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(13, 33, 82, 0.28);
}

.btn-hero-p:hover {
  background: #0a1a40;
  transform: translateY(-2px);
}

.btn-hero-y {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

.btn-hero-y:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.htrust {
  display: flex;
  align-items: center;
  gap: 8px;
}

.htrust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.htrust-icon .material-icons-round {
  font-size: 20px;
  color: var(--navy);
}

.htrust span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray2);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  margin-bottom: -35px;
}

.hero-img-wrap {
  width: 100%;
  max-width: 540px;
  position: relative;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-img-wrap::before,
.hero-img-wrap::after {
  display: none !important;
  content: none !important;
}

.hero-img-wrap img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: none !important;
  transform: translateZ(0);
}

.hero-img-wrap:hover {
  transform: translateY(-4px);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 16px 0;
}

.trust-bar-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.titem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.titem:last-child {
  border-right: none;
}

.titem .material-icons-round {
  font-size: 17px;
  color: var(--gold);
}

/* ── SECTION helpers ── */
.sec {
  padding: 70px 0;
}

.sec-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-lbl {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sec-title {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 0.98rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}

.tc {
  text-align: center;
}
.tc .sec-sub {
  margin: 0 auto;
}

/* ── SERVICES SLIDER ── */
.svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.svc-top-title {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--navy);
}

.svc-top-title span {
  color: var(--gold);
}
.svc-top-right p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.7;
}

.svc-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.svc-slider {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.svc-slide {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.svc-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.svc-slide:hover img {
  transform: scale(1.05);
}

.svc-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 18px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
}

.svc-slide-caption h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.svc-slide-caption p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 9px;
}

.svc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.svc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.svc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: 0.3s;
  cursor: pointer;
}

.svc-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

.svc-arrows {
  display: flex;
  gap: 10px;
}

.svc-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--navy);
}

.svc-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.svc-trust {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
}

/* ── PICKUP SECTION ── */
.pickup-sec {
  background: #fff8ed;
  padding: 70px 0;
}

.pickup-head {
  text-align: center;
  margin-bottom: 40px;
}

.pickup-head h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.pickup-head p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 30px;
}

.pickup-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.pcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
  transform-style: preserve-3d;
}

.pcard:hover {
  transform: translateY(-14px) rotateX(4deg);
  box-shadow: 0 35px 70px rgba(13, 33, 82, 0.18);
  border-color: var(--gold);
}

.pcard-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0f4fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-icon .material-icons-round {
  font-size: 34px;
  color: #0369a1;
}
.pcard-icon.exp-ic .material-icons-round {
  color: #b45309;
}
.pcard h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.pcard p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.pickup-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pickup-img-col img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  display: block;
}

.pickup-btn {
  text-align: center;
  margin-top: 36px;
}

/* ── WE COLLECT SECTION ── */
.collect-sec {
  background: #fff;
  padding: 70px 0;
}

.collect-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.collect-title {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: center;
}

.collect-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.collect-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.collect-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.collect-card:hover {
  transform: translateY(-14px) rotateX(4deg);
  box-shadow: 0 35px 70px rgba(13, 33, 82, 0.18);
  border-color: var(--gold);
}

.collect-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff8ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collect-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.collect-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.collect-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--off);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  z-index: 0;
}

.hwstep {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.hwstep-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(13, 33, 82, 0.25);
  border: 4px solid var(--off);
}

.hwstep h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.hwstep p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── WHY US ── */
.why-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-feats {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.wfeat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wfeat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 33, 82, 0.08),
    rgba(245, 166, 35, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.wfeat h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.wfeat p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.why-img {
  position: relative;
}

.why-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.why-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-float .material-icons-round {
  color: var(--gold);
  font-size: 28px;
}
.why-float strong {
  font-size: 14px;
  color: var(--navy);
  display: block;
}
.why-float span {
  font-size: 12px;
  color: var(--gray);
}

/* ── TESTIMONIALS ── */
.testi-bg {
  background: var(--off);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.tcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.tcard:hover {
  transform: translateY(-14px) rotateX(4deg);
  box-shadow: 0 35px 70px rgba(13, 33, 82, 0.18);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.tcard p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray2);
  font-style: italic;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a56db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.t-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.t-loc {
  font-size: 12px;
  color: var(--gray);
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 780px;
  margin: 44px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
}

.faq-q .material-icons-round {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 22px;
}

.faq-item.open .faq-q .material-icons-round {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.12),
    transparent 70%
  );
}

.cta-in {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-in h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-in p {
  font-size: 0.98rem;
  color: #bfdbfe;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

.btn-white:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

.btn-wa:hover {
  background: #1fba58;
  transform: translateY(-4px) scale(1.03);
}

/* ── FOOTER ── */
footer#ft-footer {
  background: #f4f7fe;
  color: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
}

.fbrand p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 260px;
  margin-top: 14px;
}

.fsocial {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.fsocial a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.fsocial a:hover {
  background: var(--gold);
  color: var(--navy);
}

.fcol h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fcol ul {
  list-style: none;
}
.fcol ul li {
  margin-bottom: 9px;
}

.fcol ul li a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: 0.2s;
}

.fcol ul li a:hover {
  color: var(--navy);
}

.fcontact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.fcontact .material-icons-round {
  font-size: 17px;
  color: var(--gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.fcontact a,
.fcontact span {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
}

.fcontact a:hover {
  color: var(--navy);
}

.footer-btm {
  margin-top: 36px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: waB 3s ease infinite;
}

@keyframes waB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.in-view {
  opacity: 1;
  transform: none;
}

/* ── GOLD UNDERLINE ── */
.gold {
  position: relative;
}

.gold::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 12px;
  border-bottom: 4px solid var(--gold);
  border-radius: 0 0 100px 100px;
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gold.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-head {
  background: var(--navy);
  padding: 22px 26px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-head h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.popup-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.popup-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.popup-body {
  padding: 24px 26px;
}

/* CF7 form styling inside popup */
.popup-body .wpcf7 {
  width: 100%;
}
.popup-body .wpcf7-form {
  display: grid;
  gap: 14px;
}

.popup-body .wpcf7-form p {
  margin: 0;
}

.popup-body .wpcf7 input[type="text"],
.popup-body .wpcf7 input[type="tel"],
.popup-body .wpcf7 input[type="date"],
.popup-body .wpcf7 input[type="email"],
.popup-body .wpcf7 select,
.popup-body .wpcf7 textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  font-family: "DM Sans", sans-serif;
  transition: 0.2s;
  background: #fff;
}

.popup-body .wpcf7 input:focus,
.popup-body .wpcf7 select:focus,
.popup-body .wpcf7 textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 33, 82, 0.08);
}

.popup-body .wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.popup-body .wpcf7-submit {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: 0.2s;
}

.popup-body .wpcf7-submit:hover {
  background: #0a1a40;
}

.popup-body .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.popup-body .wpcf7-response-output {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 10px;
}

.popup-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}

/* Two column grid for form fields */
.ft-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-in {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collect-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .pickup-row {
    grid-template-columns: 1fr 1fr;
  }
  .pickup-img-col {
    display: none;
  }
}

@media (min-width: 1101px) {
  .pickup-img-col {
    display: flex;
  }
}

@media (max-width: 900px) {
  nav#ft-nav {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-in {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: block;
  }
  .why-in {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps::before {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  .htrust {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .htrust span {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .pickup-img-col {
    display: block;
  }
  .pickup-btn {
    margin-top: 0px;
  }
  .trust-bar-in {
    gap: 0;
  }
  .titem {
    padding: 6px 8px;
    font-size: 11px;
  }
  .footer-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fbrand,
  .fcontact {
    grid-column: 1/-1;
  }
  .how-steps {
    grid-template-columns: 1fr;
  }
  .collect-cards {
    grid-template-columns: 1fr 1fr;
  }
  .pickup-row {
    grid-template-columns: 1fr;
  }
  .ft-form-row {
    grid-template-columns: 1fr;
  }
}
