/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — Hupp & Fuller Detailing
   ═══════════════════════════════════════════════════════ */

:root {
  --hf-gold: #D3AF37;
  --hf-cream: #F6D97B;
  --hf-black: #050409;
  --hf-white: #F0EDE6;
  --hf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--hf-white);
  background: var(--hf-black);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   Split layout — text left, glass contact card right
   ═══════════════════════════════════════════════════════ */

.ct-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1260px;
  width: 100%;
  align-items: center;
}

/* ─── Text column ─── */

.ct-hero__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-hero__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Tag */
.ct-hero__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.15);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Heading */
.ct-hero__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.1;
  max-width: 540px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Sub text */
.ct-hero__sub {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(240,237,230,0.5);
  line-height: 1.72;
  max-width: 500px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ─── CTA buttons ─── */

.ct-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.ct-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
  white-space: nowrap;
}

.ct-hero__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Primary — gold solid */
.ct-hero__btn--primary {
  color: var(--hf-black);
  background: linear-gradient(135deg, var(--hf-gold), var(--hf-cream));
  border: none;
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
}
.ct-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-hero__btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}

/* Secondary — outline white */
.ct-hero__btn--secondary {
  color: var(--hf-white);
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(240,237,230,0.15);
}
.ct-hero__btn--secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(240,237,230,0.3);
  transform: translateY(-2px);
}
.ct-hero__btn--secondary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.4);
}

/* Tertiary — outline gold subtle */
.ct-hero__btn--tertiary {
  color: var(--hf-gold);
  background: transparent;
  border: 1.5px solid rgba(211,175,55,0.15);
  padding: 12px 22px;
  font-size: 0.82rem;
}
.ct-hero__btn--tertiary:hover {
  background: rgba(211,175,55,0.05);
  border-color: rgba(211,175,55,0.35);
  transform: translateY(-2px);
}
.ct-hero__btn--tertiary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.4);
}

/* ─── Trust line ─── */

.ct-hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__trust {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.ct-hero__trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  margin-top: 6px;
  animation: ct-hero-trustPulse 2.5s ease-in-out infinite;
}
@keyframes ct-hero-trustPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50%      { opacity: 0.5; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.ct-hero__trust-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(240,237,230,0.35);
  line-height: 1.55;
  max-width: 420px;
}

/* ═══════════════════════════════════════════════════════
   GLASS CONTACT CARD (Right column)
   ═══════════════════════════════════════════════════════ */

.ct-hero__card-col {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.9s var(--hf-ease), transform 0.9s var(--hf-ease);
}
.ct-hero.is-visible .ct-hero__card-col {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}

.ct-hero__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(211,175,55,0.1);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.3),
    0 0 60px rgba(211,175,55,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Card background image */
.ct-hero__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ct-hero__card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.2) brightness(0.5);
}

.ct-hero__card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,4,9,0.9) 0%, rgba(5,4,9,0.85) 100%);
}

/* Card content */
.ct-hero__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Card status */
.ct-hero__card-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 5px 14px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: 100px;
}

.ct-hero__card-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: ct-hero-trustPulse 2.5s ease-in-out infinite;
}

/* Card title */
.ct-hero__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hf-white);
}

/* Card items */
.ct-hero__card-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-hero__card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--hf-white);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}

a.ct-hero__card-item:hover {
  background: rgba(211,175,55,0.04);
  border-color: rgba(211,175,55,0.12);
}

a.ct-hero__card-item:focus-visible {
  box-shadow: 0 0 0 2px rgba(211,175,55,0.4);
  border-radius: 12px;
}

.ct-hero__card-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(211,175,55,0.06);
  border: 1px solid rgba(211,175,55,0.1);
  color: var(--hf-gold);
  transition: background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}
a.ct-hero__card-item:hover .ct-hero__card-item-icon {
  background: rgba(211,175,55,0.1);
  border-color: rgba(211,175,55,0.25);
}

.ct-hero__card-item-icon svg {
  width: 18px;
  height: 18px;
}

.ct-hero__card-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ct-hero__card-item-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.3);
}

.ct-hero__card-item-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(240,237,230,0.7);
  transition: color 0.3s var(--hf-ease);
}
a.ct-hero__card-item:hover .ct-hero__card-item-value {
  color: var(--hf-white);
}

.ct-hero__card-item-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(211,175,55,0.3);
  transition: color 0.3s var(--hf-ease), transform 0.3s var(--hf-ease);
}
a.ct-hero__card-item:hover .ct-hero__card-item-arrow {
  color: var(--hf-gold);
  transform: translateX(3px);
}

/* Card response time */
.ct-hero__card-response {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(211,175,55,0.03);
  border: 1px solid rgba(211,175,55,0.08);
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(240,237,230,0.45);
}

.ct-hero__card-response-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--hf-gold);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   SECTION 2 — CONTACT OPTIONS
   4 premium cards — Call, Text, Quote, Email
   ═══════════════════════════════════════════════════════ */

.ct-options {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-options__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: 1260px;
  width: 100%;
}

/* ─── Header ─── */

.ct-options__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 640px;
}

.ct-options__tag {
  display: inline-flex;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.15);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
}
.ct-options.is-visible .ct-options__tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.ct-options__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.12;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-options.is-visible .ct-options__heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.ct-options__sub {
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  color: rgba(240,237,230,0.45);
  line-height: 1.72;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-options.is-visible .ct-options__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ─── Cards Grid ─── */

.ct-options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* ─── Individual Card ─── */

.ct-options__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 26px 28px;
  text-decoration: none;
  color: var(--hf-white);
  border-radius: 18px;
  border: 1px solid rgba(211,175,55,0.08);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.03);
  cursor: pointer;
  transition:
    transform 0.35s var(--hf-ease),
    border-color 0.35s var(--hf-ease),
    box-shadow 0.35s var(--hf-ease),
    background 0.35s var(--hf-ease);
  overflow: hidden;

  /* Staggered entrance */
  opacity: 0;
  transform: translateY(28px);
}

.ct-options.is-visible .ct-options__card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease),
              border-color 0.35s var(--hf-ease), box-shadow 0.35s var(--hf-ease),
              background 0.35s var(--hf-ease);
}
.ct-options.is-visible .ct-options__card:nth-child(1) { transition-delay: 0.3s; }
.ct-options.is-visible .ct-options__card:nth-child(2) { transition-delay: 0.4s; }
.ct-options.is-visible .ct-options__card:nth-child(3) { transition-delay: 0.5s; }
.ct-options.is-visible .ct-options__card:nth-child(4) { transition-delay: 0.6s; }

/* Card top glow line */
.ct-options__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hf-gold), transparent);
  transform: translateX(-50%);
  transition: width 0.5s var(--hf-ease);
}

/* Hover */
.ct-options__card:hover {
  transform: translateY(-4px);
  border-color: rgba(211,175,55,0.18);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.3),
    0 0 40px rgba(211,175,55,0.06),
    inset 0 1px 0 rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.025);
}
.ct-options__card:hover::before {
  width: 60%;
}
.ct-options__card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(211,175,55,0.5);
}

/* Active / tap */
.ct-options__card:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 0.12s;
}

/* ─── Card Icon ─── */

