/* ========================================
   FORTHING S7 - FIXED DESIGN
   Separate Banner & Color Showcase
   ======================================== */

/* Global Styles */
.s7-section-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: -2px;
}

.s7-section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #86868b;
    margin-bottom: 80px;
    font-weight: 400;
}

.s7-title-white {
    color: #ffffff;
}

/* Hero Banner - Separate, No Overlay */
.s7-hero-banner {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.s7-banner-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 40px 20px;
}

.s7-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.s7-title {
    font-size: 96px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -4px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.s7-subtitle {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.s7-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 50px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.s7-from {
    font-size: 16px;
    color: #6e6e73;
}

.s7-price {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.s7-banner-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.s7-btn-explore {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.s7-btn-explore:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.s7-btn-book {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.s7-btn-book:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Color Showcase Section */
.s7-color-showcase {
    position: relative;
    background: #000000;
}

.s7-showcase-wrapper {
    position: relative;
    min-height: 100vh;
}

.s7-car-display {
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    transition: background-image 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.s7-car-display.changing {
    opacity: 0.4;
}

.s7-color-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 40px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 70%, transparent 100%);
}

.s7-color-selector-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.s7-color-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.s7-color-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.s7-color-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.s7-color-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.s7-color-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.s7-color-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.s7-color-btn.active .s7-color-dot {
    transform: scale(1.2);
}

.s7-color-label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.s7-selected-text {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.s7-selected-text span {
    font-weight: 700;
}

/* Stats Section */
.s7-stats-section {
    padding: 0;
    background: #ffffff;
}

.s7-stat-card {
    padding: 60px 30px;
    text-align: center;
    border-right: 1px solid #d2d2d7;
    border-bottom: 1px solid #d2d2d7;
    transition: background 0.3s ease;
}

.s7-stat-card:hover {
    background: #f5f5f7;
}

.s7-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.s7-stat-label {
    font-size: 14px;
    color: #86868b;
    font-weight: 500;
}

/* Video Section */
.s7-video-section {
    padding: 100px 0;
    background: #000000;
}

.s7-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.s7-video {
    width: 100%;
    height: auto;
    display: block;
}

.s7-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
}

.s7-video-overlay h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -1px;
}

/* Feature Highlights */
.s7-feature-highlight {
    padding: 100px 0;
}

.s7-feature-dark {
    background: #000000;
    color: #f5f5f7;
}

.s7-feature-light {
    background: #ffffff;
    color: #1d1d1f;
}

.s7-feature-text {
    padding: 60px;
}

.s7-feature-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.s7-feature-dark .s7-feature-title {
    color: #f5f5f7;
}

.s7-feature-light .s7-feature-title {
    color: #1d1d1f;
}

.s7-feature-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.s7-feature-dark .s7-feature-desc {
    color: #a1a1a6;
}

.s7-feature-light .s7-feature-desc {
    color: #6e6e73;
}

.s7-feature-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s7-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.s7-point-icon {
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.s7-feature-dark .s7-point-icon {
    background: #ffffff;
    color: #000000;
}

.s7-feature-light .s7-point-icon {
    background: #000000;
    color: #ffffff;
}

.s7-point-text {
    font-size: 17px;
    font-weight: 500;
}

.s7-feature-image {
    position: relative;
    overflow: hidden;
}

.s7-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.s7-feature-highlight:hover .s7-feature-image img {
    transform: scale(1.05);
}

/* Specifications Grid */
.s7-specs-section {
    padding: 120px 0;
    background: #f5f5f7;
}

.s7-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.s7-spec-category {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #d2d2d7;
    transition: all 0.3s ease;
}

.s7-spec-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.s7-spec-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.s7-spec-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s7-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e7;
}

.s7-spec-item:last-child {
    border-bottom: none;
}

.s7-spec-key {
    font-size: 14px;
    color: #86868b;
    font-weight: 500;
}

.s7-spec-value {
    font-size: 15px;
    color: #1d1d1f;
    font-weight: 600;
    text-align: right;
}

/* Gallery Section */
.s7-gallery-section {
    padding: 100px 0;
    background: #000000;
}

.s7-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4px;
    margin-top: 60px;
}

.s7-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.s7-gallery-large {
    grid-column: span 2;
}

.s7-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.s7-gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.s7-cta-section {
    padding: 140px 0;
    background: #ffffff;
    text-align: center;
}

.s7-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.s7-cta-title {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.s7-cta-text {
    font-size: 21px;
    color: #86868b;
    margin-bottom: 50px;
}

.s7-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.s7-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #000000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.s7-btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.s7-btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.s7-btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .s7-title {
        font-size: 72px;
    }

    .s7-subtitle {
        font-size: 26px;
    }

    .s7-gallery-large {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .s7-title {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .s7-subtitle {
        font-size: 22px;
    }

    .s7-color-showcase {
        min-height: 80vh;
    }

    .s7-car-display {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .s7-hero-banner {
        padding: 80px 0;
    }

    .s7-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .s7-subtitle {
        font-size: 20px;
    }

    .s7-banner-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .s7-btn-explore,
    .s7-btn-book {
        width: 100%;
        text-align: center;
    }

    .s7-car-display {
        height: 60vh;
        background-size: cover;
    }

    .s7-color-options {
        gap: 15px;
    }

    .s7-color-btn {
        padding: 12px 15px;
    }

    .s7-color-dot {
        width: 40px;
        height: 40px;
    }

    .s7-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .s7-title {
        font-size: 40px;
    }

    .s7-subtitle {
        font-size: 18px;
    }

    .s7-price {
        font-size: 24px;
    }

    .s7-color-title {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

section {
    margin: 0;
}



