/* ================================================================
   EZ2FLY — Gold → Orange Gradient Override  (gold-gradient.css)
   Replaces all flat gold (#C9913D) usages with:
     background: linear-gradient(to bottom, #FD951E 0%, #EE7212 35%,
                                            #DE6321 70%, #C03705 100%)

   Loaded last — overrides tokens.css and all page stylesheets.
   Two techniques used:
     · Gradient TEXT  → background-clip: text + text-fill-color: transparent
     · Gradient BG    → background: <gradient> applied directly
   ================================================================ */

/* ── 1. Update flat token values ─────────────────────────────────
   Handles borders, outlines, scrollbars, accents, patterns —
   anything using var(--gold) that is NOT text or a button fill.   */
:root {
  --gold:      #EE7212;
  --gold-lt:   #FD951E;
  --gold-pale: #FEE5C8;

  /* Convenience shorthand used throughout this file */
  --grad-gold: linear-gradient(to bottom, #FD951E 0%, #EE7212 35%, #DE6321 70%, #C03705 100%);

  /* Horizontal variant for wide buttons / banners */
  --grad-gold-h: linear-gradient(to right, #FD951E 0%, #EE7212 35%, #DE6321 70%, #C03705 100%);
}

/* ── 2. Gradient TEXT utility ────────────────────────────────────
   Apply .gold-text to any element for gradient text.
   Also used below as a mixin pattern via direct selector targeting. */
.gold-text,
.gold-grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 3. NAV — logo accent, nav links, CTA ────────────────────── */
.nav-logo-name em,
.nav-mobile-brand em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-cta-link,
.nav-mobile-link.active,
.nav-dropdown a:hover {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Nav CTA button */
.nav-cta-btn,
.nav-mobile-cta {
  background: var(--grad-gold) !important;
  border: none;
  color: #fff !important;
}

/* ── 4. FOOTER ───────────────────────────────────────────────── */
.footer-logo-name em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-link-group-title {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-links li:hover,
.footer-contact-text a:hover {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-social-link.soc-email:hover {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── 5. GLOBAL — section tags, titles, breadcrumbs ───────────── */
.sec-tag {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Underline bar under sec-tag */
.sec-tag::after,
.sec-title::after {
  background: var(--grad-gold) !important;
}

.sec-title em,
.sec-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-hero-title em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.breadcrumb a,
.breadcrumb a:hover {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 6. BUTTONS — all primary / CTA fills ────────────────────── */
.btn-primary,
.btn-hero,
.btn-gold {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.btn-primary:hover,
.btn-hero:hover,
.btn-gold:hover {
  background: var(--grad-gold-h) !important;
  opacity: 0.92;
}

/* Ghost gold button — border + text gradient, fill on hover */
.btn-ghost-gold {
  background: transparent !important;
  border-color: #EE7212 !important;
  /* Gradient text on the label */
  background-image: var(--grad-gold) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.btn-ghost-gold:hover {
  background: var(--grad-gold) !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* Outline / hero-outline variant */
.btn-hero-outline:hover {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── 7. HOME PAGE ────────────────────────────────────────────── */
.hero-badge-label,
.hero-gold,
.hero-badge-num {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-dot.active {
  background: var(--grad-gold) !important;
}

/* Hero CTA bar / divider lines */
.hero-divider,
.hero-bar {
  background: var(--grad-gold-h) !important;
}

.pkg-book-btn:hover,
.pkg-book-btn:focus {
  background: var(--grad-gold) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.pkg-price {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Feature card CTA buttons */
.feat-cta,
.dest-cta-btn,
.pkg-cta-btn {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── 8. CONTACT PAGE ─────────────────────────────────────────── */
.contact-card-label {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-card-value a:hover,
.contact-card-sub a:hover {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.form-footnote a {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Submit button */
.form-submit-btn {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Form focused input border — flat orange (gradient on border not supported) */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #EE7212 !important;
  box-shadow: 0 0 0 3px rgba(238, 114, 18, 0.15) !important;
}

.form-input.valid,
.form-select.valid,
.form-textarea.valid {
  border-color: #EE7212 !important;
}

/* FAQ hover */
.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Contact card top border */
.contact-form-card {
  border-top-color: #EE7212 !important;
}

/* ── 9. DESTINATIONS PAGE ────────────────────────────────────── */
.region-card.active .region-name {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.dest-region-label,
.dest-feat-price,
.dest-price {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.dest-mini-btn {
  background: transparent !important;
  border-color: #EE7212 !important;
  background-image: var(--grad-gold) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.dest-mini-btn:hover {
  background: var(--grad-gold) !important;
  -webkit-text-fill-color: #fff !important;
  border-color: transparent !important;
}

.hl-region {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.dest-tag-badge {
  background: var(--grad-gold) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── 10. PACKAGES PAGE ───────────────────────────────────────── */
.pkgs-count em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Package card CTA */
.pkg-card-cta,
.pkg-card-btn {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* Package price in cards and modal */
.pkg-price-amount,
.pkg-modal-price-amount {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pkg-modal-price-label,
.pkg-modal-section-title {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Modal book button */
.pkg-modal-cta {
  background: var(--grad-gold) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* Bullet accent dots */
.pkg-modal-list li::before,
.pkg-list-item::before {
  color: #EE7212 !important;
}

/* Scrollbar thumb */
.pkg-modal::-webkit-scrollbar-thumb {
  background: var(--grad-gold) !important;
}

/* ── 11. SERVICES PAGE ───────────────────────────────────────── */
.svc-step-num,
.svc-step-label {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.svc-card-more,
.svc-card-item:hover .svc-card-more,
.svc-card-item:hover .svc-card-name {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.svc-card-accent {
  background: var(--grad-gold) !important;
}

.svc-card-item:hover .svc-card-accent {
  background: var(--grad-gold-h) !important;
}

/* Offer tab active state */
.offer-tab.active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.offer-tab:hover {
  border-color: #EE7212 !important;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 12. ABOUT PAGE ──────────────────────────────────────────── */
.vm-tab.active {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-bottom-color: #EE7212 !important;
}

.stat-num {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* About icon badge */
.about-icon-badge,
.team-badge {
  background: var(--grad-gold) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── 13. TURNSTILE GATE ───────────────────────────────────────── */
.ez-gate-logo-name em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ez-gate-divider {
  background: var(--grad-gold-h) !important;
}

.ez-gate-spinner {
  border-top-color: #EE7212 !important;
}

.ez-gate-note a {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 14. GLOBAL SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar-thumb {
  background: var(--grad-gold) !important;
}

/* ── 15. FOCUS OUTLINE ────────────────────────────────────────── */
:focus-visible {
  outline-color: #EE7212 !important;
}

/* ── 16. ANNOUNCE BAND / PROMO STRIP ─────────────────────────── */
.announce-band,
.promo-band {
  background: var(--grad-gold-h) !important;
}