.ct-options__card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(211,175,55,0.06);
  border: 1px solid rgba(211,175,55,0.1);
  transition: background 0.35s var(--hf-ease), border-color 0.35s var(--hf-ease), transform 0.35s var(--hf-ease);
}
.ct-options__card:hover .ct-options__card-icon-wrap {
  background: rgba(211,175,55,0.12);
  border-color: rgba(211,175,55,0.25);
  transform: scale(1.05);
}

.ct-options__card-icon {
  width: 22px;
  height: 22px;
  color: var(--hf-gold);
  transition: transform 0.35s var(--hf-ease);
}
.ct-options__card:hover .ct-options__card-icon {
  transform: rotate(-6deg) scale(1.08);
}

/* ─── Card Typography ─── */

.ct-options__card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--hf-white);
  transition: color 0.3s var(--hf-ease);
}

.ct-options__card-desc {
  font-size: 0.82rem;
  color: rgba(240,237,230,0.4);
  line-height: 1.68;
  flex-grow: 1;
}

.ct-options__card-detail {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240,237,230,0.6);
  padding: 6px 12px;
  background: rgba(211,175,55,0.04);
  border: 1px solid rgba(211,175,55,0.08);
  border-radius: 8px;
  transition: color 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}
.ct-options__card:hover .ct-options__card-detail {
  color: rgba(240,237,230,0.8);
  border-color: rgba(211,175,55,0.15);
}

/* ─── Card CTA Button ─── */

.ct-options__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hf-gold);
  transition: color 0.3s var(--hf-ease);
}

.ct-options__card-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--hf-ease);
}
.ct-options__card:hover .ct-options__card-btn-arrow {
  transform: translateX(4px);
}

/* ─── Bottom Assurance ─── */

.ct-options__assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(240,237,230,0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-options.is-visible .ct-options__assurance {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.ct-options__assurance-icon {
  width: 16px;
  height: 16px;
  color: var(--hf-gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SECTION 3 — QUOTE REQUEST FORM
   Two-column: info left, form right
   ═══════════════════════════════════════════════════════ */

.ct-form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-form__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  max-width: 1260px;
  width: 100%;
  align-items: start;
}

/* ─── Info column (left) ─── */

.ct-form__info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-form.is-visible .ct-form__info-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.ct-form__info-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-form__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.15);
  border-radius: 100px;
}

.ct-form__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.14;
}

.ct-form__sub {
  font-size: 0.86rem;
  color: rgba(240,237,230,0.45);
  line-height: 1.72;
}

/* ─── What happens next steps ─── */

.ct-form__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-form__steps-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.3);
}

.ct-form__steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-form__step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ct-form__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(211,175,55,0.06);
  border: 1px solid rgba(211,175,55,0.12);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--hf-gold);
}

.ct-form__step-text {
  font-size: 0.82rem;
  color: rgba(240,237,230,0.55);
  line-height: 1.5;
}

/* ─── Support line ─── */

.ct-form__support {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(211,175,55,0.03);
  border: 1px solid rgba(211,175,55,0.08);
}

.ct-form__support-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--hf-gold);
  opacity: 0.6;
  margin-top: 1px;
}

.ct-form__support-text {
  font-size: 0.78rem;
  color: rgba(240,237,230,0.4);
  line-height: 1.65;
}

/* ─── Call alternative ─── */

.ct-form__alt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-form__alt-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240,237,230,0.25);
}

.ct-form__alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--hf-gold);
  text-decoration: none;
  transition: color 0.3s var(--hf-ease);
}
.ct-form__alt-btn:hover {
  color: var(--hf-cream);
}

.ct-form__alt-btn-icon {
  width: 16px;
  height: 16px;
}

/* ─── Form column (right) ─── */

.ct-form__form-col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--hf-ease), transform 0.8s var(--hf-ease);
}
.ct-form.is-visible .ct-form__form-col {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.ct-form__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ─── Field Groups ─── */

.ct-form__group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(211,175,55,0.07);
  background: rgba(255,255,255,0.012);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--hf-ease);
}
.ct-form__group:focus-within {
  border-color: rgba(211,175,55,0.15);
}

.ct-form__group-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.5);
  padding: 0;
}

.ct-form__group-icon {
  width: 16px;
  height: 16px;
  color: var(--hf-gold);
  opacity: 0.6;
}

.ct-form__optional-badge {
  margin-left: auto;
  padding: 3px 10px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(240,237,230,0.3);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,237,230,0.06);
  border-radius: 100px;
  text-transform: uppercase;
}

/* ─── Row layouts ─── */

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-form__row--thirds {
  grid-template-columns: 100px 1fr 1fr;
}

/* ─── Fields ─── */

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ct-form__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240,237,230,0.45);
  letter-spacing: 0.02em;
}

.ct-form__req {
  color: var(--hf-gold);
  text-decoration: none;
  font-style: normal;
}

.ct-form__input,
.ct-form__select,
.ct-form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--hf-white);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(240,237,230,0.08);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease);
  -webkit-appearance: none;
  appearance: none;
}

.ct-form__input::placeholder,
.ct-form__textarea::placeholder {
  color: rgba(240,237,230,0.2);
}

.ct-form__input:focus,
.ct-form__select:focus,
.ct-form__textarea:focus {
  border-color: rgba(211,175,55,0.35);
  box-shadow: 0 0 0 3px rgba(211,175,55,0.08);
  background: rgba(255,255,255,0.035);
}

.ct-form__input.is-invalid,
.ct-form__select.is-invalid {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

.ct-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F0EDE6' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.ct-form__select option {
  background: #111828;
  color: var(--hf-white);
}

.ct-form__textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* ─── Photo Upload Section ─── */

.ct-form__photo-hint {
  font-size: 0.78rem;
  color: rgba(240,237,230,0.35);
  line-height: 1.6;
}

/* Photo guide */
.ct-form__photo-guide {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(211,175,55,0.025);
  border: 1px solid rgba(211,175,55,0.07);
}

.ct-form__photo-guide-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.4);
  margin-bottom: 10px;
}

.ct-form__photo-guide-icon {
  width: 14px;
  height: 14px;
  color: var(--hf-gold);
  opacity: 0.6;
}

.ct-form__photo-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-form__photo-guide-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-form__photo-guide-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--hf-gold);
  letter-spacing: 0.04em;
}

.ct-form__photo-guide-desc {
  font-size: 0.72rem;
  color: rgba(240,237,230,0.35);
  line-height: 1.55;
}

/* Photo toggle */
.ct-form__photo-toggle {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(240,237,230,0.06);
}

.ct-form__photo-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(240,237,230,0.35);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s var(--hf-ease), background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}

.ct-form__photo-toggle-btn.is-active {
  color: var(--hf-gold);
  background: rgba(211,175,55,0.06);
  border-color: rgba(211,175,55,0.12);
}

.ct-form__photo-toggle-btn:hover:not(.is-active) {
  color: rgba(240,237,230,0.55);
  background: rgba(255,255,255,0.02);
}

.ct-form__photo-toggle-icon {
  width: 16px;
  height: 16px;
}

/* Photo dropzone */
.ct-form__photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.ct-form__photo-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 20px;
  border: 2px dashed rgba(211,175,55,0.12);
  border-radius: 14px;
  background: rgba(211,175,55,0.015);
  cursor: pointer;
  transition: border-color 0.3s var(--hf-ease), background 0.3s var(--hf-ease);
  text-align: center;
}
.ct-form__photo-dropzone:hover,
.ct-form__photo-dropzone.is-dragover {
  border-color: rgba(211,175,55,0.3);
  background: rgba(211,175,55,0.03);
}

