/* ========================================
   FOX & CO. BRAND VARIABLES
   ======================================== */

:root {
    --midnight-navy: #0C1424;
    --regal-gold: #D5B26E;
    --platinum-grey: #C9CDD4;
    --soft-ivory: #F5F2EA;
    --deep-slate: #1F2937;
    --royal-merlot: #6B2F3A;

    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
}

/* ========================================
   BASE STYLES
   ======================================== */

html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

.fox-body {
  overflow-x: hidden;
}

body {
    background: var(--midnight-navy);
    color: var(--soft-ivory);
    font-family: var(--font-sans);
}

a {
    text-decoration: none;
}

.fox-container {
    padding-left: 40px;
    padding-right: 40px;
}

.fox-inner-container {
    padding-left: 20px;
    padding-right: 20px;
}

/* ========================================
   NAVBAR
   ======================================== */

.fox-navbar {
    background: rgba(12, 20, 36, 0.92);
    border-bottom: 1px solid rgba(213, 178, 110, 0.15);
    backdrop-filter: blur(12px);
    padding: 18px 0;
}

.fox-brand {
    gap: 14px;
}

.fox-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(213, 178, 110, 0.95) 0%, rgba(213, 178, 110, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-navy);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease;
}

.fox-brand:hover .fox-brand-mark {
    transform: translateY(-2px);
}

.fox-brand-name {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.4px;
    color: var(--soft-ivory);
    line-height: 1.1;
}

.fox-brand-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(201, 205, 212, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.fox-nav-links {
    gap: 6px;
}

.fox-nav-link {
  color: rgba(245, 242, 234, 0.74) !important;
  padding: 10px 16px !important;
  border-radius: 0;
  transition: color 0.25s ease, opacity 0.25s ease;
  font-weight: 500;
  position: relative;
}

.fox-nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: rgba(213, 178, 110, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.fox-nav-link.active {
  color: var(--soft-ivory) !important;
}

.fox-nav-link.active::after {
  transform: scaleX(1);
}

.fox-nav-link:hover {
  color: var(--soft-ivory) !important;
}

.fox-nav-link:hover::after {
  transform: scaleX(1);
}

.fox-nav-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 178, 110, 0.28);
  color: var(--regal-gold);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.fox-nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(213, 178, 110, 0.06);
  border-color: rgba(213, 178, 110, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* ── Fox Toast ─────────────────────────────────────── */

.fox-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 280px;
    max-width: 420px;
    background: #1a1f2e;
    border: 1px solid rgba(212, 175, 83, 0.25);
    border-left: 3px solid #d4af53;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.fox-toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fox-toast.success {
    border-left-color: #4caf79;
}

.fox-toast.error {
    border-left-color: #c0392b;
}

.fox-toast.info {
    border-left-color: #d4af53;
}

.fox-toast-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d4af53;
}

.fox-toast.success .fox-toast-icon {
    background: #4caf79;
}

.fox-toast.error .fox-toast-icon {
    background: #c0392b;
}

.fox-toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0 0 0 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.fox-toast-close:hover {
    color: #f5f0e8;
}

/* ========================================
   HERO
   ======================================== */

.fox-hero {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    padding-top: 120px;
    padding-bottom: 100px;
    display: flex;
    align-items: flex-start;
}

.fox-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(213, 178, 110, 0.045) 0px,
            rgba(213, 178, 110, 0.045) 1px,
            transparent 1px,
            transparent 26px
        ),
        repeating-linear-gradient(
            45deg,
            rgba(213, 178, 110, 0.028) 0px,
            rgba(213, 178, 110, 0.028) 1px,
            transparent 1px,
            transparent 32px
        ),
        radial-gradient(900px circle at 20% 25%, rgba(213, 178, 110, 0.12), transparent 60%),
        radial-gradient(800px circle at 70% 55%, rgba(107, 47, 58, 0.10), transparent 55%),
        linear-gradient(180deg, #070C16 0%, #0C1424 60%, #0C1424 100%);
    pointer-events: none;
    z-index: 0;
}

.fox-hero > * {
    position: relative;
    z-index: 1;
}

.fox-hero-inner {
    align-items: center;
}

.fox-hero-left {
    padding-top: 20px;
}

/* ----------------------------------------
   HERO: Animated Gold Accent Line
   ---------------------------------------- */

.fox-hero-accent-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 26px 0;
}

