/*
 * The Holidave — homepage.css
 * All classes prefixed .thd- to prevent conflicts
 * v1.0.0
 */

/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
.thd-home {
  --thd-orange:    #FB5B32;
  --thd-orange-dk: #D94520;
  --thd-orange-lt: #FFF0EB;
  --thd-teal:      #0a5b66;
  --thd-teal-dk:   #074650;
  --thd-teal-lt:   #E3F2F4;
  --thd-black:     #0d0d0d;
  --thd-dark:      #333;
  --thd-gray:      #666;
  --thd-gray-lt:   #f5f5f3;
  --thd-border:    #e8e8e4;
  --thd-white:     #fff;
  --thd-wa:        #25D366;
  --thd-r:         10px;
  --thd-rl:        16px;
  --thd-rxl:       24px;
  font-family: 'Inter', sans-serif;
  color: var(--thd-black);
  background: #f8f8f6;
  overflow-x: hidden;
}

.thd-home *, .thd-home *::before, .thd-home *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.thd-home *:not(i):not(.fa):not(.fas):not(.far):not(.fab) {
  font-family: 'Inter', sans-serif;
}
.thd-home i, .thd-home .fas, .thd-home .far, .thd-home .fab {
  font-family: "Font Awesome 6 Free","Font Awesome 6 Brands","FontAwesome" !important;
  font-style: normal !important;
}

/* Full width */
.thd-home {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.thd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 1.5rem 100px;
}
.thd-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #053d46 0%, #0a5b66 35%, #0e7a8a 60%, #074650 100%);
}
.thd-hero-grad {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(251,91,50,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(10,91,102,.4) 0%, transparent 50%);
}
.thd-hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.thd-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.thd-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.9); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.thd-hb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--thd-orange);
  box-shadow: 0 0 6px var(--thd-orange);
  animation: thd-pulse 2s infinite;
}
@keyframes thd-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}
.thd-hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.thd-hero-accent {
  color: var(--thd-orange);
  position: relative;
}
.thd-hero-accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; border-radius: 99px;
  background: var(--thd-orange);
  opacity: .5;
}
.thd-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* Search bar */
.thd-search-bar {
  background: var(--thd-white);
  border-radius: var(--thd-rxl);
  display: flex; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding: 6px 6px 6px 0;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.thd-sb-field {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; flex: 1;
}
.thd-sb-field i { color: var(--thd-orange); font-size: 14px; flex-shrink: 0; }
.thd-sb-field input,
.thd-sb-field select {
  border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--thd-black); width: 100%;
  font-family: 'Inter', sans-serif;
}
.thd-sb-field input::placeholder { color: #aaa; }
.thd-sb-field select { cursor: pointer; color: var(--thd-dark); -webkit-appearance: none; }
.thd-sb-sm { flex: 0 0 140px; }
.thd-sb-divider { width: 1px; height: 28px; background: var(--thd-border); flex-shrink: 0; }
.thd-sb-btn {
  background: var(--thd-orange); color: #fff;
  border: none; border-radius: var(--thd-rl);
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  margin: 0; flex-shrink: 0; transition: background .15s, transform .1s;
  font-family: 'Inter', sans-serif;
}
.thd-sb-btn:hover { background: var(--thd-orange-dk); transform: scale(1.02); }

/* Tags */
.thd-hero-tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.thd-ht-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; }
.thd-ht {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 99px; text-decoration: none;
  transition: all .15s; backdrop-filter: blur(6px);
}
.thd-ht:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Stats */
.thd-hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  padding: 16px 1.5rem; gap: 0;
}
.thd-hs { text-align: center; padding: 0 2.5rem; }
.thd-hs-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.thd-hs-lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; font-weight: 500; }
.thd-hs-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.thd-trust-bar {
  background: var(--thd-teal);
  padding: 14px 1.5rem;
}
.thd-trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.thd-tb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
  padding: 4px 1.5rem; white-space: nowrap;
}
.thd-tb i { color: var(--thd-orange); font-size: 13px; }
.thd-tb-div { width: 1px; height: 18px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
.thd-section { padding: 5rem 1.5rem; }
.thd-section-inner { max-width: 1280px; margin: 0 auto; }
.thd-sec-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap;
}
.thd-sec-hdr-center { justify-content: center; text-align: center; }
.thd-sec-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--thd-orange); margin-bottom: 7px;
}
.thd-sec-h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--thd-black); line-height: 1.2; letter-spacing: -.02em;
}
.thd-see-all {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--thd-teal);
  text-decoration: none; white-space: nowrap; transition: gap .15s;
}
.thd-see-all:hover { gap: 10px; color: var(--thd-orange); }