.ct-form__photo-dropzone-icon {
  width: 28px;
  height: 28px;
  color: var(--hf-gold);
  opacity: 0.4;
}

.ct-form__photo-dropzone-text {
  font-size: 0.82rem;
  color: rgba(240,237,230,0.4);
}
.ct-form__photo-dropzone-text strong {
  color: var(--hf-gold);
  font-weight: 600;
}

.ct-form__photo-dropzone-sub {
  font-size: 0.68rem;
  color: rgba(240,237,230,0.22);
}

/* Photo previews */
.ct-form__photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ct-form__photo-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(211,175,55,0.1);
  animation: ct-form-thumbIn 0.4s var(--hf-ease) both;
}

@keyframes ct-form-thumbIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

.ct-form__photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-form__photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: var(--hf-white);
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}
.ct-form__photo-thumb:hover .ct-form__photo-thumb-remove {
  opacity: 1;
}

/* ─── Submit area ─── */

.ct-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.ct-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--hf-black);
  background: linear-gradient(135deg, var(--hf-gold), var(--hf-cream));
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
  position: relative;
  overflow: hidden;
}
.ct-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-form__submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}
.ct-form__submit:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.1s;
}

.ct-form__submit-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--hf-ease);
}
.ct-form__submit:hover .ct-form__submit-arrow {
  transform: translateX(3px);
}

.ct-form__submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(5,4,9,0.2);
  border-top-color: var(--hf-black);
  border-radius: 50%;
  animation: ct-form-spin 0.6s linear infinite;
}
@keyframes ct-form-spin {
  to { transform: rotate(360deg); }
}

.ct-form__submit.is-loading .ct-form__submit-text,
.ct-form__submit.is-loading .ct-form__submit-arrow {
  display: none;
}
.ct-form__submit.is-loading .ct-form__submit-spinner {
  display: block;
}
.ct-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.ct-form__privacy {
  font-size: 0.68rem;
  color: rgba(240,237,230,0.2);
  text-align: center;
  line-height: 1.5;
}

/* ─── Success state ─── */

.ct-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 60px 32px;
  border-radius: 18px;
  border: 1px solid rgba(74,222,128,0.12);
  background: rgba(74,222,128,0.02);
  animation: ct-form-successIn 0.6s var(--hf-ease) both;
}

@keyframes ct-form-successIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ct-form__success-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.15);
}

.ct-form__success-icon {
  width: 28px;
  height: 28px;
  color: #4ade80;
}

.ct-form__success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hf-white);
}

.ct-form__success-text {
  font-size: 0.86rem;
  color: rgba(240,237,230,0.45);
  line-height: 1.68;
  max-width: 400px;
}

.ct-form__success-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--hf-gold);
  background: rgba(211,175,55,0.06);
  border: 1px solid rgba(211,175,55,0.12);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}
.ct-form__success-btn:hover {
  background: rgba(211,175,55,0.1);
  border-color: rgba(211,175,55,0.22);
}

.ct-form__success-btn-icon {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 4 — BOOKING EXPECTATIONS
   5 flip-reveal info cards + CTA
   ═══════════════════════════════════════════════════════ */

.ct-expect {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-expect__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  max-width: 1260px;
  width: 100%;
}

/* ─── Header ─── */

.ct-expect__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 620px;
}

.ct-expect__tag {
  display: inline-flex;
  padding: 6px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.15);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
}
.ct-expect.is-visible .ct-expect__tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.ct-expect__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--hf-white);
  line-height: 1.12;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-expect.is-visible .ct-expect__heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.ct-expect__sub {
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  color: rgba(240,237,230,0.45);
  line-height: 1.72;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-expect.is-visible .ct-expect__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ─── Cards Grid ─── */

.ct-expect__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

/* ─── Individual Card ─── */

.ct-expect__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(211,175,55,0.07);
  background: rgba(255,255,255,0.012);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.025);
  cursor: default;
  outline: none;
  overflow: hidden;
  transition:
    transform 0.35s var(--hf-ease),
    border-color 0.35s var(--hf-ease),
    box-shadow 0.35s var(--hf-ease);

  opacity: 0;
  transform: translateY(26px);
}

.ct-expect.is-visible .ct-expect__card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease),
              border-color 0.35s var(--hf-ease), box-shadow 0.35s var(--hf-ease);
}
.ct-expect.is-visible .ct-expect__card:nth-child(1) { transition-delay: 0.3s; }
.ct-expect.is-visible .ct-expect__card:nth-child(2) { transition-delay: 0.38s; }
.ct-expect.is-visible .ct-expect__card:nth-child(3) { transition-delay: 0.46s; }
.ct-expect.is-visible .ct-expect__card:nth-child(4) { transition-delay: 0.54s; }
.ct-expect.is-visible .ct-expect__card:nth-child(5) { transition-delay: 0.62s; }

/* Hover lift */
.ct-expect__card:hover,
.ct-expect__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(211,175,55,0.16);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.25),
    0 0 30px rgba(211,175,55,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.ct-expect__card:focus-visible {
  box-shadow: 0 0 0 2px rgba(211,175,55,0.5);
}

/* Top glow line */
.ct-expect__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hf-gold), transparent);
  transform: translateX(-50%);
  transition: width 0.45s var(--hf-ease);
}
.ct-expect__card:hover::before,
.ct-expect__card:focus-visible::before {
  width: 50%;
}

/* ─── Card Icon ─── */

.ct-expect__card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(211,175,55,0.06);
  border: 1px solid rgba(211,175,55,0.1);
  transition: background 0.35s var(--hf-ease), border-color 0.35s var(--hf-ease), transform 0.35s var(--hf-ease);
}
.ct-expect__card:hover .ct-expect__card-icon-wrap,
.ct-expect__card:focus-visible .ct-expect__card-icon-wrap {
  background: rgba(211,175,55,0.1);
  border-color: rgba(211,175,55,0.22);
  transform: scale(1.06);
}

.ct-expect__card-icon {
  width: 20px;
  height: 20px;
  color: var(--hf-gold);
}

/* ─── Card Body ─── */

.ct-expect__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.ct-expect__card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hf-white);
}

.ct-expect__card-desc {
  font-size: 0.76rem;
  color: rgba(240,237,230,0.38);
  line-height: 1.62;
}

/* ─── Card Tip (hover-reveal) ─── */

.ct-expect__card-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(211,175,55,0.025);
  border: 1px solid rgba(211,175,55,0.06);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: -4px;
  transition: max-height 0.45s var(--hf-ease), opacity 0.35s var(--hf-ease), padding 0.35s var(--hf-ease), margin-top 0.35s var(--hf-ease);
  padding-top: 0;
  padding-bottom: 0;
}

.ct-expect__card:hover .ct-expect__card-tip,
.ct-expect__card:focus-visible .ct-expect__card-tip,
.ct-expect__card.is-tip-open .ct-expect__card-tip {
  max-height: 120px;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 0;
}

.ct-expect__card-tip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--hf-gold);
  opacity: 0.6;
  margin-top: 1px;
}

.ct-expect__card-tip span {
  font-size: 0.72rem;
  color: rgba(240,237,230,0.45);
  line-height: 1.55;
  font-style: italic;
}

/* ─── CTA ─── */

