
        /* Base styles */
        :root {
            --black: #000000;
            --navy: #14213d;
            --blue: #003366;
            --orange: #fca311;
			--light-gold: #ffd700;
			--success: #28a745;
			--dark-gray: #666;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --border-radius: 4px;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--black);
            background: url('https://bigtimelearning.com/images/bigtimeBg.webp') center/cover no-repeat fixed;
			/*Image by https://www.pexels.com/@bertellifotografia/ */
            overflow-x: hidden;
            min-height: 100vh;
            padding: 20px;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }
        
        .main-container {
            max-width: 1240px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.25rem;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 1.75rem;
            letter-spacing: -0.3px;
        }
        
        h3 {
            font-size: 1.25rem;
            letter-spacing: -0.2px;
        }
        
        p {
            margin-bottom: 1.25rem;
            font-weight: 400;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        ul {
            list-style-type: none;
            margin-bottom: 1.5rem;
        }
        
        li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--orange);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 5rem 0;
        }
        
        /* Header */
        header {
            background-color: var(--white);
            border-bottom: 1px solid #e5e5e5;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--blue);
            text-decoration: none;
        }
        
        .logo-main {
            font-size: 1.75rem;
            letter-spacing: -0.5px;
            color: var(--blue);
        }
        
        .logo-accent {
            width: 8px;
            height: 24px;
            background-color: var(--orange);
            margin: 0 4px;
        }
        
        .logo-sub {
            font-size: 1.75rem;
            letter-spacing: -0.5px;
            color: var(--blue);
            font-weight: 400;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--black);
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--orange);
        }
        
        .nav-link.cta {
            background-color: var(--orange);
            color: var(--black);
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .nav-link.cta:hover {
            background-color: #e8940c;
        }

        /* Burger Menu Styles */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            transition: var(--transition);
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: var(--blue);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
            background-color: var(--orange);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
            background-color: var(--orange);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 80px 0 40px 0;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav.active {
            right: 0;
        }

        /* Mobile Nav Close Button */
        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .mobile-nav-close:hover {
            background: rgba(252, 163, 17, 0.2);
            border-color: var(--orange);
            transform: rotate(90deg);
        }

        .mobile-nav-close::before,
        .mobile-nav-close::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 2px;
            background: var(--white);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .mobile-nav-close::before {
            transform: rotate(45deg);
        }

        .mobile-nav-close::after {
            transform: rotate(-45deg);
        }

        .mobile-nav-close:hover::before,
        .mobile-nav-close:hover::after {
            background: var(--orange);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0 2rem;
        }

        .mobile-nav-link {
            color: var(--white);
            font-weight: 500;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            font-size: 1.1rem;
            transform: translateX(50px);
            opacity: 0;
            animation: slideInMobile 0.5s ease forwards;
        }

        .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
        .mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
        .mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
        .mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInMobile {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .mobile-nav-link:hover {
            color: var(--orange);
            padding-left: 0.5rem;
        }

        .mobile-nav-link.cta {
            background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
            color: var(--black);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
            border-bottom: none;
            box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
        }

        .mobile-nav-link.cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(252, 163, 17, 0.4);
            padding-left: 1.5rem;
        }

        .contact-button {
            background-color: var(--orange);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-button:hover {
            background-color: #e68900;
            transform: translateY(-1px);
        }
        
        /* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    color: var(--black);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23fca311" opacity="0.08"/><circle cx="80" cy="40" r="1.5" fill="%23003366" opacity="0.05"/><circle cx="40" cy="80" r="0.8" fill="%23fca311" opacity="0.06"/></svg>') repeat;
    z-index: 0;
}
        
.hero-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    justify-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin-left: 0.5rem;
}

.hero-title {
    font-size: 2.70rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 800;
    letter-spacing: -0.02em;
}

        .hero-title .highlight {
			font-size: 3.55rem;
            color: var(--blue);
            font-weight: 900;
			display: block;
			margin-bottom: 1.6rem;
        }
        
        .hero-title .main-text {
			font-size: 1.80rem;
            color: var(--black);
            font-weight: 400;
        }
   
.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.25rem;
    font-weight: 500;
}   
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .hero-stat {
            display: flex;
            flex-direction: column;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--blue);
            line-height: 1;
        }
        
        .hero-stat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            margin-top: 0.5rem;
        }
        
        /* Form */
        .form-container {
            width: 400px;
            background-color: var(--blue);
            padding: 2rem;
            border-radius: 8px;
            color: var(--white);
            justify-self: end;
        }
        
        .form-header {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--white);
        }
        
        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .form-input {
            width: 100%;
            padding: 0.875rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.05);
            font-size: 1rem;
            color: var(--white);
            transition: var(--transition);
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

.error-message {
    display: none;
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-input.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-input option {
    background-color: var(--white);
    color: var(--black);
}
        
        .form-input:focus {
            outline: none;
            border-color: var(--orange);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .form-button {
            background-color: var(--white);
            color: var(--navy);
            border: none;
            padding: 0.875rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: var(--transition);
            text-align: center;
        }
        
        .form-button:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

.form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-button:disabled:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: none;
}
		
        .form-button2 {
            background-color: var(--orange);
            color: var(--navy);
            border: none;
            padding: 0.875rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: var(--transition);
            text-align: center;
        }
        
        .form-button2:hover {
            background-color: rgba(252, 163, 17, 0.9);
        }		
        
        /* Cal.com Booking Styles */
        .booking-section {
            text-align: center;
        }
        
        .booking-benefits {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .booking-benefits h3 {
            color: var(--orange);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .benefit-list {
            list-style: none;
            margin: 0;
            text-align: left;
        }
        
        .benefit-list li {
            padding-left: 0;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            font-size: 0.95rem;
        }
        
        .benefit-list li:before {
            display: none;
        }
        
        .cal-booking-button {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background-color: var(--orange);
            color: var(--navy);
            padding: 1.25rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
        }
        
        .cal-booking-button:hover {
            background-color: #e8940c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(252, 163, 17, 0.4);
        }
        
        .booking-subtitle {
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 0.25rem;
            opacity: 0.8;
        }
        
        .booking-note {
            background-color: rgba(252, 163, 17, 0.1);
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid rgba(252, 163, 17, 0.3);
        }
        
        .privacy-notice {
            font-size: 0.75rem;
            opacity: 0.7;
            text-align: center;
            margin-top: 1rem;
        }

        /* Main Content */
        .contact-section {
            padding: 4rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-content h1 {
            font-size: 2.5rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .contact-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--black);
            line-height: 1.7;
        }

        .contact-info {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
        }

        .contact-method {
            margin-bottom: 1.5rem;
        }

        .contact-method h3 {
            color: var(--blue);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-method p {
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .contact-link {
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--blue);
            padding: 2.5rem;
            border-radius: 8px;
            color: var(--white);
        }

        .form-subheader {
            margin-bottom: 2rem;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }
        
        /* Training Programs Section */
        .training-programs {
            /*background-color: var(--light-gray);*/
			background-color: var(--white);
            color: var(--black);
            padding: 5rem 0;
        }
        
        .section-title-container {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .section-title-bar {
            width: 4px;
            height: 36px;
            background-color: #FCA311;
            margin-right: 1rem;		
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .section-description {
            margin-bottom: 3rem;
        }
        
        /* Accordion Styles */
        .accordion {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .accordion-item.active {
            border-color: var(--orange);
        }
        
        .accordion-header {
            background-color: var(--light-gray);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .accordion-header:hover {
            background-color: #ececec;
        }
        
        .accordion-item.active .accordion-header {
            background-color: var(--orange);
            color: var(--black);
        }
        
        .accordion-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
        }
        
        .accordion-duration {
            font-size: 0.875rem;
            font-weight: 500;
            background-color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            color: var(--blue);
        }
        
        .accordion-item.active .accordion-duration {
            background-color: var(--navy);
            color: var(--white);
        }
        
        .accordion-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            transition: var(--transition);
        }
        
        .accordion-item.active .accordion-toggle {
            transform: rotate(45deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: var(--light-gray);
        }
        
        .accordion-item.active .accordion-content {
            max-height: 2000px;
        }
        
        .accordion-body {
            padding: 2rem;
            border-top: 1px solid #e5e5e5;
        }
        
        .program-overview {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .program-details h4 {
            color: var(--blue);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .program-highlights {
            
			background: #020b16;              
			color: #ffffff;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
        }
        
        .program-highlights h4 {
            margin-bottom: 1rem;
        }
        
        .highlight-list {
            list-style: none;
            margin: 0;
        }
        
        .highlight-list li {
            padding-left: 0;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .highlight-list li:before {
            display: none;
        }
        
        .bullet-point {
            color: var(--orange);
            margin-right: 0.5rem;
            font-weight: bold;
        }
        
        .ideal-for {
            margin-top: 2rem;
            padding: 1.5rem;
            background-color: var(--blue);
            color: var(--white);
            border-radius: 8px;
        }
        
        .ideal-for h4 {
            color: var(--orange);
            margin-bottom: 1rem;
        }
        
        .ideal-list {
            list-style: none;
            margin: 0;
        }
        
        .ideal-list li {
            padding-left: 0;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .ideal-list li:before {
            display: none;
        }
        
        .arrow {
            color: var(--orange);
            margin-right: 0.75rem;
            font-weight: bold;
        }
        
        .highlight {
            color: var(--orange);
            font-weight: 500;
        }
        
        /* Trainer Section */
        .trainer-section {
            background-color: var(--blue);
			color: var(--white);
            padding: 5rem 0;
        }
        
        .trainer-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }
        
        .trainer-image-container {
            position: relative;
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .trainer-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .trainer-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-around;
            padding: 1rem;
            background-color: rgba(0, 51, 102, 0.8);
            color: var(--white);
        }
        
        .trainer-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .trainer-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--orange);
        }
        
        .trainer-stat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .trainer-name {
            font-size: 2rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .trainer-badge {
            display: inline-block;
            background-color: rgba(252, 163, 17, 0.15);
            color: var(--orange);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .trainer-bio {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        
        .trainer-achievements h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .achievement-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .achievement-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            padding-left: 0;
        }
        
        .achievement-list li:before {
            display: none;
        }
        
        .benefits-section {
            background-color: var(--white);
            padding: 5rem 0;
        }
        
        /* Process Section */
        .process-section {
            background-color: var(--white);
            padding: 5rem 0;
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .process-step {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
            position: relative;
            transition: var(--transition);
        }
        
        .process-step:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }
        
        .process-number {
            position: absolute;
            top: -12px;
            left: 2rem;
            background-color: var(--blue);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }
        
        .process-title {
            margin-top: 1rem;
            margin-bottom: 1rem;
            color: var(--blue);
            font-size: 1.25rem;
        }
        
        .process-description {
            margin-bottom: 1.5rem;
            color: var(--black);
            line-height: 1.6;
        }
        
        .process-features {
            list-style: none;
            margin: 0;
        }
        
        .process-features li {
            padding-left: 0;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .process-features li:before {
            display: none;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
            transition: var(--transition);
        }
        
        .benefit-icon {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--blue);
        }
        
        .benefit-item h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--black);
        }
        
        .benefit-item p {
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }
		
        .benefit-item2 {
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--orange);
            transition: var(--transition);
        }
        
        .benefit-icon2 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--blue);
        }
        
        .benefit-item2 h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--black);
        }
        
        .benefit-item2 p {
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }		
        
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 2rem 0;
        }
        
        .footer-container {
            text-align: center;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-logo .logo-main {
            font-size: 1.5rem;
            letter-spacing: -0.5px;
			color: var(--white);
        }
        
        .footer-logo .logo-accent {
            width: 6px;
            height: 20px;
            background-color: var(--orange);
            margin: 0 3px;
        }
        
        .footer-logo .logo-sub {
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            font-weight: 400;
			color: var(--white);
        }
        
        .footer-bottom {
            margin-top: 1rem;
            font-size: 0.875rem;
            opacity: 0.7;
        }

.client-logos-section {
    background-color: var(--blue);
    padding: 0;
    color: var(--white);
}

.carousel-container {
    margin-top: 0;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
    display: flex;
    gap: 0;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
    width: 100%; /* Double width for seamless loop */
}

.logo-slide {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

.logo-slide:hover {
    transform: scale(1.08);
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.logo-slide:hover .client-logo {
    filter: grayscale(0%) opacity(1);
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Seamless infinite scroll animation */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move exactly half width */
    }
}
 
/* Assessment Preview Content (extends your form-container) */
.assessment-preview-content {
    color: var(--white);
}

.preview-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.preview-metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-question {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Bar (extends your existing patterns) */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, #e8940c 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
    width: 5%;
}

.progress-percentage {
    font-weight: 700;
    color: var(--orange);
    font-size: 1.1rem;
    min-width: 50px;
}

/* Question Card (extends your accordion-item style) */
.question-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.question-header {
    background: var(--light-gray);
    padding: 1rem 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.question-category {
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.question-content {
    padding: 2rem;
}

.question-text {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.question-options {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Option Buttons (follows your nav-link pattern) */
.option-button {
    background: var(--white);
    border: 2px solid #e5e5e5;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.option-button:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.2);
}

.option-button.selected {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

/* Assessment Navigation Button Base Styles */
.assessment-navigation {
    padding: 2rem;
    background: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    gap: 1rem;
    min-height: 60px;
}

.assessment-nav-button {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.assessment-nav-button:first-child {
    margin-right: auto;
}

.assessment-nav-button:last-child {
    margin-left: auto;
}

/* Primary Button (Orange) */
.assessment-nav-button.primary {
    background: var(--orange);
    color: var(--white);
}

.assessment-nav-button.primary:hover:not(:disabled) {
    background: #e8940c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

/* Secondary Button (White with Border) */
.assessment-nav-button.secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid #e5e5e5;
}

.assessment-nav-button.secondary:hover:not(:disabled) {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.2);
}

/* Disabled State for Both */
.assessment-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Score Display (extends your trainer-image-container) */
.score-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0deg, var(--orange) 280deg, #e5e5e5 280deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--box-shadow);
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    z-index: 1;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    position: relative;
    z-index: 2;
}

.score-label {
    font-size: 0.875rem;
    color: var(--navy);
    position: relative;
    z-index: 2;
}

/* Score Bars (extends your existing patterns) */
.score-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, #e8940c 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.score-percentage {
    min-width: 50px;
    font-weight: 600;
    color: var(--orange);
    font-size: 0.9rem;
}

/* Assessment CTA (extends your process-step) */
.assessment-cta {
    text-align: center;
    margin-top: 3rem;
}

.assessment-cta .process-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.assessment-cta .process-features li {
    padding-left: 0;
    margin-bottom: 0;
}

.assessment-cta .process-features li:before {
    display: none;
}

/* Results Content (extends your trainer-content) */
.results-content {
    text-align: left;
} 

.ai-mastery-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.mastery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mastery-intro .lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 3rem;
    font-weight: 500;
}

.leadership-dimensions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dimension-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    transition: var(--transition);
}

.dimension-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dimension-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dimension-content h3 {
    color: var(--blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dimension-content p {
    margin: 0;
    color: var(--black);
    line-height: 1.5;
}

/* Assessment Showcase */
.assessment-showcase {
    position: sticky;
    top: 2rem;
}

.showcase-card {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.3);
}

.showcase-header h3 {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-header p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.assessment-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-question {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.question-preview small {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.question-preview p {
    margin: 0.5rem 0 0 0;
    font-style: italic;
    opacity: 0.9;
}

.assessment-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
    color: var(--navy);
    padding: 1.25rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.assessment-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.4);
}

.button-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* AI Strategy Section */
.ai-strategy-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ececec 100%);
    padding: 5rem 0;
}

.strategy-content {
    padding: 5rem 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy-insight {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.strategy-insight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.insight-header {
    margin-bottom: 1.5rem;
}

.insight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.insight-header h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.3;
}

.strategy-insight p {
    margin: 0;
    color: var(--black);
    line-height: 1.6;
}

.strategy-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.strategy-cta h3 {
    color: var(--blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.strategy-cta p {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 163, 17, 0.4);
}

.secondary-cta {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.secondary-cta:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Premium FAQ Section */
.faq-section-premium {
    background-color: var(--white);
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(252, 163, 17, 0.1);
}

.faq-header {
    background-color: var(--light-gray);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: #ececec;
}

.faq-item.active .faq-header {
    background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
    color: var(--white);
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    color: var(--navy);
}

.faq-item.active .faq-header h3 {
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition);
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 2rem;
    margin: 0;
    color: var(--black);
    line-height: 1.6;
    border-top: 1px solid #e5e5e5;
}

.ai-leadership-section {
    background-color: var(--white);
    padding: 6rem 0;
}

.leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.leadership-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.leadership-pillar {
    text-align: center;
    padding: 0 1rem;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pillar-icon:hover {
    transform: translateY(-4px);
}

.pillar-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
    stroke-width: 1.5;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
}

.pillar-description {
    color: var(--black);
    line-height: 1.6;
}

.premium-assessment-showcase {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    border-radius: 5px;
    padding: 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-assessment-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fca311" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23fca311" opacity="0.15"/><circle cx="40" cy="80" r="1" fill="%23fca311" opacity="0.1"/></svg>') repeat;
    opacity: 0.4;
}

.premium-assessment-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.premium-assessment-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.premium-assessment-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 400;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-bottom: 0.5rem;
}

.premium-feature-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-sample-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-sample-label {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.premium-sample-question {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.5;
}

.premium-cta-button {
    background: linear-gradient(135deg, var(--orange) 0%, #e8940c 100%);
    color: var(--blue);
    padding: 1.25rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.3);
}

.premium-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(252, 163, 17, 0.4);
}

.premium-cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Add this to your existing CSS file for the loading spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--navy);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

/* Enhanced pricing display styling */
.pricing-display {
    transition: all 0.3s ease;
}

.pricing-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.2);
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    flex: 1;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fca311, #f79d00);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14213d;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #14213d;
    margin: 0 0 0.25rem 0;
}

.benefit-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}


/* Transformation Journey Section - NEW */
.transformation-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.transformation-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.transformation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.transformation-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Before/After Journey - NEW */
.transformation-journey {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.journey-stage {
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.before-stage {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border-left: 4px solid #f44336;
}

.after-stage {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-left: 4px solid var(--success);
}

.journey-stage:hover {
    transform: translateY(-5px);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stage-icon {
    font-size: 2rem;
}

.stage-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.stage-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stage-item {
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding-left: 0.5rem;
}

/* Transformation Arrow - NEW */
.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.arrow-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--light-gold));
    border-radius: 2px;
}

.arrow-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-align: center;
    white-space: nowrap;
}

.arrow-head {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 600;
}

/* Value Stack - NEW */
.value-stack {
    margin-top: 2rem;
}

.value-stack-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    transition: all 0.3s ease;
}

.value-item.premium {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left-color: var(--orange);
    border-left-width: 6px;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(252, 163, 17, 0.15);
}

.value-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-content {
    flex-grow: 1;
}

.value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.value-worth {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

/* Total Value - NEW */
.total-value {
    background: linear-gradient(135deg, var(--navy) 0%, #004080 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.total-value::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.total-value-content {
    position: relative;
    z-index: 2;
}

.total-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gold);
    margin-bottom: 0.5rem;
}

.total-note {
    font-size: 1rem;
    color: var(--light-gold);
    font-weight: 600;
}

.booking-content {
    background-color: var(--light-gray);
    min-height: 100vh;
    padding: 2rem 0;
}

.main-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.back-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--orange);
}