.fox-accent-line-inner {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--regal-gold), rgba(213, 178, 110, 0.3));
    border-radius: 2px;
    animation: fox-line-expand 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes fox-line-expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 220px;
        opacity: 1;
    }
}

.fox-accent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--regal-gold);
    flex-shrink: 0;
    opacity: 0;
    animation: fox-dot-appear 0.4s ease 1.8s forwards;
    box-shadow: 0 0 8px rgba(213, 178, 110, 0.7);
}

@keyframes fox-dot-appear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shimmer pulse on the line after it expands */
.fox-accent-line-inner::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: fox-line-shimmer 3s ease-in-out 2.2s infinite;
    border-radius: 2px;
}

@keyframes fox-line-shimmer {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(350%); opacity: 0; }
}

/* ----------------------------------------
   HERO: Eyebrow / Subheadline / Trust
   ---------------------------------------- */

.fox-eyebrow {
    display: inline-block;
    border: 1px solid rgba(213, 178, 110, 0.25);
    background: rgba(31, 41, 55, 0.35);
    color: rgba(201, 205, 212, 0.95);
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 28px;
}

.fox-hero-title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 0;
    color: var(--soft-ivory);
    word-break: normal;
    overflow-wrap: break-word;
}

.fox-hero-title-accent {
    color: var(--regal-gold);
}

.fox-hero-subheadline {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: rgba(245, 242, 234, 0.85);
    margin-bottom: 18px;
}

.fox-hero-body {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.85;
    color: rgba(201, 205, 212, 0.88);
    max-width: 640px;
    margin-bottom: 34px;
}

.fox-hero-cta-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.fox-hero-trustline {
    margin-top: 26px;
    font-size: 0.95rem;
    color: rgba(201, 205, 212, 0.75);
    letter-spacing: 0.8px;
}

/* Buttons */
.fox-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.fox-btn-primary {
    background: var(--regal-gold);
    color: var(--midnight-navy);
    border: 1px solid rgba(213, 178, 110, 0.55);
}

.fox-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.fox-btn-secondary {
    background: transparent;
    border: 1px solid rgba(201, 205, 212, 0.25);
    color: var(--soft-ivory);
}

.fox-btn-secondary:hover {
    border-color: rgba(213, 178, 110, 0.45);
    background: rgba(213, 178, 110, 0.06);
    transform: translateY(-3px);
}

/* Scroll indicator */
.fox-scroll-indicator {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0.9;
}

.fox-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(201, 205, 212, 0.75);
    margin-bottom: 10px;
}

.fox-scroll-line {
    width: 2px;
    height: 36px;
    margin: 0 auto;
    background: rgba(213, 178, 110, 0.6);
    border-radius: 2px;
    animation: fox-scroll-pulse 1.6s ease-in-out infinite;
}

@keyframes fox-scroll-pulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ----------------------------------------
   HERO: Floating Stat Card
   ---------------------------------------- */

.fox-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.fox-stat-card {
    background: rgba(15, 25, 45, 0.72);
    border: 1px solid rgba(213, 178, 110, 0.22);
    border-radius: 28px;
    padding: 32px 30px;
    backdrop-filter: blur(18px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(213, 178, 110, 0.06) inset,
        0 1px 0 rgba(213, 178, 110, 0.15) inset;
    width: 100%;
    max-width: 360px;
    animation: fox-card-float 6s ease-in-out infinite;
    position: relative;
}

/* Subtle top gold shimmer edge */
.fox-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 178, 110, 0.6), transparent);
    border-radius: 50%;
}

/* Card Header */
.fox-stat-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.fox-stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(213, 178, 110, 0.9), rgba(213, 178, 110, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--midnight-navy);
    flex-shrink: 0;
}

.fox-stat-card-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--soft-ivory);
    line-height: 1.1;
}

.fox-stat-card-subtitle {
    font-size: 0.75rem;
    color: rgba(201, 205, 212, 0.6);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.fox-stat-card-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(201, 205, 212, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.fox-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
    animation: fox-live-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes fox-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(74, 222, 128, 0.7); }
    50% { opacity: 0.6; box-shadow: 0 0 12px rgba(74, 222, 128, 0.4); }
}

/* Card Divider */
.fox-stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 178, 110, 0.2), transparent);
    margin: 20px 0;
}

/* Stat Grid */
.fox-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
}

.fox-stat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(213, 178, 110, 0.1);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.fox-stat-item:hover {
    background: rgba(213, 178, 110, 0.07);
    border-color: rgba(213, 178, 110, 0.22);
}

