/* =============================================================
   TravelersHelpDesk — Main Stylesheet
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --navy-light: #1a3060;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale:  #f5e6c0;
  --sky:        #4fa3d8;
  --white:      #ffffff;
  --off-white:  #f8f5ef;
  --text-muted: #8a9bbf;
  --border:     rgba(201,168,76,0.2);
  --radius:     12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s, opacity 0.2s; }

/* ---- Animations ---- */
@keyframes fadeUp   { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes shimmer  { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulseRing {
  0%  { transform:scale(.95); box-shadow:0 0 0 0 rgba(201,168,76,.5); }
  70% { transform:scale(1);   box-shadow:0 0 0 16px rgba(201,168,76,0); }
  100%{ transform:scale(.95); box-shadow:0 0 0 0 rgba(201,168,76,0); }
}
@keyframes planeFly {
  0%  { transform:translateX(-120%) rotate(-5deg); opacity:0; }
  20% { opacity:1; }
  80% { opacity:1; }
  100%{ transform:translateX(120vw) rotate(-5deg); opacity:0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.thd-topbar {
  background: var(--gold);
  text-align: center;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--navy);
  position: relative;
  z-index: 100;
}
.thd-topbar a { color: var(--navy); text-decoration: none; font-weight: 700; }

/* ============================================================
   NAVBAR
   ============================================================ */
.thd-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.thd-nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.thd-nav__logo span { color: var(--gold); }

.thd-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.thd-nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.thd-nav__links a:hover { color: var(--gold); }
.thd-nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
}
.thd-nav__cta:hover { background: var(--gold-light) !important; }

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

/* mobile menu drawer */
.thd-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 98;
}
.thd-mobile-menu.open { display: flex; }
.thd-mobile-menu__link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 16px 5%;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  font-weight: 500;
}
.thd-mobile-menu__link:hover { color: var(--gold); }
.thd-mobile-menu__call {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 18px 5%;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  display: block;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.thd-section-tag {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.thd-section-tag--left { text-align: left; }

.thd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
  line-height: 1.2;
}
.thd-section-title--left { text-align: left; margin-bottom: 0; }

.thd-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: -40px auto 60px;
  line-height: 1.7;
}

.thd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: 6px;
  letter-spacing: .01em;
  animation: pulseRing 2.5s infinite;
  transition: background .2s, transform .15s;
}
.thd-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  animation: none;
  color: var(--navy);
}
.thd-btn-primary--center { display: flex; max-width: 460px; margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.thd-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 7%;
  overflow: hidden;
  gap: 60px;
}
.thd-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,48,96,.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #0d1e3a 50%, #0a2050 100%);
  z-index: -1;
}
.thd-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.thd-hero__plane {
  position: absolute;
  top: 18%;
  font-size: 2.2rem;
  animation: planeFly 12s ease-in-out infinite 2s;
  opacity: 0;
  z-index: 1;
}

.thd-hero__content {
  position: relative;
  z-index: 2;
  animation: fadeUp .9s ease both;
}

.thd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.thd-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.thd-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.thd-hero__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.thd-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.thd-pill {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  color: var(--off-white);
}
.thd-pill::before { content:'✓'; color:var(--gold); font-weight:700; margin-right:6px; }

.thd-cta-group { display: flex; flex-direction: column; gap: 16px; }

.thd-hero__sub { color: var(--text-muted); font-size: .82rem; letter-spacing: .03em; }

.thd-hero__checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.thd-hero__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--off-white);
}
.thd-hero__checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .75rem; font-weight: 700;
  flex-shrink: 0;
}

/* Hero right */
.thd-hero__right { position: relative; z-index: 2; animation: fadeUp .9s ease .2s both; }
.thd-hero__img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.thd-hero__img-wrap img { width: 100%; border-radius: 16px; object-fit: cover; }
.thd-hero__badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,22,40,.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px);
}
.thd-badge-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.3);
}
.thd-badge-text strong { display: block; font-size: .9rem; color: var(--white); }
.thd-badge-text span  { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.thd-services { padding: 100px 7%; }

.thd-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.thd-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.thd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.thd-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.thd-card:hover::before { opacity: 1; }
.thd-card__icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.thd-card h3 { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--white); margin-bottom:12px; }
.thd-card p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; margin-bottom:24px; }
.thd-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none; font-weight: 600; font-size: .88rem;
  transition: gap .2s;
}
.thd-card__link:hover { gap: 12px; color: var(--gold-light); }

/* ============================================================
   ABOUT
   ============================================================ */
.thd-about {
  padding: 100px 7%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.thd-about__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.thd-about__inner p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.thd-about__avail { margin-top: 16px; font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   WHY CALL US
   ============================================================ */
.thd-why { padding: 100px 7%; background: var(--navy-mid); }
.thd-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.thd-why__item {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: background .2s, border-color .2s;
}
.thd-why__item:hover { background: rgba(201,168,76,.04); border-color: rgba(201,168,76,.4); }
.thd-why__icon { font-size: 2rem; margin-bottom: 16px; }
.thd-why__item h3 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--white); margin-bottom:10px; }
.thd-why__item p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; }
.thd-why__cta { text-align: center; margin-top: 60px; }

/* ============================================================
   STEPS
   ============================================================ */
.thd-steps { padding: 100px 7%; }
.thd-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.thd-steps__grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.thd-step { text-align: center; padding: 32px 20px; }
.thd-step__num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
}
.thd-step h3 { font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--white); margin-bottom:12px; }
.thd-step p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; }
.thd-steps__cta { text-align: center; margin-top: 60px; }