/* Progress indicator */
.progress-indicator {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-number.next {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--orange);
}

/* Improved session structure styles (keeps existing layout) */
.session-item {
    margin-bottom: 2rem;
	background-color: rgba(252, 163, 17, 0.05);
	padding: 1.5rem;
	border-radius: 5px;
}

.session-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.session-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
}

.session-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    flex: 1;
}

.session-duration {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.session-content {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-address {
    background-color: rgba(252, 163, 17, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--orange);
    margin-top: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
}

.contact-address strong {
    color: var(--blue);
    font-weight: 600;
}

        /* Responsive Styles */
        @media (max-width: 992px) {
            body {
                padding: 10px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                justify-items: center;
            }
            
            .form-container {
                width: 100%;
                max-width: 400px;
                margin-top: 2rem;
                justify-self: center;
            }
            
            .trainer-container {
                grid-template-columns: 1fr;
            }
            
            .trainer-image-container {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .program-overview {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .nav-links {
                display: none;
            }

            .burger-menu {
                display: flex;
            }			
            
            .contact-content h1 {
                font-size: 2rem;
            }
			
			.leadership-pillars {
				grid-template-columns: 1fr;
				gap: 3rem;
				margin-bottom: 4rem;
			}

			.premium-features-grid {
				grid-template-columns: 1fr;
				gap: 1rem;
			}

			.premium-assessment-showcase {
				padding: 3rem 2rem;
			}		
			
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .accordion-header {
                padding: 1rem;
            }
            
            .accordion-body {
                padding: 1.5rem;
            }

			.accordion-item.active .accordion-content {
				max-height: 3000px;
			}  
			
            .header-container {
                padding: 0 1rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .contact-form {
                padding: 2rem;
            }

            .mobile-nav {
                width: 100%;
                right: -100%;
            }

            .mobile-nav-links {
                padding: 0 2rem;
            }			

			.logo-slide {
				flex: 0 0 140px;
			}
			
			.client-logo {
				max-width: 100px;
				max-height: 50px;
			}
			
			.carousel-track {
				animation-duration: 30s; 
			}	

			.preview-metrics {
				flex-direction: column;
				gap: 1rem;
				text-align: center;
			}
			
			.progress-container {
				flex-direction: column;
				gap: 1rem;
				align-items: stretch;
			}
			
			.question-text {
				font-size: 1.25rem;
			}
			
			.assessment-navigation {
				flex-direction: column;
				gap: 1rem;
			}
			
			.assessment-cta .process-features {
				flex-direction: column;
				align-items: center;
			}
			
			.score-bar-container {
				flex-direction: column;
				gap: 0.5rem;
				align-items: stretch;
				text-align: center;
			}
			.mastery-grid {
				grid-template-columns: 1fr;
				gap: 3rem;
			}
			
			.assessment-showcase {
				position: static;
				order: -1;
			}
			
			.preview-metrics {
				justify-content: space-around;
			}
			
			.strategy-grid {
				grid-template-columns: 1fr;
			}
			
			.cta-buttons {
				flex-direction: column;
				align-items: center;
			}
			
			.pillar-icon {
				width: 64px;
				height: 64px;
			}

			.pillar-icon svg {
				width: 28px;
				height: 28px;
			}

			.premium-assessment-title {
				font-size: 1.75rem;
			}	

			.ai-mastery-section,
			.ai-strategy-section,
			.faq-section-premium {
				padding: 3rem 0;
			}
			
			.dimension-card {
				flex-direction: column;
				text-align: center;
				gap: 1rem;
			}
			
			.showcase-card {
				padding: 2rem;
			}
			
			.strategy-cta {
				padding: 2rem;
			}
			
			.faq-header {
				padding: 1rem 1.5rem;
			}
			
			.faq-content p {
				padding: 1.5rem;
			}
			
			.insight-number {
				font-size: 2rem;
			}	
			
			.hero-benefits {
				flex-direction: column;
				gap: 1rem;
			}
			
			.benefit-item {
				min-width: auto;
			}	
			
			.transformation-section {
				margin-top: 1.5rem;
				margin-bottom: 1.5rem;
			}
			
			.transformation-header {
				margin-bottom: 1.5rem;
			}
			
			.transformation-title {
				font-size: 1.4rem;
				margin-bottom: 0.6rem;
			}
			
			.transformation-subtitle {
				font-size: 1rem;
			}
			
			.transformation-journey {
				grid-template-columns: 1fr;
				gap: 1.5rem;
				padding: 1.5rem;
				margin-bottom: 2rem;
			}
			
			.journey-stage {
				padding: 1.2rem;
			}
			
			.journey-stage:hover {
				transform: translateY(-2px);
			}
			
			.stage-header {
				gap: 0.8rem;
				margin-bottom: 0.8rem;
			}
			
			.stage-icon {
				font-size: 1.6rem;
			}
			
			.stage-title {
				font-size: 1.1rem;
			}
			
			.stage-content {
				gap: 0.6rem;
			}
			
			.stage-item {
				font-size: 0.85rem;
				padding-left: 0.3rem;
				line-height: 1.4;
			}
			
			.transformation-arrow {
				min-width: auto;
				gap: 0.8rem;
				margin: 1rem 0;
			}
			
			.arrow-line {
				width: 2px;
				height: 40px;
				background: linear-gradient(180deg, var(--orange), var(--light-gold));
			}
			
			.arrow-text {
				font-size: 0.8rem;
				white-space: normal;
				background: rgba(252, 163, 17, 0.1);
				padding: 0.5rem 1rem;
				border-radius: 15px;
				border: 1px solid rgba(252, 163, 17, 0.3);
			}
			
			.arrow-head {
				font-size: 1.2rem;
				transform: rotate(90deg);
			}
		 
			.value-item {
				flex-direction: column;
				text-align: center;
				gap: 1rem;
			}
			
			.total-amount {
				font-size: 2rem;
			}	
			
			.session-item {
				padding: 1rem;
			}
			
			.session-header {
				flex-direction: column;
				gap: 0.25rem;
				align-items: flex-start;
			}
			
			.session-title {
				font-size: 1rem;
			}	
        }

        @media (max-width: 480px) {
			.accordion-item.active .accordion-content {
				max-height: 4000px;
			} 			
			
		}

/* 4-Day Strip Section  ---------------------------------------- */

.four-days-strip {
    background: #020b16;              /* deep navy, not pure black */
    color: #ffffff;
    padding: 4rem 0 4.5rem;
}

.four-days-strip .section-title {
    color: #ffffff;
}

.four-days-strip .section-description.four-days-intro {
    max-width: 540px;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}

/* Cards strip */

.days-strip {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
}

.days-strip::-webkit-scrollbar {
    height: 6px;
}

.days-strip::-webkit-scrollbar-track {
    background: transparent;
}

.days-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.day-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
	border: 1px solid rgba(252, 163, 17, 0.20);
}

/* Left accent line to echo hero cards */
.day-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #fca311, #f7c26a);
}

/* Day pill */

.day-pill {
    align-self: flex-start;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(252, 163, 17, 0.12);
    color: #fca311;
    font-weight: 600;
    margin-left: 0.4rem; /* offset because of accent line */
}

/* Titles & text */

.day-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.1rem 0.4rem;
    color: #ffffff;
}

.day-text {
    margin: 0 0 0.4rem 0.4rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}



/* Responsive tweaks */

@media (max-width: 768px) {
    .four-days-strip {
        padding: 3rem 0 3.5rem;
    }

    .four-days-strip .section-description.four-days-intro {
        margin-bottom: 2rem;
    }

    .day-card {
        min-width: 260px;
		margin-bottom: 24px;
    }
}

		