/* ══════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════ */
.thd-cats-section { background: var(--thd-white); }
.thd-cats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem;
}
.thd-cat-card {
  border-radius: var(--thd-rl); overflow: hidden;
  background: var(--cat-bg, var(--thd-teal));
  text-decoration: none; display: flex; flex-direction: column;
  padding: 1.5rem 1.25rem; gap: 10px; position: relative;
  transition: transform .2s, box-shadow .2s;
  min-height: 160px;
}
.thd-cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.thd-cc-img {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.thd-cc-body { flex: 1; }
.thd-cc-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.thd-cc-count { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 500; }
.thd-cc-arr {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  color: rgba(255,255,255,.5); font-size: 12px;
  transition: transform .2s, color .2s;
}
.thd-cat-card:hover .thd-cc-arr { transform: translateX(4px); color: #fff; }

/* ══════════════════════════════════════════
   PACKAGE GRID
══════════════════════════════════════════ */
.thd-featured-section { background: #f8f8f6; }
.thd-pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.thd-pkg-card {
  background: var(--thd-white); border-radius: var(--thd-rxl);
  overflow: hidden; text-decoration: none; color: var(--thd-black);
  display: flex; flex-direction: column;
  border: 1px solid var(--thd-border);
  transition: transform .2s, box-shadow .2s;
}
.thd-pkg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.thd-pc-img {
  height: 210px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--thd-teal), #1a9aaa);
}
.thd-pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.thd-pkg-card:hover .thd-pc-img img { transform: scale(1.05); }
.thd-pc-img-ph {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 48px; color: rgba(255,255,255,.4);
}
.thd-pc-save {
  position: absolute; top: 12px; left: 12px;
  background: var(--thd-orange); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: .04em;
}
.thd-pc-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(6px);
  color: #fff; font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 99px;
}
.thd-pc-nights {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
  display: flex; align-items: center; gap: 4px;
}
.thd-pc-nights i { color: var(--thd-orange); font-size: 11px; }
.thd-pc-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.thd-pc-dest { font-size: 11px; color: var(--thd-gray); display: flex; align-items: center; gap: 4px; }
.thd-pc-dest i { color: var(--thd-orange); font-size: 11px; }
.thd-pc-title { font-size: 15px; font-weight: 700; color: var(--thd-black); line-height: 1.3; }
.thd-pc-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.thd-pc-cat, .thd-pc-type {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 99px;
}
.thd-pc-cat  { background: var(--thd-teal-lt); color: var(--thd-teal); }
.thd-pc-type { background: var(--thd-orange-lt); color: var(--thd-orange-dk); }
.thd-pc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--thd-border);
}
.thd-pc-price-wrap { display: flex; align-items: baseline; gap: 5px; }
.thd-pc-was { font-size: 12px; color: #aaa; text-decoration: line-through; }
.thd-pc-price { font-size: 18px; font-weight: 800; color: var(--thd-orange); }
.thd-pc-pp { font-size: 11px; color: var(--thd-gray); }
.thd-pc-cta {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--thd-teal);
  transition: gap .15s, color .15s;
}
.thd-pkg-card:hover .thd-pc-cta { gap: 8px; color: var(--thd-orange); }
.thd-no-pkg {
  grid-column: 1/-1; text-align: center; padding: 3rem;
  color: var(--thd-gray); font-size: 15px;
}
.thd-no-pkg i { font-size: 36px; margin-bottom: 12px; display: block; opacity: .3; }
.thd-no-pkg a { color: var(--thd-teal); font-weight: 600; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.thd-why-section { background: var(--thd-white); }
.thd-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.thd-why-p {
  font-size: 15px; color: var(--thd-gray); line-height: 1.8; margin-bottom: 2rem; margin-top: .75rem;
}
.thd-why-feats { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.thd-wf { display: flex; align-items: flex-start; gap: 12px; }
.thd-wf-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--thd-teal-lt); color: var(--thd-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.thd-wf-t { font-size: 14px; font-weight: 700; color: var(--thd-black); }
.thd-wf-s { font-size: 12px; color: var(--thd-gray); }
.thd-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid var(--thd-teal); color: var(--thd-teal);
  background: transparent; border-radius: var(--thd-r);
  padding: 11px 22px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all .15s;
}
.thd-btn-outline:hover { background: var(--thd-teal); color: #fff; }
.thd-why-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.thd-wc {
  border-radius: var(--thd-rxl); padding: 2rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.thd-wc-1 { background: linear-gradient(135deg,#0a5b66,#0e8a9e); color: #fff; }
.thd-wc-2 { background: linear-gradient(135deg,#FB5B32,#f4a261); color: #fff; }
.thd-wc-3 { background: linear-gradient(135deg,#2d6a4f,#52b788); color: #fff; }
.thd-wc-4 { background: linear-gradient(135deg,#3a0ca3,#7209b7); color: #fff; }
.thd-wc-icon { font-size: 24px; margin-bottom: 10px; opacity: .7; }
.thd-wc-val { font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.thd-wc-lbl { font-size: 11px; opacity: .8; font-weight: 500; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.thd-how-section { background: #f8f8f6; }
.thd-steps {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.thd-step {
  background: var(--thd-white); border: 1px solid var(--thd-border);
  border-radius: var(--thd-rxl); padding: 2.5rem 2rem;
  flex: 1; min-width: 220px; max-width: 300px; text-align: center;
  position: relative; transition: box-shadow .2s, transform .2s;
}
.thd-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.thd-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--thd-orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  padding: 4px 13px; border-radius: 99px;
}
.thd-step-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--thd-teal-lt); color: var(--thd-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 1rem;
}
.thd-step-t { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--thd-black); }
.thd-step-p { font-size: 13px; color: var(--thd-gray); line-height: 1.7; }
.thd-step-arr { font-size: 18px; color: var(--thd-border); flex-shrink: 0; }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.thd-marquee-wrap {
  background: var(--thd-teal-lt); border-top: 1px solid rgba(10,91,102,.1);
  border-bottom: 1px solid rgba(10,91,102,.1); overflow: hidden; padding: 14px 0;
}
.thd-marquee { overflow: hidden; }
.thd-marquee-track {
  display: flex; width: max-content; gap: 0;
  animation: thd-marquee 30s linear infinite;
}
@keyframes thd-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.thd-marquee-wrap:hover .thd-marquee-track { animation-play-state: paused; }
.thd-mq-item {
  font-size: 13px; font-weight: 600; color: var(--thd-teal);
  padding: 0 2rem; white-space: nowrap;
  display: flex; align-items: center; gap: 0;
}
.thd-mq-item::after {
  content: '·'; margin-left: 2rem; color: var(--thd-teal); opacity: .3;
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.thd-reviews-section { background: var(--thd-white); }
.thd-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.thd-rev-card {
  background: #fafafa; border: 1px solid var(--thd-border);
  border-radius: var(--thd-rxl); padding: 1.4rem;
  transition: box-shadow .2s;
}
.thd-rev-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.thd-rc-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap;
}
.thd-rc-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.thd-rc-name { font-size: 13px; font-weight: 700; color: var(--thd-black); }
.thd-rc-dest { font-size: 11px; color: var(--thd-gray); display: flex; align-items: center; gap: 3px; }
.thd-rc-dest i { color: var(--thd-orange); font-size: 10px; }
.thd-rc-stars { margin-left: auto; display: flex; gap: 2px; }
.thd-rc-stars i { font-size: 11px; color: #fbbf24; }
.thd-rc-text { font-size: 13px; color: var(--thd-dark); line-height: 1.7; margin-bottom: 12px; }
.thd-rc-g {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--thd-gray); font-weight: 500;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.thd-cta-section {
  background: linear-gradient(135deg, var(--thd-teal-dk) 0%, var(--thd-teal) 60%, #0e8a9e 100%);
  padding: 5rem 1.5rem;
  position: relative; overflow: hidden;
}
.thd-cta-section::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,91,50,.15), transparent 70%);
  pointer-events: none;
}
.thd-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.thd-cta-h2 {
  font-size: clamp(22px, 3vw, 36px); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: .75rem; letter-spacing: -.02em;
}
.thd-cta-p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; }
.thd-cta-right { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.thd-cta-wa {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; text-decoration: none;
  border-radius: var(--thd-r); padding: 14px 24px;
  font-size: 14px; font-weight: 700; transition: background .15s, transform .1s;
}
.thd-cta-wa:hover { background: #1da851; transform: scale(1.02); }
.thd-cta-browse {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
  color: #fff; text-decoration: none;
  border-radius: var(--thd-r); padding: 13px 22px;
  font-size: 14px; font-weight: 700; transition: all .15s;
}
.thd-cta-browse:hover { background: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .thd-cats-grid { grid-template-columns: repeat(3, 1fr); }
  .thd-pkg-grid  { grid-template-columns: repeat(2, 1fr); }
  .thd-why-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .thd-hero { padding: 100px 1.25rem 80px; min-height: 100vh; }
  .thd-hero-stats { position: static; margin-top: 2rem; border-radius: var(--thd-rl); }
  .thd-hs { padding: 0 1rem; }
  .thd-search-bar { flex-direction: column; padding: 12px; gap: 8px; border-radius: var(--thd-rl); }
  .thd-sb-field { width: 100%; border-bottom: 1px solid var(--thd-border); padding: 8px 12px; }
  .thd-sb-field:last-of-type { border-bottom: none; }
  .thd-sb-divider { display: none; }
  .thd-sb-sm { flex: auto; }
  .thd-sb-btn { width: 100%; justify-content: center; border-radius: var(--thd-r); }
  .thd-trust-inner { gap: 5px; }
  .thd-tb-div { display: none; }
  .thd-tb { padding: 4px .75rem; font-size: 11px; }
  .thd-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .thd-pkg-grid  { grid-template-columns: 1fr; }
  .thd-reviews-grid { grid-template-columns: 1fr; }
  .thd-steps { flex-direction: column; align-items: stretch; }
  .thd-step { max-width: none; }
  .thd-step-arr { transform: rotate(90deg); align-self: center; }
  .thd-why-cards { grid-template-columns: 1fr 1fr; }
  .thd-sec-hdr { flex-direction: column; align-items: flex-start; }
  .thd-cta-inner { flex-direction: column; text-align: center; }
  .thd-cta-right { justify-content: center; }
  .thd-section { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .thd-cats-grid { grid-template-columns: 1fr 1fr; }
  .thd-why-cards { grid-template-columns: 1fr 1fr; }
  .thd-hero-h1 { font-size: 2rem; }
  .thd-hs-div { display: none; }
  .thd-hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