.fox-stat-value {
    font-family: var(--font-serif);
    font-weight: 00;
    font-size: 1.55rem;
    color: var(--regal-gold);
    line-height: 1.25;
    margin-bottom: 5px;
}

.fox-stat-label {
    font-size: 0.7rem;
    color: rgba(201, 205, 212, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Card Footer Badges */
.fox-stat-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.fox-stat-badge {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 999px;
    border: 1px solid rgba(213, 178, 110, 0.22);
    color: rgba(213, 178, 110, 0.85);
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(213, 178, 110, 0.06);
}

/* ========================================
   MARQUEE STRIP
   ======================================== */

.fox-marquee-wrap {
    background: rgba(213, 178, 110, 0.06);
    border-top: 1px solid rgba(213, 178, 110, 0.18);
    border-bottom: 1px solid rgba(213, 178, 110, 0.18);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Fade edges */
.fox-marquee-wrap::before,
.fox-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.fox-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--midnight-navy), transparent);
}

.fox-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--midnight-navy), transparent);
}

.fox-marquee-track {
    display: flex;
    overflow: hidden;
}

.fox-marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: fox-marquee-scroll 32s linear infinite;
    will-change: transform;
}

.fox-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes fox-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.fox-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(201, 205, 212, 0.8);
    white-space: nowrap;
}

.fox-marquee-dot {
    color: var(--regal-gold);
    font-size: 0.55rem;
    opacity: 0.75;
}

/* ========================================
   SECTION SEPARATOR
   ======================================== */

.fox-separator {
    height: 1px;
    margin: 0;
    background: linear-gradient(90deg,
            rgba(213, 178, 110, 0.0) 0%,
            rgba(213, 178, 110, 0.35) 50%,
            rgba(213, 178, 110, 0.0) 100%);
}

/* ========================================
   SECTIONS
   ======================================== */

.fox-section {
    padding: 110px 0;
}

.fox-section-ivory {
    background: var(--soft-ivory);
    color: var(--deep-slate);
}

.fox-section-navy {
    background: var(--midnight-navy);
    color: var(--soft-ivory);
}

/* Headings */
.fox-h2 {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 3.6rem;
    margin-bottom: 22px;
    color: var(--deep-slate);
}

.fox-h2-gold {
    color: var(--regal-gold);
}

.fox-lead {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(31, 41, 55, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

.fox-lead-navy {
    color: rgba(201, 205, 212, 0.9);
}

/* ========================================
   CARDS (IVORY)
   ======================================== */

.fox-card-icon i,
.fox-card-icon svg,
.fox-card-icon span {
    display: block;
    line-height: 1;
}

.fox-card {
    border-radius: 26px;
    padding: 46px 34px;
    transition: all 0.35s ease;
    height: 100%;
}

.fox-card-ivory {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(31, 41, 55, 0.10);
    box-shadow: 0 30px 70px rgba(12, 20, 36, 0.10);
}

.fox-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(213, 178, 110, 0.18);
    border: 1px solid rgba(213, 178, 110, 0.25);
    margin-bottom: 22px;
    font-size: 1.6rem;
}

.fox-h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 14px;
    color: var(--deep-slate);
}

.fox-h3-ivory {
    color: var(--soft-ivory);
}

.fox-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(31, 41, 55, 0.78);
    margin: 0;
}

/* ========================================
   PURPOSE PANEL
   ======================================== */

.fox-panel {
    background: rgba(31, 41, 55, 0.55);
    border: 1px solid rgba(213, 178, 110, 0.18);
    border-radius: 28px;
    padding: 50px 42px;
    backdrop-filter: blur(10px);
}

.fox-list {
    margin: 22px 0 0 0;
    padding-left: 18px;
    color: rgba(245, 242, 234, 0.82);
    line-height: 2;
}

.fox-quote-block {
    margin-top: 28px;
    padding: 22px 26px;
    border-left: 3px solid var(--regal-gold);
    background: rgba(31, 41, 55, 0.25);
    border-radius: 14px;
    color: rgba(245, 242, 234, 0.92);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ========================================
   VALUE FEATURES
   ======================================== */

.fox-feature {
    border-radius: 26px;
    padding: 38px 34px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    height: 100%;
    transition: all 0.35s ease;
}

.fox-feature-ivory {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 41, 55, 0.10);
    box-shadow: 0 10px 20px rgba(12, 20, 36, 0.10);
}

