
        :root {
            --fire: #FF4500;
            --amber: #FF8C00;
            --white: #F5F0EB;
            --black: #080808;
            --carbon: #111111;
            --steel: #1C1C1E;
            --smoke: #2a2a2a;
            --muted: #888;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--black);
            color: var(--white);
            font-family: 'Barlow', sans-serif;
            overflow-x: hidden;
            cursor: none;
        }

        .cursor {
            width: 12px;
            height: 12px;
            background: var(--fire);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
            mix-blend-mode: screen;
        }

        .cursor-ring {
            width: 36px;
            height: 36px;
            border: 1.5px solid rgba(255, 69, 0, 0.5);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transform: translate(-50%, -50%);
            transition: left 0.12s ease, top 0.12s ease, width 0.2s, height 0.2s;
        }

        body:hover .cursor {
            opacity: 1;
        }

        #progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--fire), var(--amber));
            z-index: 9999;
            width: 0%;
            transition: width 0.1s;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 75px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            transition: background 0.5s, backdrop-filter 0.5s;
        }

        header.scrolled {
            background: rgba(8, 8, 8, 0.92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 69, 0, 0.15);
        }

        .logo {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            letter-spacing: 3px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo span {
            color: var(--fire);
        }

        .logo-icon {
            font-size: 1.4rem;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 0.78rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(245, 240, 235, 0.6);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--fire);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--fire);
            color: white;
            border: none;
            padding: 10px 22px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            transition: background 0.3s, transform 0.2s;
        }

        .menu-btn:hover {
            background: var(--amber);
            transform: scale(1.04);
        }

        .menu-btn .hamburger-lines {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .menu-btn .hamburger-lines div {
            width: 16px;
            height: 2px;
            background: white;
            border-radius: 1px;
        }

        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            display: none;
            z-index: 1500;
        }

        .sidebar-overlay.active {
            display: block;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -350px;
            width: 320px;
            height: 100vh;
            background: var(--carbon);
            z-index: 2000;
            padding: 0;
            transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border-left: 1px solid rgba(255, 69, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-top {
            background: var(--fire);
            padding: 30px 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-logo {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            letter-spacing: 3px;
            color: white;
        }

        .close-btn {
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transition: background 0.3s;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .close-btn i {
            color: white;
            font-size: 1rem;
        }

        .sidebar-body {
            padding: 40px 35px;
            flex: 1;
            overflow-y: auto;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 5px;
        }

        .sidebar-nav a {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(245, 240, 235, 0.6);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .sidebar-nav a i {
            color: var(--fire);
            width: 18px;
            font-size: 0.85rem;
        }

        .sidebar-nav a:hover {
            color: var(--white);
            padding-left: 8px;
        }

        .sidebar-socials {
            padding: 25px 35px 35px;
            display: flex;
            gap: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: wrap;
        }

        .sidebar-socials a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 69, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--fire);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .sidebar-socials a:hover {
            background: var(--fire);
            color: white;
            border-color: var(--fire);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 6%;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            transition: opacity 0.8s ease;
        }

        .hero-bg-1 {
            background: linear-gradient(120deg, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.3) 100%), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800') center/cover no-repeat;
        }

        .hero-bg-2 {
            background: linear-gradient(120deg, rgba(8, 8, 8, 0.9) 40%, rgba(255, 69, 0, 0.08) 100%), url('https://images.unsplash.com/photo-1609630875171-b1321377ee65?w=1800') center/cover no-repeat;
            opacity: 0;
        }

        .hero-noise {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
            opacity: 0.35;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 780px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 69, 0, 0.12);
            border: 1px solid rgba(255, 69, 0, 0.4);
            padding: 6px 16px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--fire);
            margin-bottom: 28px;
            clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .hero-badge i {
            font-size: 0.6rem;
        }

        .hero h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3.5rem, 8vw, 7.5rem);
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 28px;
            animation: fadeUp 0.8s ease 0.4s both;
        }

        .hero h1 em {
            font-style: normal;
            -webkit-text-stroke: 1.5px var(--fire);
            color: transparent;
        }

        .hero p {
            font-size: 1.05rem;
            font-weight: 300;
            line-height: 1.7;
            color: rgba(245, 240, 235, 0.65);
            max-width: 480px;
            margin-bottom: 40px;
            animation: fadeUp 0.8s ease 0.6s both;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease 0.8s both;
        }

        .btn-primary {
            background: var(--fire);
            color: white;
            padding: 16px 38px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            transition: background 0.3s, transform 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background: var(--amber);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--white);
            padding: 15px 38px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(245, 240, 235, 0.3);
            cursor: pointer;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-ghost:hover {
            border-color: var(--fire);
            color: var(--fire);
        }

        .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 6%;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            animation: fadeUp 1s ease 1.2s both;
        }

        .scroll-line {
            width: 40px;
            height: 1px;
            background: rgba(255, 69, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--fire);
            animation: scrollSlide 1.8s ease-in-out infinite;
        }

        @keyframes scrollSlide {
            0% {
                left: -100%
            }

            100% {
                left: 100%
            }
        }

        .fog-edge {
            position: absolute;
            bottom: -30px;
            left: 0;
            width: 100%;
            height: 120px;
            background: radial-gradient(ellipse 80% 100% at 50% 100%, var(--black) 50%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }

        .dirt-edge-dark {
            position: relative;
            z-index: 2;
            margin-top: -60px;
            height: 80px;
            background: var(--carbon);
            clip-path: polygon(0 60%, 8% 20%, 15% 55%, 22% 10%, 30% 50%, 38% 5%, 45% 45%, 52% 15%, 60% 55%, 67% 8%, 75% 48%, 82% 18%, 90% 52%, 96% 22%, 100% 50%, 100% 100%, 0 100%);
            pointer-events: none;
        }

        .stats-section {
            background: var(--carbon);
            padding: 0;
            border-top: none;
            border-bottom: 1px solid rgba(255, 69, 0, 0.15);
            position: relative;
        }

        .stats-inner {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .stat-item {
            padding: 60px 40px;
            text-align: center;
            border-right: 1px solid rgba(255, 69, 0, 0.12);
            position: relative;
            overflow: hidden;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--fire), transparent);
            transform: scaleX(0);
            transition: transform 0.6s;
        }

        .stat-item:hover::before {
            transform: scaleX(1);
        }

        .stat-num {
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            line-height: 1;
            color: var(--fire);
            letter-spacing: 2px;
        }

        .stat-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(245, 240, 235, 0.4);
            margin-top: 8px;
        }

        .rally-section {
            background: var(--white);
            background-image: url('https://images.unsplash.com/photo-1551524164-687a55dd1126?w=1800');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--black);
            padding: 120px 6%;
            position: relative;
        }

        .rally-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(245, 240, 235, 0.92);
            z-index: 0;
        }

        .rally-section>* {
            position: relative;
            z-index: 1;
        }

        .rally-section::before {
            content: 'RALLY';
            position: absolute;
            top: -10px;
            left: -20px;
            font-family: 'Bebas Neue', cursive;
            font-size: 25vw;
            color: rgba(0, 0, 0, 0.035);
            letter-spacing: -10px;
            pointer-events: none;
            line-height: 1;
            overflow: hidden;
            max-width: 100%;
        }

        .section-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--fire);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--fire);
        }

        .rally-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .rally-left h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 0.95;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--black);
        }

        .rally-left h2 em {
            font-style: normal;
            -webkit-text-stroke: 1.5px var(--fire);
            color: transparent;
        }

        .rally-left p {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.55);
            margin-bottom: 35px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .step-card {
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 22px;
            position: relative;
            transition: all 0.3s;
            background: rgba(0, 0, 0, 0.03);
        }

        .step-card:hover {
            border-color: var(--fire);
            background: rgba(255, 69, 0, 0.04);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(255, 69, 0, 0.12);
        }

        .step-num {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            line-height: 1;
            color: rgba(0, 0, 0, 0.08);
            position: absolute;
            top: 12px;
            right: 16px;
        }

        .step-card h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 0.82rem;
            color: rgba(0, 0, 0, 0.5);
            line-height: 1.5;
        }

        .step-dot {
            width: 8px;
            height: 8px;
            background: var(--fire);
            border-radius: 50%;
            margin-bottom: 12px;
        }

        .divider-stripe {
            height: 6px;
            background: linear-gradient(90deg, var(--black) 0%, var(--fire) 50%, var(--black) 100%);
        }

        .why-section {
            background: var(--carbon);
            background-image: url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?w=1800');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 6%;
            position: relative;
            overflow: hidden;
        }

        .why-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(8, 8, 8, 0.88);
            z-index: 0;
        }

        .why-section>* {
            position: relative;
            z-index: 1;
        }

        .why-section::after {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 69, 0, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .why-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 70px;
        }

        .why-top h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: 2px;
            line-height: 1;
        }

        .why-top h2 span {
            color: var(--fire);
        }

        .why-top p {
            max-width: 320px;
            font-size: 0.9rem;
            color: rgba(245, 240, 235, 0.45);
            line-height: 1.6;
            text-align: right;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
        }

        .why-card {
            background: var(--steel);
            padding: 35px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }

        .why-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--fire);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .why-card:hover {
            background: #1e1e1e;
            transform: translateY(-6px);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-icon {
            font-size: 1.6rem;
            color: var(--fire);
            margin-bottom: 20px;
        }

        .why-card h4 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 0.8rem;
            color: rgba(245, 240, 235, 0.4);
            line-height: 1.6;
        }

        /* Hire CTA inside why section */
        .hire-cta-wrap {
            text-align: center;
            margin-top: 50px;
        }

        .hire-cta-wrap p {
            color: rgba(245, 240, 235, 0.4);
            font-size: 0.88rem;
            margin-bottom: 18px;
        }

        .tours-section {
            background: var(--black);
            padding: 120px 6%;
        }

        .tours-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .tours-header h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: 2px;
            line-height: 1;
        }

        .tours-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 3px;
        }

        .tour-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .tour-card-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            transition: transform 0.6s ease;
            filter: brightness(0.55);
        }

        .tour-card:first-child .tour-card-img {
            aspect-ratio: 2/3;
        }

        .tour-card:hover .tour-card-img {
            transform: scale(1.08);
            filter: brightness(0.4);
        }

        .tour-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        }

        .tour-tag {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--fire);
            margin-bottom: 8px;
        }

        .tour-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: white;
        }

        .tour-card-hover {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0;
            transition: all 0.3s;
            background: var(--fire);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .tour-card:hover .tour-card-hover {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .testimonials-section {
            background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%);
            padding: 120px 6%;
            position: relative;
            overflow: hidden;
        }

        .test-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .test-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .test-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 35px;
            transition: all 0.4s;
            position: relative;
        }

        .test-card:hover {
            border-color: rgba(255, 69, 0, 0.4);
            background: rgba(255, 69, 0, 0.04);
            transform: translateY(-5px);
        }

        .test-card .quote-mark {
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            line-height: 0.8;
            color: var(--fire);
            opacity: 0.3;
            margin-bottom: 15px;
        }

        .test-card p {
            font-size: 0.9rem;
            line-height: 1.75;
            color: rgba(245, 240, 235, 0.6);
            margin-bottom: 25px;
            font-style: italic;
        }

        .test-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .test-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--fire);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', cursive;
            font-size: 1rem;
            color: white;
            flex-shrink: 0;
        }

        .test-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .test-role {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .stars {
            color: var(--fire);
            font-size: 0.75rem;
            margin-bottom: 4px;
        }

        .cta-band {
            background: var(--fire);
            padding: 80px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-band h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: white;
            letter-spacing: 2px;
        }

        .cta-band p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 8px;
            font-size: 0.95rem;
        }

        .btn-white {
            background: white;
            color: var(--fire);
            padding: 16px 40px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
            transition: all 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-white:hover {
            background: var(--black);
            color: white;
        }

        footer {
            background: var(--carbon);
            border-top: 1px solid rgba(255, 69, 0, 0.2);
            padding: 80px 6% 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: rgba(245, 240, 235, 0.45);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 280px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245, 240, 235, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
            clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
        }

        .footer-socials a:hover {
            background: var(--fire);
            border-color: var(--fire);
            color: white;
        }

        .footer-col h5 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--fire);
            margin-bottom: 24px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            font-size: 0.87rem;
            color: rgba(245, 240, 235, 0.45);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul a i {
            font-size: 0.65rem;
            color: var(--fire);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--white);
        }

        .footer-col ul a:hover i {
            opacity: 1;
        }

        .footer-contact-item {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .footer-contact-item i {
            color: var(--fire);
            font-size: 0.9rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-contact-item span {
            font-size: 0.85rem;
            color: rgba(245, 240, 235, 0.45);
            line-height: 1.5;
        }

        .footer-bottom {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom p {
            font-size: 0.77rem;
            color: rgba(245, 240, 235, 0.25);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            font-size: 0.77rem;
            color: rgba(245, 240, 235, 0.25);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--fire);
        }

        .footer-credit {
            padding: 16px 0 22px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 0.75rem;
            color: rgba(245, 240, 235, 0.25);
            letter-spacing: 0.3px;
            flex-wrap: wrap;
        }

        .footer-credit i.fa-heart {
            color: var(--fire);
            font-size: 0.65rem;
            animation: heartbeat 1.8s ease-in-out infinite;
        }

        @keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.4);
                opacity: 1;
            }
        }

        .footer-credit strong {
            color: rgba(245, 240, 235, 0.5);
        }

        .footer-credit-socials {
            display: flex;
            gap: 8px;
        }

        .footer-credit-socials a {
            width: 28px;
            height: 28px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245, 240, 235, 0.35);
            text-decoration: none;
            font-size: 0.72rem;
            transition: all 0.3s;
        }

        .footer-credit-socials a:hover {
            border-color: var(--fire);
            color: var(--fire);
            transform: translateY(-2px);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1100px) {
            .nav-links {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .stats-inner {
                grid-template-columns: 1fr;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 69, 0, 0.12);
            }

            .rally-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tours-grid {
                grid-template-columns: 1fr;
            }

            .tour-card-img,
            .tour-card:first-child .tour-card-img {
                aspect-ratio: 16/9;
            }

            .test-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .why-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .why-top p {
                text-align: left;
            }

            .tours-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .cta-band {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
