/* Add this to the TOP of your methodology-style.css file */
:root {
    --primary: #0066ff;
    --secondary: #00d4ff;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #f5f5f5;
}  

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}


/* IMPORTANT: This was missing - centers the nav */
nav {
    display: flex;
    justify-content: center; /* Centers the navigation */
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; /* Important for positioning hamburger */
}

/* Desktop Navigation */
.desktop-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 5%;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #ff6b6b;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #ff6b6b;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.1), 
        rgba(0, 212, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.mobile-nav-header h3 {
    color: var(--light);
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 1rem 0;
}

.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.mobile-nav-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--light);
    opacity: 0.8;
}

.mobile-nav-footer p {
    margin: 0;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-footer span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}


        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 1s, visibility 1s;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            text-align: center;
        }

        .loading-car {
            font-size: 60px;
            animation: carMove 2s infinite;
        }

        @keyframes carMove {
            0%, 100% { transform: translateX(-20px); }
            50% { transform: translateX(20px); }
        }

    
/* Updated Progress Bar with smooth floating */
.progress-container {
    position: fixed;
    top: 70px; /* Just below the nav bar */
    left: 0;
    width: 100%;
    height: 8px; /* Slightly thicker for better visibility */
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999; /* Below nav bar */
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    /* Remove the transform transition since this stays fixed */
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    width: 0%;
    transition: width 0.5s ease; /* Smooth progress animation */
    position: relative;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    border: 2px solid #f59e0b;
}

* Add some top padding to body content to account for the progress bar */
.journey-timeline {
    margin-top: 8px; /* Account for progress bar height */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .progress-container {
        top: 60px; /* Adjust for smaller nav on mobile */
        height: 6px;
    }
    
    .progress-bar::after {
        width: 12px;
        height: 12px;
    }
}