.fox-feature-number {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--regal-gold);
    line-height: 1;
    flex-shrink: 0;
}

.fox-learn-teaser {
  margin-top: 20px;
  padding-top: 50px;
}

.fox-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--regal-gold);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.fox-learn-link:hover {
  opacity: 0.7;
}

/* ========================================
   CAROUSEL
   ======================================== */

.fox-carousel {
    padding: 40px 60px;
}

/* Override Bootstrap slide with fade */
#foxCarousel {
    overflow: hidden;
}

#foxCarousel .carousel-inner {
    height: 260px; /* Fixed height — same on all screen sizes */
    position: relative;
}

#foxCarousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.55s ease;
    display: block !important; /* Override Bootstrap's display:none */
    pointer-events: none;
    transform: none !important; /* Kill Bootstrap's slide transform */
}

#foxCarousel .carousel-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

#foxCarousel .carousel-item.carousel-item-next,
#foxCarousel .carousel-item.carousel-item-prev {
    opacity: 0;
    z-index: 1;
}

#foxCarousel .carousel-item.carousel-item-next.carousel-item-start,
#foxCarousel .carousel-item.carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 2;
}

#foxCarousel .carousel-item.active.carousel-item-end,
#foxCarousel .carousel-item.active.carousel-item-start {
    opacity: 0;
    z-index: 1;
}

.fox-testimonial-card {
    background: rgba(31, 41, 55, 0.55);
    border: 1px solid rgba(213, 178, 110, 0.18);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.fox-testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(245, 242, 234, 0.92);
    max-width: 760px;
    margin: 0 auto 18px;
}

.fox-testimonial-author {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(213, 178, 110, 0.85);
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-70%); /* Offset to align with card not indicators */
    background: transparent;
    border: none;
    opacity: 0.7;
    transition: opacity 0.25s ease;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.fox-carousel-arrow {
    font-size: 3.5rem;
    color: var(--soft-ivory);
    font-weight: 300;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Slim line indicators */
.fox-carousel-dots {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0 0;
}

.fox-carousel-dots button {
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background-color: rgba(201, 205, 212, 0.28);
    border: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.fox-carousel-dots button.active {
    background: var(--regal-gold);
    width: 52px; /* Active line is slightly wider */
    box-shadow: 0 0 6px rgba(213, 178, 110, 0.45);
}

/* ========================================
   CONTACT
   ======================================== */

#contact {
    isolation: isolate;
}

.fox-required {
    color: #e53e3e;
    margin-left: 2px;
}

.fox-contact-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(31, 41, 55, 0.10);
    border-radius: 30px;
    padding: 55px 50px 80px 50px;
    box-shadow: 0 40px 90px rgba(12, 20, 36, 0.12);
    position: relative;
    z-index: 100;
    overflow: visible;
    min-height: 600px;
}

.fox-form-group {
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.fox-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 100;
}

.fox-form-row:last-of-type {
    padding-bottom: 0px;
}

.fox-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(31, 41, 55, 0.75);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.fox-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--deep-slate);
    transition: all 0.25s ease;
}

/* Kill browser autofill yellow/grey/blue background on all inputs */
.fox-form-input:-webkit-autofill,
.fox-form-input:-webkit-autofill:hover,
.fox-form-input:-webkit-autofill:focus,
.fox-form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.95) inset !important;
    -webkit-text-fill-color: var(--deep-slate) !important;
    transition: background-color 9999s ease-in-out 0s;
}

.fox-form-input:focus {
    outline: none;
    border-color: rgba(213, 178, 110, 0.6);
    box-shadow: 0 0 0 3px rgba(213, 178, 110, 0.1);
    background: rgba(255, 255, 255, 1);
}

