/**
 * Khan Coaching - Main Stylesheet
 */

/* ===== Header/Navigation ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--zinc-800);
    padding: 0.5rem 0;
}

.site-header.not-scrolled {
    background-color: transparent;
    padding: 1.5rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    flex-direction: column;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.custom-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    line-height: 1;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-title .orange-text {
    color: var(--racing-orange);
}

.site-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--zinc-400);
    margin-left: 0.25rem;
    margin-top: 0.25rem;
}

.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-400);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--racing-orange);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
    width: 100%;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: white;
}

/* Active menu item */
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
    color: var(--racing-orange);
}

.main-navigation li.current-menu-item > a::after,
.main-navigation li.current_page_item > a::after {
    width: 100%;
}

/* CTA Button in Menu */
.main-navigation .cta-menu-item a,
.main-navigation .btn-cta {
    padding: 0.625rem 1.5rem;
    background-color: var(--racing-orange);
    color: white;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--racing-orange);
}

.main-navigation .cta-menu-item a::after,
.main-navigation .btn-cta::after {
    display: none;
}

.main-navigation .cta-menu-item a:hover,
.main-navigation .btn-cta:hover {
    background-color: transparent;
    color: var(--racing-orange);
    border-color: var(--racing-orange);
}

.ai-coach-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background-color: var(--zinc-900);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--zinc-700);
    transition: all 0.3s ease;
}

.ai-coach-btn:hover {
    background-color: var(--zinc-800);
    border-color: var(--racing-orange);
    color: white;
}

.ai-coach-btn i {
    color: var(--racing-orange);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--racing-orange);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--zinc-800);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-navigation.hidden {
    display: none;
}

.mobile-navigation ul,
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid var(--zinc-800);
}

.mobile-navigation li:last-child {
    border-bottom: none;
}

.mobile-navigation a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: var(--zinc-300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.mobile-navigation a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--racing-orange);
    transition: width 0.3s ease;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus {
    color: white;
    padding-left: 2rem;
}

.mobile-navigation a:hover::before,
.mobile-navigation a:focus::before {
    width: 1rem;
}

/* Mobile CTA Button */
.mobile-navigation .mobile-cta {
    background-color: var(--racing-orange);
    color: white;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border: 2px solid var(--racing-orange);
    transition: all 0.3s ease;
}

.mobile-navigation .mobile-cta::before {
    display: none;
}

.mobile-navigation .mobile-cta:hover {
    background-color: transparent;
    color: var(--racing-orange);
    padding-left: 1.5rem;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--racing-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
}

.hero-gradient-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--racing-dark), transparent, rgba(0, 0, 0, 0.4));
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="400" height="400"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" /%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.1"/%3E%3C/svg%3E');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 95, 31, 0.1);
    border-left: 2px solid var(--racing-orange);
    color: var(--racing-orange);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 9rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 0.9;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--racing-orange), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--zinc-300);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    border-left: 4px solid var(--zinc-800);
    padding-left: 1.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-telemetry {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 3rem;
    display: none;
    opacity: 0.5;
}

@media (min-width: 1024px) {
    .hero-telemetry {
        display: flex;
        gap: 2rem;
    }
}

.telemetry-item {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--zinc-500);
}

.telemetry-label {
    display: block;
    color: var(--racing-orange);
    margin-bottom: 0.25rem;
}

/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-800);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--zinc-700);
}

.service-card.popular {
    background-color: var(--zinc-900);
    border-color: var(--racing-orange);
    box-shadow: 0 0 30px rgba(255, 95, 31, 0.1);
}

.service-corner {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-color: var(--zinc-700);
    transition: border-color 0.3s ease;
}

.service-card:hover .service-corner {
    border-color: var(--racing-orange);
}

.service-corner-tr {
    top: 0;
    right: 0;
    border-top: 1px solid;
    border-right: 1px solid;
}

.service-corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.service-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background-color: var(--racing-orange);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(255, 95, 31, 0.3);
}

.service-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--zinc-800);
}

.service-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zinc-500);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
}

.service-card.popular .service-icon {
    color: var(--racing-orange);
}