/* ============================================================
   STATS
   ============================================================ */
.thd-stats {
  padding: 80px 7%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.thd-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
  margin-bottom: 50px;
}
.thd-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1; margin-bottom: 8px;
}
.thd-stat__label { color: var(--text-muted); font-size: .9rem; font-weight: 500; letter-spacing: .04em; }
.thd-stats__sub  { text-align: center; color: var(--text-muted); margin-bottom: 32px; }
.thd-stats__cta  { text-align: center; }

/* ============================================================
   TRUST
   ============================================================ */
.thd-trust { padding: 100px 7%; }
.thd-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.thd-trust__card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-mid);
  transition: transform .25s, box-shadow .25s;
}
.thd-trust__card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.thd-trust__img { width: 100%; height: 200px; object-fit: cover; }
.thd-trust__body { padding: 28px; }
.thd-trust__body h3 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--white); margin-bottom:10px; }
.thd-trust__body p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; margin-bottom:18px; }

/* ============================================================
   COMPLETE SUPPORT
   ============================================================ */
.thd-complete { padding: 100px 7%; background: var(--navy-mid); }
.thd-complete__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.thd-complete__desc {
  color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-top: 16px;
}
.thd-complete__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 32px 0 40px; }
.thd-complete__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem; color: var(--off-white);
}
.thd-complete__list li::before {
  content: '✓';
  width: 26px; height: 26px;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  flex-shrink: 0;
}
.thd-complete__img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.thd-complete__img-wrap img { width: 100%; border-radius: 16px; object-fit: cover; }
.thd-complete__badge {
  position: absolute; top: 24px; right: 24px;
  background: rgba(10,22,40,.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  text-align: center;
}
.thd-complete__badge strong { display: block; font-size: .8rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.thd-complete__badge span   { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.thd-faq { padding: 100px 7%; }
.thd-faq__list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.thd-faq__item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.thd-faq__q {
  padding: 22px 28px;
  font-weight: 600; font-size: .97rem; color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .2s;
  list-style: none;
}
.thd-faq__q:hover { color: var(--gold); }
.thd-faq__q::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
details[open] .thd-faq__q::after { transform: rotate(45deg); }
.thd-faq__a { padding: 0 28px 22px; color: var(--text-muted); font-size: .92rem; line-height: 1.75; }
.thd-faq__cta  { text-align: center; margin-top: 50px; }
.thd-faq__still { color: var(--text-muted); margin-bottom: 24px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.thd-cta-banner {
  padding: 100px 7%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.thd-cta-banner::before {
  content: '✈';
  position: absolute; font-size: 20rem; opacity: .025;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  line-height: 1;
}
.thd-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white);
  margin-bottom: 20px; position: relative;
}
.thd-cta-banner > p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7; position: relative;
}
.thd-cta-phone {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--gold);
  text-decoration: none; display: block;
  margin-bottom: 32px; letter-spacing: .02em;
}
.thd-cta-phone:hover { color: var(--gold-light); }
.thd-avail-tags {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-top: 24px;
}
.thd-avail-tag { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.thd-avail-tag::before { content: '●'; color: var(--gold); font-size: .5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.thd-footer {
  background: #060e1c;
  border-top: 1px solid var(--border);
  padding: 70px 7% 40px;
}
.thd-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.thd-footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.thd-footer__brand span { color: var(--gold); }
.thd-footer__desc { color: var(--text-muted); font-size: .88rem; line-height: 1.7; margin-bottom: 12px; }
.thd-footer__phone {
  color: var(--gold); font-size: 1.1rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.thd-footer__phone:hover { color: var(--gold-light); }
.thd-footer__phone-small { color: var(--gold); text-decoration: none; font-weight: 600; }
.thd-footer__phone-small:hover { color: var(--gold-light); }

.thd-footer__col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.thd-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.thd-footer__col a {
  color: var(--text-muted); text-decoration: none; font-size: .88rem;
  transition: color .2s;
}
.thd-footer__col a:hover { color: var(--white); }
.thd-footer__col p { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }

.thd-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.thd-footer__disclaimer { font-size: .78rem; color: rgba(138,155,191,.65); line-height: 1.65; }
.thd-footer__copy { font-size: .8rem; color: var(--text-muted); }
.thd-footer__copy a { color: var(--gold); text-decoration: none; }
.thd-footer__copy a:hover { color: var(--gold-light); }

/* ============================================================
   STICKY CALL BAR (mobile)
   ============================================================ */
.thd-sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 16px;
  font-weight: 700; font-size: 1.1rem;
  text-decoration: none;
  z-index: 200;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .thd-footer__top { grid-template-columns: 1fr 1fr; }
  .thd-footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .thd-nav__links    { display: none; }
  .thd-nav__hamburger { display: flex; }

  .thd-hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 5% 80px; }
  .thd-hero__right { display: none; }

  .thd-complete__inner { grid-template-columns: 1fr; }
  .thd-complete__img-wrap { order: -1; }

  .thd-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .thd-steps__grid::before { display: none; }

  .thd-sticky-call { display: flex; }
  body { padding-bottom: 58px; }
}

@media (max-width: 600px) {
  .thd-hero,
  .thd-services, .thd-about, .thd-why, .thd-steps,
  .thd-stats, .thd-trust, .thd-complete, .thd-faq,
  .thd-cta-banner, .thd-footer { padding-left: 5%; padding-right: 5%; }
}