/* Updated Timer Display with smooth floating */
.timer-display {
    position: fixed;
    top: 90px; /* Below nav + progress bar */
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    z-index: 998; /* Below progress bar */
    display: none;
    transition: transform 0.2s ease-out; /* Smooth movement */
}
/* Updated Journey Counter with smooth floating */
.journey-counter {
    position: fixed;
    top: 90px; /* Below nav + progress bar */
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    z-index: 998; /* Below progress bar */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease, transform 0.2s ease-out; /* Keep existing transitions + smooth movement */
    cursor: pointer;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .journey-counter {
        top: 76px; /* Adjusted for mobile nav + progress bar */
        right: 20px;
        padding: 10px 20px;
        transition: all 0.3s ease, transform 0.2s ease-out;
    }

    .timer-display {
        top: 130px; /* Positioned below counter on mobile to avoid overlap */
        left: 20px;
        padding: 10px 20px;
        transition: transform 0.2s ease-out;
    }
}
        .timer-text {
            font-size: 16px;
            color: #f59e0b;
        }

        /* Achievement Toast */
        .achievement-toast {
            position: fixed;
            top: 100px;
            right: 30px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.9));
            color: #000;
            padding: 20px 30px;
            border-radius: 10px;
            transform: translateX(400px);
            transition: transform 0.5s ease;
            z-index: 998;
            max-width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .achievement-toast.show {
            transform: translateX(0);
        }

        .achievement-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .achievement-message {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Intro Section */
        .intro-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
        }

        .intro-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.5s ease forwards;
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .intro-content h1 {
            font-size: clamp(48px, 8vw, 80px);
            margin-bottom: 20px;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
        }

        .intro-content p {
            font-size: 24px;
            color: #888;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .price-display {
            font-size: 36px;
            color: #f59e0b;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .price-display .from-text {
            font-size: 20px;
            font-weight: 400;
            opacity: 0.8;
        }

        .start-journey {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            color: #000;
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .start-journey::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .start-journey:hover::before {
            width: 300px;
            height: 300px;
        }

        .start-journey:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        /* Journey Timeline */
        .journey-timeline {
            position: relative;
            padding: 100px 0;
            background: #000;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 280px; /* Start just below Phase 1 header */
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, transparent, #333, #333, transparent);
            transform: translateX(-50%);
        }

        .timeline-progress {
            position: absolute;
            left: 50%;
            top: 280px; /* Start just below Phase 1 header */
            width: 4px;
            background: linear-gradient(to bottom, #f59e0b, #fbbf24);
            transform: translateX(-50%);
            height: 0%;
            transition: height 0.5s ease;
        }

        /* Phase Headers */
        .phase-header {
            text-align: center;
            padding: 100px 20px;
            position: relative;
            opacity: 0;
            transform: scale(0.8);
        }

        /* First phase header (Phase 1) blocks the timeline */
        .phase-header[data-point="0"] {
            background: #000;
            z-index: 10;
        }

        .phase-header.visible {
            opacity: 1;
            transform: scale(1);
            transition: all 0.8s ease;
        }

        .phase-header h2 {
            font-size: clamp(36px, 6vw, 60px);
            margin-bottom: 20px;
            background: linear-gradient(45deg, #3b82f6, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .phase-header.interior h2 {
            background: linear-gradient(45deg, #10b981, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .phase-header.protection h2 {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .phase-header.finishing h2 {
            background: linear-gradient(45deg, #a855f7, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .phase-timing {
            font-size: 18px;
            color: #666;
            margin-top: 10px;
        }

        /* Point Sections */
        .point-section {
            position: relative;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
        }

        .point-section.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .point-section.current {
            transform: scale(1.02);
        }

        .point-section:nth-child(odd) .point-content {
            margin-left: auto;
            text-align: right;
        }

        .point-section:nth-child(even) .point-content {
            margin-right: auto;
            text-align: left;
        }

        .point-marker {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: #000;
            border: 4px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #666;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .point-section.visible .point-marker {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            border-color: #f59e0b;
            color: #000;
            transform: translate(-50%, -50%) scale(1.2);
            box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
        }

        .point-section.current .point-marker {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1.2);
                box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.3);
                box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
            }
        }

        .point-content {
            width: 45%;
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid #2a2a2a;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .point-section.current .point-content {
            border-color: #f59e0b;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
        }

        .point-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .point-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #f59e0b;
        }

        .point-time {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
        }

        .point-description {
            color: #ccc;
            line-height: 1.6;
            font-size: 16px;
        }

        /* Completion Section */
        .completion-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
            position: relative;
            overflow: hidden;
        }

        .completion-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s ease;
        }

        .completion-content.show {
            opacity: 1;
            transform: scale(1);
        }

        .completion-content h2 {
            font-size: clamp(48px, 8vw, 72px);
            margin-bottom: 30px;
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .completion-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }

        .stat-item.show {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #f59e0b;
            display: block;
        }

        .stat-label {
            color: #888;
            font-size: 16px;
        }

        .completion-cta {
            background: linear-gradient(45deg, #f59e0b, #fbbf24);
            color: #000;
            padding: 20px 60px;
            border: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 40px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
			/* FORCE remove underlines */
    text-decoration: none !important;
    text-decoration-line: none !important;
    display: inline-block;
    text-align: center;
        }

        .completion-cta.show {
            opacity: 1;
            transform: translateY(0);
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4); }
            50% { box-shadow: 0 5px 40px rgba(245, 158, 11, 0.8); }
        }

        .completion-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
        }

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 2rem;
}
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .journey-counter {
                top: 20px;
                right: 20px;
                padding: 10px 20px;
            }

            .timer-display {
                top: 80px;
                left: 20px;
                padding: 10px 20px;
            }

            .point-section:nth-child(odd) .point-content,
            .point-section:nth-child(even) .point-content {
                width: 90%;
                margin: 0 auto;
                text-align: left;
            }

            .timeline-line,
            .timeline-progress {
                left: 30px;
            }

            .point-marker {
                left: 30px;
            }

            .completion-stats {
                flex-direction: column;
                gap: 30px;
            }

            .phase-timing {
                font-size: 16px;
            }
        }