.service-type {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-600);
    border: 1px solid var(--zinc-800);
    padding: 0.25rem 0.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: white;
    margin-bottom: 0.5rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-price-amount {
    font-size: 2.25rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: white;
    letter-spacing: -0.05em;
}

.service-price-unit {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    color: var(--zinc-500);
}

.service-description {
    font-size: 0.875rem;
    color: var(--zinc-400);
    line-height: 1.6;
    margin-top: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--zinc-300);
    margin-bottom: 1rem;
}

.service-features i {
    color: var(--racing-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
}

.service-features svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
}

.service-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-card.popular .service-cta {
    background-color: var(--racing-orange);
    color: white;
}

.service-card.popular .service-cta:hover {
    background-color: #e55519;
}

.service-card:not(.popular) .service-cta {
    background-color: var(--zinc-800);
    color: white;
}

.service-card:not(.popular) .service-cta:hover {
    background-color: var(--zinc-700);
}

/* ===== Testimonial Carousel ===== */
.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    margin-bottom: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

/* Show 1 testimonial on mobile */
.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

/* Show 2 testimonials on tablets */
@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
}

/* Show 3 testimonials on desktop */
@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}

.testimonial-card {
    background-color: rgba(24, 24, 27, 0.8);
    padding: 2rem;
    border-left: 2px solid var(--zinc-800);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card:hover {
    border-left-color: var(--racing-orange);
}

.testimonial-quote-icon {
    width: 2rem;
    height: 2rem;
    color: var(--zinc-700);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: var(--racing-orange);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--zinc-300);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zinc-800);
}

.testimonial-author-name {
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: white;
}

.testimonial-series,
.testimonial-car {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-series {
    color: var(--zinc-500);
}

.testimonial-car {
    color: var(--zinc-600);
}

.testimonial-rating {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.25rem;
}

.testimonial-rating-text {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #22c55e;
}

/* Carousel Navigation */
.testimonials-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-nav-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    color: var(--zinc-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: var(--racing-orange);
    border-color: var(--racing-orange);
    color: white;
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-nav-btn:disabled:hover {
    background-color: var(--zinc-900);
    border-color: var(--zinc-800);
    color: var(--zinc-500);
}

.testimonial-nav-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Carousel Dots */
.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--zinc-700);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background-color: var(--zinc-500);
}

.testimonial-dot.active {
    width: 2rem;
    border-radius: 0.25rem;
    background-color: var(--racing-orange);
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--zinc-800);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--racing-orange);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    padding-right: 2rem;
}

.faq-question:hover .faq-question-text {
    color: var(--racing-orange);
}

.faq-icon {
    color: var(--zinc-500);
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.faq-question:hover .faq-icon {
    color: var(--racing-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.open {
    max-height: 12rem;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer-text {
    color: var(--zinc-400);
    line-height: 1.6;
    padding-right: 2rem;
}

/* ===== Contact Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    transition: border-color 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--zinc-700);
}

.contact-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--zinc-800);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--racing-orange);
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-500);
    display: block;
}

.contact-info-value {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: white;
}

.contact-form-wrapper {
    background-color: rgba(24, 24, 27, 0.8);
    padding: 2rem;
    border: 1px solid var(--zinc-800);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-500);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-800);
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--racing-orange);
    box-shadow: 0 0 0 1px var(--racing-orange);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--zinc-700);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background-color: var(--zinc-200);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit.success {
    background-color: #22c55e;
    color: white;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--zinc-950);
    border-top: 1px solid var(--zinc-900);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-widgets {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--racing-orange);
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--zinc-500);
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: white;
}

.footer-widget i {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--racing-orange);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--zinc-900);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: var(--zinc-600);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom a:hover {
    color: var(--zinc-400);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-style: italic;
    color: var(--racing-orange);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 3rem;
    height: 3px;
    background-color: var(--racing-orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--zinc-400);
    line-height: 1.8;
    max-width: 50rem;
    margin: 0 auto;
    font-weight: 400;
}

.section-description-full {
    max-width: none;
    margin: 0;
}

.section-description strong {
    color: white;
    font-weight: 700;
}

/* ===== Utility Classes ===== */
.clip-path-slant {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.glass-panel {
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 95, 31, 0.1);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