.ct-expect__cta-wrap {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
}
.ct-expect.is-visible .ct-expect__cta-wrap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.ct-expect__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--hf-black);
  background: linear-gradient(135deg, var(--hf-gold), var(--hf-cream));
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
}
.ct-expect__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-expect__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}
.ct-expect__cta:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.1s;
}

.ct-expect__cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--hf-ease);
}
.ct-expect__cta:hover .ct-expect__cta-arrow {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════
   SECTION 5 — SERVICE AREA CHECK
   Split: info + checker left, SVG map right
   ═══════════════════════════════════════════════════════ */

.ct-area {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1260px;
  width: 100%;
  align-items: center;
}

/* ─── Left Column ─── */

.ct-area__info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--hf-ease), transform 0.8s var(--hf-ease);
}
.ct-area.is-visible .ct-area__info-col {
  opacity: 1;
  transform: translateX(0);
}

.ct-area__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
  transition-delay: 0.15s;
}
.ct-area.is-visible .ct-area__tag {
  opacity: 1;
  transform: translateY(0);
}
.ct-area__tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--hf-gold);
}

.ct-area__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hf-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.25s;
}
.ct-area.is-visible .ct-area__heading {
  opacity: 1;
  transform: translateY(0);
}

.ct-area__sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(240,237,230,0.65);
  max-width: 540px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.35s;
}
.ct-area.is-visible .ct-area__sub {
  opacity: 1;
  transform: translateY(0);
}

/* ─── City Pills ─── */

.ct-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.45s;
}
.ct-area.is-visible .ct-area__cities {
  opacity: 1;
  transform: translateY(0);
}

.ct-area__city-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240,237,230,0.7);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s var(--hf-ease), background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), transform 0.3s var(--hf-ease);
}
.ct-area__city-pill:hover {
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border-color: rgba(211,175,55,0.3);
  transform: translateY(-1px);
}
.ct-area__city-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(211,175,55,0.4);
}
.ct-area__city-pill.is-active {
  color: var(--hf-black);
  background: var(--hf-gold);
  border-color: var(--hf-gold);
  box-shadow: 0 2px 12px rgba(211,175,55,0.3);
}

/* ─── Area Checker ─── */

.ct-area__checker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.55s;
}
.ct-area.is-visible .ct-area__checker {
  opacity: 1;
  transform: translateY(0);
}

.ct-area__checker-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240,237,230,0.6);
}

.ct-area__checker-row {
  display: flex;
  gap: 10px;
}

.ct-area__checker-input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--hf-white);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
}
.ct-area__checker-input::placeholder {
  color: rgba(240,237,230,0.3);
}
.ct-area__checker-input:focus {
  border-color: rgba(211,175,55,0.5);
  box-shadow: 0 0 0 3px rgba(211,175,55,0.1);
}

.ct-area__checker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hf-black);
  background: var(--hf-gold);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease);
}
.ct-area__checker-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(211,175,55,0.35);
}
.ct-area__checker-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}
.ct-area__checker-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.ct-area__checker-btn-icon {
  width: 16px;
  height: 16px;
}

/* Response */
.ct-area__checker-response {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 10px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: ctAreaResponseIn 0.4s var(--hf-ease) both;
}
.ct-area__checker-response[hidden] {
  display: none;
}
.ct-area__checker-response.is-success {
  color: #34d399;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
}
.ct-area__checker-response.is-info {
  color: var(--hf-gold);
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.2);
}
.ct-area__checker-response.is-empty {
  color: rgba(240,237,230,0.5);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.1);
}

@keyframes ctAreaResponseIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CTAs ─── */

.ct-area__cta-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.65s;
}
.ct-area.is-visible .ct-area__cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

.ct-area__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
}
.ct-area__cta:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}
.ct-area__cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--hf-ease);
}
.ct-area__cta:hover .ct-area__cta-arrow {
  transform: translateX(3px);
}

.ct-area__cta--primary {
  color: var(--hf-black);
  background: var(--hf-gold);
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
}
.ct-area__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-area__cta--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}

.ct-area__cta--secondary {
  color: var(--hf-gold);
  background: transparent;
  border: 1px solid rgba(211,175,55,0.3);
}
.ct-area__cta--secondary:hover {
  background: rgba(211,175,55,0.06);
  border-color: rgba(211,175,55,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(211,175,55,0.12);
}
.ct-area__cta--secondary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.35);
}

/* ─── Right Column — SVG Map ─── */

.ct-area__map-col {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px) scale(0.95);
  transition: opacity 0.9s var(--hf-ease), transform 0.9s var(--hf-ease);
  transition-delay: 0.3s;
}
.ct-area.is-visible .ct-area__map-col {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ct-area__map-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

.ct-area__map-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ctAreaGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes ctAreaGlowPulse {
  from { opacity: 0.6; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1.05); }
}

.ct-area__map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Radius rings */
.ct-area__map-ring {
  fill: none;
  stroke: rgba(211,175,55,0.08);
  stroke-width: 1;
  stroke-dasharray: 6 4;
}
.ct-area__map-ring--mid {
  stroke: rgba(211,175,55,0.12);
}
.ct-area__map-ring--inner {
  stroke: rgba(211,175,55,0.18);
  stroke-dasharray: none;
}

/* Connector lines */
.ct-area__map-lines line {
  stroke: var(--hf-gold);
  stroke-width: 0.8;
}

/* City dots */
.ct-area__map-dot-core {
  fill: rgba(240,237,230,0.5);
  transition: fill 0.3s var(--hf-ease), r 0.3s var(--hf-ease);
}
.ct-area__map-dot:hover .ct-area__map-dot-core,
.ct-area__map-dot.is-highlight .ct-area__map-dot-core {
  fill: var(--hf-gold);
}

/* Hub dot */
.ct-area__map-dot--hub .ct-area__map-dot-core {
  fill: var(--hf-gold);
}
.ct-area__map-dot-pulse {
  fill: rgba(211,175,55,0.2);
  animation: ctAreaDotPulse 3s ease-in-out infinite;
}
@keyframes ctAreaDotPulse {
  0%, 100% { r: 10; opacity: 0.3; }
  50%      { r: 16; opacity: 0.08; }
}

/* Labels */
.ct-area__map-dot-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 600;
  fill: rgba(240,237,230,0.35);
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s var(--hf-ease);
}
.ct-area__map-dot-label--hub {
  font-size: 10px;
  font-weight: 800;
  fill: var(--hf-gold);
}
.ct-area__map-dot:hover .ct-area__map-dot-label,
.ct-area__map-dot.is-highlight .ct-area__map-dot-label {
  fill: var(--hf-gold);
}

/* Map Legend */
.ct-area__map-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
}
.ct-area__map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(240,237,230,0.4);
}
.ct-area__map-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,237,230,0.45);
}
.ct-area__map-legend-dot--hub {
  background: var(--hf-gold);
  box-shadow: 0 0 6px rgba(211,175,55,0.4);
}

/* ═══════════════════════════════════════════════════════
   SECTION 6 — BUSINESS HOURS & RESPONSE TIMES
   Two glass cards side by side
   ═══════════════════════════════════════════════════════ */

.ct-hours {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-hours__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}

/* ─── Header ─── */

.ct-hours__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ct-hours__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
  transition-delay: 0.1s;
}
.ct-hours.is-visible .ct-hours__tag {
  opacity: 1;
  transform: translateY(0);
}
.ct-hours__tag::before,
.ct-hours__tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--hf-gold);
}