.fox-form-input.loading {
    background: rgba(255, 255, 255, 0.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23D5B26E' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' opacity='.25'/%3E%3Cpath fill='%23D5B26E' d='M12,4a8,8,0,0,1,7.89,6.7A1.53,1.53,0,0,0,21.38,12h0a1.5,1.5,0,0,0,1.48-1.75,11,11,0,0,0-21.72,0A1.5,1.5,0,0,0,2.62,12h0a1.53,1.53,0,0,0,1.49-1.3A8,8,0,0,1,12,4Z'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='0.75s' values='0 12 12;360 12 12' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right: 45px;
}

.fox-form-input::placeholder {
    color: rgba(31, 41, 55, 0.4);
}

.fox-form-message {
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.fox-form-message.show {
    display: block;
}

.fox-form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.fox-form-message.info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.fox-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* validation form styling */

.fox-field-error .fox-form-input,
  .fox-field-error .fox-select-trigger {
    border-color: #e53e3e !important;
  }

  .fox-error-msg {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #e53e3e;
  }

/* Backdrop — covers page behind open dropdown on mobile to capture outside taps */
.fox-select-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

.fox-select-backdrop.active {
    display: block;
}

/* Custom Select Dropdown */
.fox-custom-select {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.fox-select-trigger {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95) !important;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--deep-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-text-fill-color: var(--deep-slate);
    /* Suppress any browser autofill colouring */
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.95) inset !important;
    box-shadow: none;
}

.fox-select-trigger:hover {
    border-color: rgba(213, 178, 110, 0.4);
}

.fox-select-trigger.active {
    border-color: rgba(213, 178, 110, 0.6);
    box-shadow: 0 0 0 3px rgba(213, 178, 110, 0.1);
}

.fox-select-value {
    flex: 1;
}

.fox-select-value.placeholder {
    color: rgba(31, 41, 55, 0.4);
}

.fox-select-arrow {
    transition: transform 0.25s ease;
    color: rgba(31, 41, 55, 0.5);
}

.fox-select-trigger.active .fox-select-arrow {
    transform: rotate(180deg);
}

.fox-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(12, 20, 36, 0.15);
    z-index: 9999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fox-select-dropdown.active {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
}

.fox-select-search {
    padding: 12px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.fox-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(31, 41, 55, 0.15);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--deep-slate);
    transition: all 0.25s ease;
}

.fox-search-input:focus {
    outline: none;
    border-color: rgba(213, 178, 110, 0.6);
    box-shadow: 0 0 0 2px rgba(213, 178, 110, 0.1);
}

.fox-select-options {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px;
}

.fox-select-options::-webkit-scrollbar {
    width: 8px;
}

.fox-select-options::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.05);
    border-radius: 10px;
}

.fox-select-options::-webkit-scrollbar-thumb {
    background: rgba(213, 178, 110, 0.4);
    border-radius: 10px;
}

.fox-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(213, 178, 110, 0.6);
}

.fox-option {
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--deep-slate);
    font-size: 0.95rem;
}

.fox-option:hover {
    background: rgba(213, 178, 110, 0.12);
}

.fox-option.selected {
    background: rgba(213, 178, 110, 0.2);
    color: var(--deep-slate);
    font-weight: 600;
}

.fox-option.hidden {
    display: none;
}

.fox-option-divider {
    height: 1px;
    background: rgba(31, 41, 55, 0.08);
    margin: 8px 4px;
}

.fox-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.fox-contact-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.fox-contact-row:last-child {
    border-bottom: none;
}

.fox-contact-label {
    font-weight: 600;
    color: rgba(31, 41, 55, 0.75);
    min-width: 160px;
}

.fox-contact-value {
    font-weight: 600;
    color: var(--deep-slate);
    text-align: right;
}

.fox-contact-value a {
    color: var(--deep-slate);
    text-decoration: none;
    border-bottom: 1px solid rgba(213, 178, 110, 0.35);
}

.fox-contact-value a:hover {
    border-bottom-color: rgba(213, 178, 110, 0.75);
}

.fox-contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.fox-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(31, 41, 55, 0.65);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-top: 120px;
}

/* ========================================
   FOOTER
   ======================================== */

.fox-footer {
    background: #070C16;
    border-top: 1px solid rgba(213, 178, 110, 0.12);
    padding: 64px 0 48px 0;
}

.fox-footer-brand {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--soft-ivory);
    margin-bottom: 18px;
}

.fox-footer-links {
    margin-bottom: 18px;
}