.ct-hours__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hf-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.2s;
}
.ct-hours.is-visible .ct-hours__heading {
  opacity: 1;
  transform: translateY(0);
}

.ct-hours__sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(240,237,230,0.55);
  max-width: 520px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.3s;
}
.ct-hours.is-visible .ct-hours__sub {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Cards Grid ─── */

.ct-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

/* ─── Card Base ─── */

.ct-hours__card {
  background: rgba(240,237,230,0.025);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease), border-color 0.4s var(--hf-ease), box-shadow 0.4s var(--hf-ease);
}
.ct-hours__card:nth-child(1) { transition-delay: 0.35s; }
.ct-hours__card:nth-child(2) { transition-delay: 0.5s; }
.ct-hours.is-visible .ct-hours__card {
  opacity: 1;
  transform: translateY(0);
}

.ct-hours__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hf-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--hf-ease);
}
.ct-hours__card:hover::before {
  opacity: 1;
}
.ct-hours__card:hover {
  border-color: rgba(211,175,55,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 30px rgba(211,175,55,0.04);
}

.ct-hours__card-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(211,175,55,0.08);
  border: 1px solid rgba(211,175,55,0.15);
  flex-shrink: 0;
}
.ct-hours__card-icon {
  width: 22px;
  height: 22px;
  color: var(--hf-gold);
}

.ct-hours__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hf-white);
  line-height: 1.3;
}

.ct-hours__card-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(240,237,230,0.5);
  margin-top: -8px;
}

/* ─── Schedule Table (Left Card) ─── */

.ct-hours__schedule {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-hours__schedule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(240,237,230,0.05);
  transition: background 0.3s var(--hf-ease);
}
.ct-hours__schedule-row:last-child {
  border-bottom: none;
}
.ct-hours__schedule-row.is-today {
  background: rgba(211,175,55,0.04);
  margin: 0 -16px;
  padding: 11px 16px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.ct-hours__schedule-day {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240,237,230,0.7);
  min-width: 90px;
}
.ct-hours__schedule-row.is-today .ct-hours__schedule-day {
  color: var(--hf-gold);
  font-weight: 700;
}

.ct-hours__schedule-sep {
  flex: 1;
  height: 1px;
  background: rgba(240,237,230,0.06);
  min-width: 20px;
}

.ct-hours__schedule-time {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(240,237,230,0.55);
  white-space: nowrap;
}
.ct-hours__schedule-row.is-today .ct-hours__schedule-time {
  color: var(--hf-white);
  font-weight: 600;
}

/* Live Status Badge */
.ct-hours__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 4px;
  align-self: flex-start;
}
.ct-hours__status.is-open {
  color: #34d399;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
}
.ct-hours__status.is-closed {
  color: rgba(240,237,230,0.5);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.1);
}

.ct-hours__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ct-hours__status.is-open .ct-hours__status-dot {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
  animation: ctHoursStatusPulse 2s ease-in-out infinite;
}
.ct-hours__status.is-closed .ct-hours__status-dot {
  background: rgba(240,237,230,0.35);
}

@keyframes ctHoursStatusPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ─── Response Bars (Right Card) ─── */

.ct-hours__response-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-hours__response-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-hours__response-bar-wrap {
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: rgba(240,237,230,0.06);
  overflow: hidden;
}

.ct-hours__response-bar {
  height: 100%;
  border-radius: 100px;
  background: var(--bar-color, var(--hf-gold));
  width: 0%;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.ct-hours.is-visible .ct-hours__response-bar {
  width: calc(var(--bar-target) * 1%);
}

.ct-hours__response-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ct-hours__response-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(240,237,230,0.65);
}

.ct-hours__response-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hf-white);
}

/* Note Strip */
.ct-hours__response-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(211,175,55,0.05);
  border: 1px solid rgba(211,175,55,0.12);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(240,237,230,0.6);
  margin-top: 4px;
}
.ct-hours__response-note strong {
  color: var(--hf-gold);
}
.ct-hours__response-note-icon {
  width: 18px;
  height: 18px;
  color: var(--hf-gold);
  flex-shrink: 0;
}

/* ─── Bottom CTA ─── */

.ct-hours__cta-wrap {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.65s;
}
.ct-hours.is-visible .ct-hours__cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

.ct-hours__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hf-black);
  background: var(--hf-gold);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
}
.ct-hours__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-hours__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}
.ct-hours__cta:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}
.ct-hours__cta-icon {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 7 — QUICK HELP / CONTACT FAQ
   Premium accordion with search + category tabs
   ═══════════════════════════════════════════════════════ */

.ct-faq {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 800px;
  width: 100%;
  align-items: center;
}

/* ─── Header ─── */

.ct-faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ct-faq__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
  transition-delay: 0.1s;
}
.ct-faq.is-visible .ct-faq__tag {
  opacity: 1;
  transform: translateY(0);
}
.ct-faq__tag::before,
.ct-faq__tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--hf-gold);
}

.ct-faq__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hf-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.2s;
}
.ct-faq.is-visible .ct-faq__heading {
  opacity: 1;
  transform: translateY(0);
}

.ct-faq__sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(240,237,230,0.55);
  max-width: 520px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.3s;
}
.ct-faq.is-visible .ct-faq__sub {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Search ─── */

.ct-faq__search-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.35s;
}
.ct-faq.is-visible .ct-faq__search-wrap {
  opacity: 1;
  transform: translateY(0);
}

.ct-faq__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: rgba(240,237,230,0.3);
  pointer-events: none;
  transition: color 0.3s var(--hf-ease);
}
.ct-faq__search:focus ~ .ct-faq__search-icon,
.ct-faq__search-wrap:focus-within .ct-faq__search-icon {
  color: var(--hf-gold);
}

.ct-faq__search {
  width: 100%;
  padding: 13px 40px 13px 44px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--hf-white);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.1);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease);
}
.ct-faq__search::placeholder {
  color: rgba(240,237,230,0.3);
}
.ct-faq__search:focus {
  border-color: rgba(211,175,55,0.4);
  box-shadow: 0 0 0 3px rgba(211,175,55,0.08);
  background: rgba(240,237,230,0.06);
}

.ct-faq__search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(240,237,230,0.08);
  border-radius: 50%;
  color: rgba(240,237,230,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s var(--hf-ease), color 0.2s var(--hf-ease);
  font-family: 'Inter', system-ui, sans-serif;
}
.ct-faq__search-clear[hidden] {
  display: none;
}
.ct-faq__search-clear:hover {
  background: rgba(240,237,230,0.14);
  color: var(--hf-white);
}

/* ─── Category Tabs ─── */

.ct-faq__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.4s;
}
.ct-faq.is-visible .ct-faq__tabs {
  opacity: 1;
  transform: translateY(0);
}

.ct-faq__tab {
  padding: 7px 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240,237,230,0.55);
  background: rgba(240,237,230,0.03);
  border: 1px solid rgba(240,237,230,0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s var(--hf-ease), background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), transform 0.3s var(--hf-ease);
}
.ct-faq__tab:hover {
  color: rgba(240,237,230,0.8);
  background: rgba(240,237,230,0.06);
  border-color: rgba(240,237,230,0.14);
  transform: translateY(-1px);
}
.ct-faq__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(211,175,55,0.4);
}
.ct-faq__tab.is-active {
  color: var(--hf-black);
  background: var(--hf-gold);
  border-color: var(--hf-gold);
  box-shadow: 0 2px 12px rgba(211,175,55,0.25);
}

/* ─── Accordion ─── */

.ct-faq__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--hf-ease), transform 0.8s var(--hf-ease);
  transition-delay: 0.45s;
}
.ct-faq.is-visible .ct-faq__accordion {
  opacity: 1;
  transform: translateY(0);
}

.ct-faq__item {
  background: rgba(240,237,230,0.025);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s var(--hf-ease), box-shadow 0.35s var(--hf-ease), opacity 0.35s var(--hf-ease), max-height 0.35s var(--hf-ease);
}
.ct-faq__item:hover {
  border-color: rgba(211,175,55,0.12);
}
.ct-faq__item.is-open {
  border-color: rgba(211,175,55,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 0 20px rgba(211,175,55,0.03);
}
.ct-faq__item.is-hidden {
  display: none;
}

/* Question button */
.ct-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--hf-white);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s var(--hf-ease);
}
.ct-faq__question:hover .ct-faq__question-text {
  color: var(--hf-gold);
}
.ct-faq__question:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(211,175,55,0.4);
  border-radius: 14px;
}

.ct-faq__question-text {
  transition: color 0.3s var(--hf-ease);
}

.ct-faq__question-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(240,237,230,0.35);
  transition: transform 0.4s var(--hf-ease), color 0.3s var(--hf-ease);
}
.ct-faq__question-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ct-faq__item.is-open .ct-faq__question-icon {
  transform: rotate(45deg);
  color: var(--hf-gold);
}

/* Answer panel */
.ct-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--hf-ease);
}

.ct-faq__answer-inner {
  padding: 0 24px 22px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(240,237,230,0.6);
}
.ct-faq__answer-inner p {
  margin: 0;
}
.ct-faq__answer-inner a {
  color: var(--hf-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--hf-ease);
}
.ct-faq__answer-inner a:hover {
  color: var(--hf-cream);
}
.ct-faq__answer-inner strong {
  color: rgba(240,237,230,0.85);
  font-weight: 650;
}

/* Top gold line on open */
.ct-faq__item::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--hf-gold) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.35s var(--hf-ease);
}
.ct-faq__item.is-open::before {
  opacity: 1;
}

/* ─── No Results ─── */

.ct-faq__no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
  color: rgba(240,237,230,0.45);
  font-size: 0.88rem;
  line-height: 1.6;
}
.ct-faq__no-results[hidden] {
  display: none;
}
.ct-faq__no-results-icon {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}
.ct-faq__no-results a {
  color: var(--hf-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Bottom CTA ─── */

.ct-faq__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.6s;
}
.ct-faq.is-visible .ct-faq__cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

.ct-faq__cta-lead {
  font-size: 0.84rem;
  color: rgba(240,237,230,0.45);
  font-weight: 500;
}

.ct-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hf-black);
  background: var(--hf-gold);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211,175,55,0.2);
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease);
}
.ct-faq__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(211,175,55,0.35);
}
.ct-faq__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}
.ct-faq__cta:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}
.ct-faq__cta-icon {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 8 — FINAL REASSURANCE CTA
   Cinematic closing block with layered depth
   ═══════════════════════════════════════════════════════ */

.ct-final {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
  z-index: 1;
}

.ct-final__inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  padding: 72px 48px;
  border-radius: 24px;
  background: rgba(240,237,230,0.02);
  border: 1px solid rgba(240,237,230,0.06);
  overflow: hidden;
}

/* ─── Decorative Elements ─── */

.ct-final__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,175,55,0.1) 0%, rgba(211,175,55,0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: ctFinalGlow 6s ease-in-out infinite alternate;
}
@keyframes ctFinalGlow {
  from { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
  to   { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.ct-final__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(211,175,55,0.06);
  pointer-events: none;
}
.ct-final__ring--1 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -100px;
  animation: ctFinalRingFloat 8s ease-in-out infinite alternate;
}
.ct-final__ring--2 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: -60px;
  border-color: rgba(211,175,55,0.04);
  animation: ctFinalRingFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes ctFinalRingFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8px, -8px) scale(1.05); }
}

/* ─── Content ─── */

.ct-final__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.ct-final__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--hf-ease), transform 0.6s var(--hf-ease);
  transition-delay: 0.1s;
}
.ct-final.is-visible .ct-final__tag {
  opacity: 1;
  transform: translateY(0);
}
.ct-final__tag::before,
.ct-final__tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--hf-gold);
}

.ct-final__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--hf-white);
  max-width: 640px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--hf-ease), transform 0.8s var(--hf-ease);
  transition-delay: 0.2s;
}
.ct-final.is-visible .ct-final__heading {
  opacity: 1;
  transform: translateY(0);
}

.ct-final__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240,237,230,0.55);
  max-width: 520px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.3s;
}
.ct-final.is-visible .ct-final__sub {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Trust Signals ─── */

.ct-final__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.4s;
}
.ct-final.is-visible .ct-final__trust {
  opacity: 1;
  transform: translateY(0);
}

.ct-final__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240,237,230,0.5);
}

.ct-final__trust-icon {
  width: 16px;
  height: 16px;
  color: var(--hf-gold);
  flex-shrink: 0;
}

.ct-final__trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(240,237,230,0.15);
  flex-shrink: 0;
}

/* ─── Buttons ─── */

.ct-final__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.5s;
}
.ct-final.is-visible .ct-final__buttons {
  opacity: 1;
  transform: translateY(0);
}

.ct-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--hf-ease), box-shadow 0.3s var(--hf-ease), background 0.3s var(--hf-ease), border-color 0.3s var(--hf-ease);
}
.ct-final__btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}
.ct-final__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Primary — gold solid */
.ct-final__btn--primary {
  color: var(--hf-black);
  background: var(--hf-gold);
  box-shadow: 0 4px 20px rgba(211,175,55,0.25), 0 0 0 0 rgba(211,175,55,0);
}
.ct-final__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(211,175,55,0.4), 0 0 40px rgba(211,175,55,0.1);
}
.ct-final__btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.5);
}