.fox-footer-links a {
    color: rgba(201, 205, 212, 0.85);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.fox-footer-links a:hover {
    color: var(--regal-gold);
}

.fox-footer-sep {
    color: rgba(201, 205, 212, 0.35);
    margin: 0 10px;
}

.fox-footer-small {
    font-size: 0.85rem;
    color: rgba(201, 205, 212, 0.65);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1199px) {
    .fox-stat-card {
        max-width: 320px;
    }
}

@media (max-width: 991px) {
    .fox-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fox-navbar {
        padding: 16px 0;
    }

    .navbar-collapse {
    margin-top: 0;
    padding: 0;
    border-top: 0;
    }

    .fox-carousel {
        padding: 20px 45px;
    }

    .fox-testimonial-card {
        padding: 45px 30px;
    }

    #foxCarousel .carousel-inner,
    .fox-testimonial-card {
        height: 280px;
    }

    .fox-section {
        padding: 70px 0;
    }

    /* Stat card stacks below hero text on tablet */
    .fox-hero-right {
        justify-content: flex-start;
        padding-top: 40px;
    }

    .fox-stat-card {
        max-width: 100%;
        animation: none; /* disable float on tablet/mobile for performance */
    }

    /* Accent line slightly shorter on tablet */
    @keyframes fox-line-expand {
        from { width: 0; opacity: 0; }
        to { width: 160px; opacity: 1; }
    }
}

@media (max-width: 768px) {
    .fox-h2 {
        font-size: 2.8rem;
    }

    .fox-hero-subheadline {
        font-size: 1.35rem;
    }

    .fox-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .fox-marquee-wrap::before,
    .fox-marquee-wrap::after {
        width: 40px;
    }
}

@media (max-width: 576px) {

    .fox-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: unset;
        max-width: unset;
        width: calc(100% - 2rem);
    }

    .fox-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .fox-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .fox-scroll-indicator {
        display: none;
    }

    .fox-hero-subheadline {
        font-size: 1.2rem;
    }

    .fox-hero-cta-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .fox-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .fox-h2 {
        font-size: 2.3rem;
    }

    .fox-feature {
        padding: 30px 24px;
    }

    .fox-contact-card {
        padding: 40px 26px 100px 26px;
        min-height: 700px;
    }

    .fox-contact-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fox-contact-value {
        text-align: left;
    }

    .fox-card .fox-p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fox-section {
        padding: 60px 0;
    }

    .fox-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fox-form-row:last-of-type {
        padding-bottom: 0px;
    }

    .fox-form-input {
        padding: 12px 16px;
    }

    .fox-contact-actions {
        margin-top: 20px;
    }

    .fox-disclaimer {
        margin-top: 40px;
    }

    .fox-select-dropdown {
        max-height: 300px;
    }

    .fox-select-dropdown.active {
        max-height: 300px;
    }

    /* Carousel mobile: taller fixed height to fit wrapped text */
    #foxCarousel .carousel-inner,
    .fox-testimonial-card {
        height: 300px;
    }

    .fox-testimonial-card {
        padding: 36px 28px;
    }

    .fox-testimonial-text {
        font-size: 1.25rem;
    }

    .fox-carousel {
        padding: 20px 44px;
    }

    /* Stat card mobile layout */
    .fox-hero-right {
        padding-top: 36px;
    }

    .fox-stat-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .fox-stat-value {
        font-size: 1.3rem;
    }

    .fox-stat-label {
        font-size: 0.65rem;
    }

    .fox-stat-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    /* Accent line on mobile */
    .fox-accent-line-inner {
        animation: fox-line-expand-mobile 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    }

    @keyframes fox-line-expand-mobile {
        from { width: 0; opacity: 0; }
        to { width: 140px; opacity: 1; }
    }

    /* Marquee slightly slower on mobile */
    .fox-marquee-content {
        animation-duration: 24s;
    }

    .fox-marquee-item {
        padding: 0 18px;
        font-size: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .fox-stat-card {
        max-width: 480px;
    }

    .fox-hero-right {
        align-self: center;
        padding-top: 0;
    }

    .fox-stat-value {
        font-size: 2rem;
    }

    .fox-stat-label {
        font-size: 0.8rem;
    }

    .fox-stat-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

@media (min-width: 1400px) {
    .fox-stat-card {
        max-width: 560px;
        padding: 40px 38px;
    }

    .fox-stat-grid {
        gap: 20px 16px;
    }

    .fox-stat-value {
        font-size: 2.4rem;
    }

    .fox-stat-label {
        font-size: 0.85rem;
    }

    .fox-stat-item {
        padding: 22px 18px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fox-stat-card {
        animation: none;
    }

    .fox-accent-line-inner,
    .fox-accent-dot,
    .fox-accent-line-inner::after {
        animation: none;
        width: 200px;
        opacity: 1;
        transform: none;
    }

    .fox-marquee-content {
        animation: none;
    }

    .fox-live-dot {
        animation: none;
    }
}