/* Secondary — outline gold */
.ct-final__btn--secondary {
  color: var(--hf-gold);
  background: transparent;
  border: 1px solid rgba(211,175,55,0.3);
}
.ct-final__btn--secondary:hover {
  background: rgba(211,175,55,0.06);
  border-color: rgba(211,175,55,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(211,175,55,0.12);
}
.ct-final__btn--secondary:focus-visible {
  box-shadow: 0 0 0 3px rgba(211,175,55,0.35);
}

/* Tertiary — ghost light */
.ct-final__btn--tertiary {
  color: rgba(240,237,230,0.65);
  background: rgba(240,237,230,0.04);
  border: 1px solid rgba(240,237,230,0.08);
}
.ct-final__btn--tertiary:hover {
  color: var(--hf-white);
  background: rgba(240,237,230,0.08);
  border-color: rgba(240,237,230,0.16);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ct-final__btn--tertiary:focus-visible {
  box-shadow: 0 0 0 3px rgba(240,237,230,0.2);
}

/* ─── Closing Note ─── */

.ct-final__note {
  font-size: 0.78rem;
  color: rgba(240,237,230,0.35);
  font-weight: 500;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--hf-ease), transform 0.7s var(--hf-ease);
  transition-delay: 0.6s;
}
.ct-final.is-visible .ct-final__note {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ct-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
  .ct-hero__card-col {
    order: 2;
  }
  .ct-hero__card {
    max-width: 100%;
  }
  .ct-hero__header {
    align-items: center;
    text-align: center;
  }
  .ct-hero__tag {
    align-self: center;
  }
  .ct-hero__heading {
    max-width: 100%;
    text-align: center;
  }
  .ct-hero__sub {
    max-width: 100%;
    text-align: center;
  }
  .ct-hero__buttons {
    justify-content: center;
  }
  .ct-hero__trust {
    justify-content: center;
    text-align: center;
  }
  .ct-hero__trust-text {
    max-width: 100%;
  }
  /* Section 2 */
  .ct-options__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  /* Section 3 */
  .ct-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 680px;
  }
  .ct-form__info-col {
    position: static;
    text-align: center;
    align-items: center;
  }
  .ct-form__tag {
    align-self: center;
  }
  .ct-form__support {
    text-align: left;
  }
  .ct-form__alt {
    align-items: center;
  }
  .ct-form__steps {
    align-items: center;
  }
  /* Section 4 */
  .ct-expect__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Section 5 */
  .ct-area__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .ct-area__sub {
    max-width: 600px;
    margin: 0 auto;
  }
  .ct-area__cities {
    justify-content: center;
  }
  .ct-area__checker {
    align-items: center;
  }
  .ct-area__checker-row {
    width: 100%;
    max-width: 440px;
  }
  .ct-area__cta-wrap {
    justify-content: center;
  }
  .ct-area__map-wrap {
    max-width: 360px;
  }
  /* Section 6 */
  .ct-hours__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ct-hours__inner {
    gap: 40px;
  }
  /* Section 7 */
  .ct-faq__inner {
    max-width: 100%;
  }
  /* Section 8 */
  .ct-final__inner {
    padding: 60px 36px;
  }
  .ct-final__ring--1 {
    width: 260px;
    height: 260px;
  }
  .ct-final__ring--2 {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .ct-hero {
    padding: 90px 5vw 60px;
  }
  .ct-hero__inner {
    gap: 32px;
  }
  .ct-hero__buttons {
    flex-direction: column;
    width: 100%;
  }
  .ct-hero__btn {
    width: 100%;
    justify-content: center;
  }
  .ct-hero__card-content {
    padding: 24px 20px;
  }
  /* Section 2 */
  .ct-options {
    padding: 80px 5vw 60px;
  }
  .ct-options__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ct-options__inner {
    gap: 40px;
  }
  .ct-options__card {
    padding: 26px 22px 24px;
  }
  /* Section 3 */
  .ct-form {
    padding: 80px 5vw 60px;
  }
  .ct-form__row,
  .ct-form__row--thirds {
    grid-template-columns: 1fr;
  }
  .ct-form__group {
    padding: 20px 18px;
  }
  .ct-form__photo-guide-grid {
    grid-template-columns: 1fr;
  }
  /* Section 4 */
  .ct-expect {
    padding: 80px 5vw 60px;
  }
  .ct-expect__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ct-expect__card {
    flex-direction: row;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 14px;
  }
  .ct-expect__card-tip {
    display: none;
  }
  /* Section 5 */
  .ct-area {
    padding: 80px 5vw 60px;
  }
  .ct-area__inner {
    gap: 40px;
  }
  .ct-area__cities {
    gap: 6px;
  }
  .ct-area__city-pill {
    padding: 5px 12px;
    font-size: 0.74rem;
  }
  .ct-area__checker-row {
    flex-direction: column;
  }
  .ct-area__checker-btn {
    width: 100%;
    justify-content: center;
  }
  .ct-area__cta-wrap {
    flex-direction: column;
    width: 100%;
  }
  .ct-area__cta {
    width: 100%;
    justify-content: center;
  }
  .ct-area__map-wrap {
    max-width: 300px;
  }
  .ct-area__map-legend {
    gap: 14px;
  }
  /* Section 6 */
  .ct-hours {
    padding: 80px 5vw 60px;
  }
  .ct-hours__card {
    padding: 28px 24px 24px;
  }
  .ct-hours__schedule-day {
    min-width: 80px;
    font-size: 0.82rem;
  }
  .ct-hours__schedule-time {
    font-size: 0.8rem;
  }
  .ct-hours__response-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  /* Section 7 */
  .ct-faq {
    padding: 80px 5vw 60px;
  }
  .ct-faq__inner {
    gap: 28px;
  }
  .ct-faq__question {
    padding: 18px 20px;
    font-size: 0.88rem;
    gap: 12px;
  }
  .ct-faq__answer-inner {
    padding: 0 20px 18px;
    font-size: 0.84rem;
  }
  .ct-faq__tabs {
    gap: 6px;
  }
  .ct-faq__tab {
    padding: 6px 14px;
    font-size: 0.74rem;
  }
  /* Section 8 */
  .ct-final {
    padding: 80px 5vw 60px;
  }
  .ct-final__inner {
    padding: 52px 28px;
  }
  .ct-final__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }
  .ct-final__btn {
    width: 100%;
    justify-content: center;
  }
  .ct-final__trust {
    gap: 12px;
  }
  .ct-final__trust-sep {
    display: none;
  }
  .ct-final__ring--1,
  .ct-final__ring--2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .ct-hero {
    padding: 80px 4vw 50px;
  }
  .ct-hero__btn {
    padding: 13px 20px;
    font-size: 0.84rem;
  }
  .ct-hero__card-item {
    padding: 12px 12px;
    gap: 10px;
  }
  .ct-hero__card-item-icon {
    width: 36px;
    height: 36px;
  }
  .ct-hero__card-item-icon svg {
    width: 16px;
    height: 16px;
  }
  .ct-hero__card-item-value {
    font-size: 0.8rem;
  }
  /* Section 2 */
  .ct-options {
    padding: 70px 4vw 50px;
  }
  .ct-options__card {
    padding: 22px 18px 20px;
  }
  .ct-options__card-icon-wrap {
    width: 42px;
    height: 42px;
  }
  .ct-options__card-icon {
    width: 19px;
    height: 19px;
  }
  /* Section 3 */
  .ct-form {
    padding: 70px 4vw 50px;
  }
  .ct-form__group {
    padding: 18px 14px;
  }
  .ct-form__photo-thumb {
    width: 60px;
    height: 60px;
  }
  /* Section 4 */
  .ct-expect {
    padding: 70px 4vw 50px;
  }
  .ct-expect__card {
    padding: 18px 16px;
  }
  /* Section 5 */
  .ct-area {
    padding: 70px 4vw 50px;
  }
  .ct-area__heading {
    font-size: 1.4rem;
  }
  .ct-area__sub {
    font-size: 0.88rem;
  }
  .ct-area__city-pill {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  .ct-area__map-wrap {
    max-width: 260px;
  }
  /* Section 6 */
  .ct-hours {
    padding: 70px 4vw 50px;
  }
  .ct-hours__card {
    padding: 24px 20px 20px;
    gap: 16px;
  }
  .ct-hours__card-title {
    font-size: 1rem;
  }
  .ct-hours__heading {
    font-size: 1.4rem;
  }
  .ct-hours__schedule-row {
    padding: 9px 0;
  }
  .ct-hours__response-list {
    gap: 14px;
  }
  /* Section 7 */
  .ct-faq {
    padding: 70px 4vw 50px;
  }
  .ct-faq__heading {
    font-size: 1.4rem;
  }
  .ct-faq__question {
    padding: 16px 16px;
    font-size: 0.84rem;
  }
  .ct-faq__answer-inner {
    padding: 0 16px 16px;
    font-size: 0.82rem;
  }
  .ct-faq__question-icon {
    width: 18px;
    height: 18px;
  }
  .ct-faq__search {
    font-size: 0.84rem;
    padding: 12px 38px 12px 40px;
  }
  .ct-faq__tab {
    padding: 5px 12px;
    font-size: 0.7rem;
  }
  /* Section 8 */
  .ct-final {
    padding: 70px 4vw 50px;
  }
  .ct-final__inner {
    padding: 44px 20px;
    border-radius: 18px;
  }
  .ct-final__heading {
    font-size: 1.5rem;
  }
  .ct-final__sub {
    font-size: 0.88rem;
  }
  .ct-final__btn {
    padding: 14px 24px;
    font-size: 0.86rem;
  }
  .ct-final__trust-item {
    font-size: 0.72rem;
  }
}

@media (min-width: 2200px) {
  .ct-hero__inner {
    max-width: 1500px;
    gap: 80px;
  }
  .ct-hero__heading {
    font-size: 3.2rem;
  }
  .ct-hero__card {
    max-width: 500px;
  }
  .ct-hero__card-content {
    padding: 40px 36px;
    gap: 24px;
  }
  /* Section 2 */
  .ct-options__inner {
    max-width: 1500px;
  }
  .ct-options__card {
    padding: 38px 30px 34px;
  }
  /* Section 3 */
  .ct-form__inner {
    max-width: 1500px;
    grid-template-columns: 420px 1fr;
    gap: 72px;
  }
  /* Section 4 */
  .ct-expect__inner {
    max-width: 1500px;
  }
  .ct-expect__card {
    padding: 34px 26px 30px;
  }
  /* Section 5 */
  .ct-area__inner {
    max-width: 1500px;
    gap: 80px;
  }
  .ct-area__heading {
    font-size: 2.8rem;
  }
  .ct-area__map-wrap {
    max-width: 520px;
  }
  /* Section 6 */
  .ct-hours__inner {
    max-width: 1400px;
  }
  .ct-hours__heading {
    font-size: 2.8rem;
  }
  .ct-hours__card {
    padding: 44px 40px 38px;
  }
  /* Section 7 */
  .ct-faq__inner {
    max-width: 960px;
  }
  .ct-faq__heading {
    font-size: 2.8rem;
  }
  .ct-faq__question {
    padding: 24px 28px;
    font-size: 1rem;
  }
  .ct-faq__answer-inner {
    padding: 0 28px 26px;
    font-size: 0.94rem;
  }
  /* Section 8 */
  .ct-final__inner {
    max-width: 1060px;
    padding: 88px 64px;
  }
  .ct-final__heading {
    font-size: 3.4rem;
  }
  .ct-final__sub {
    font-size: 1.02rem;
  }
  .ct-final__btn {
    padding: 17px 36px;
    font-size: 0.96rem;
  }
}

@media (min-width: 3800px) {
  .ct-hero__inner {
    max-width: 2000px;
    gap: 120px;
  }
  .ct-hero__heading {
    font-size: 4rem;
  }
  .ct-hero__card {
    max-width: 600px;
  }
  /* Section 2 */
  .ct-options__inner {
    max-width: 2000px;
  }
  .ct-options__card {
    padding: 44px 36px 40px;
    gap: 20px;
  }
  .ct-options__card-title {
    font-size: 1.3rem;
  }
  /* Section 3 */
  .ct-form__inner {
    max-width: 2000px;
    grid-template-columns: 500px 1fr;
    gap: 100px;
  }
  /* Section 4 */
  .ct-expect__inner {
    max-width: 2000px;
  }
  .ct-expect__card {
    padding: 40px 32px 36px;
    gap: 18px;
  }
  .ct-expect__card-title {
    font-size: 1.06rem;
  }
  /* Section 5 */
  .ct-area__inner {
    max-width: 2000px;
    gap: 120px;
  }
  .ct-area__heading {
    font-size: 3.4rem;
  }
  .ct-area__map-wrap {
    max-width: 600px;
  }
  /* Section 6 */
  .ct-hours__inner {
    max-width: 1800px;
  }
  .ct-hours__heading {
    font-size: 3.4rem;
  }
  .ct-hours__card {
    padding: 52px 48px 44px;
  }
  /* Section 7 */
  .ct-faq__inner {
    max-width: 1200px;
  }
  .ct-faq__heading {
    font-size: 3.4rem;
  }
  .ct-faq__question {
    padding: 28px 34px;
    font-size: 1.1rem;
  }
  .ct-faq__answer-inner {
    padding: 0 34px 30px;
    font-size: 1rem;
  }
  /* Section 8 */
  .ct-final__inner {
    max-width: 1400px;
    padding: 110px 80px;
  }
  .ct-final__heading {
    font-size: 4.2rem;
  }
  .ct-final__sub {
    font-size: 1.1rem;
    max-width: 620px;
  }
  .ct-final__btn {
    padding: 20px 42px;
    font-size: 1.04rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-hero__tag,
  .ct-hero__heading,
  .ct-hero__sub,
  .ct-hero__buttons,
  .ct-hero__trust,
  .ct-hero__card-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-hero__trust-dot,
  .ct-hero__card-status-dot {
    animation: none !important;
    opacity: 1 !important;
  }
  /* Section 2 */
  .ct-options__tag,
  .ct-options__heading,
  .ct-options__sub,
  .ct-options__card,
  .ct-options__assurance {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Section 3 */
  .ct-form__info-col,
  .ct-form__form-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Section 4 */
  .ct-expect__tag,
  .ct-expect__heading,
  .ct-expect__sub,
  .ct-expect__card,
  .ct-expect__cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-expect__card-tip {
    max-height: none !important;
    opacity: 1 !important;
    padding: 12px 14px !important;
    margin-top: 0 !important;
  }
  /* Section 5 */
  .ct-area__info-col,
  .ct-area__tag,
  .ct-area__heading,
  .ct-area__sub,
  .ct-area__cities,
  .ct-area__checker,
  .ct-area__cta-wrap,
  .ct-area__map-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-area__map-glow,
  .ct-area__map-dot-pulse {
    animation: none !important;
  }
  /* Section 6 */
  .ct-hours__tag,
  .ct-hours__heading,
  .ct-hours__sub,
  .ct-hours__card,
  .ct-hours__cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-hours__status-dot {
    animation: none !important;
  }
  .ct-hours__response-bar {
    transition: none !important;
  }
  /* Section 7 */
  .ct-faq__tag,
  .ct-faq__heading,
  .ct-faq__sub,
  .ct-faq__search-wrap,
  .ct-faq__tabs,
  .ct-faq__accordion,
  .ct-faq__cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-faq__answer {
    transition: none !important;
  }
  .ct-faq__question-icon {
    transition: none !important;
  }
  /* Section 8 */
  .ct-final__tag,
  .ct-final__heading,
  .ct-final__sub,
  .ct-final__trust,
  .ct-final__buttons,
  .ct-final__note {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ct-final__glow,
  .ct-final__ring {
    animation: none !important;
  }
}
