/* ========================================
   FORTHING U-TOUR M4 - CUSTOM STYLES
   Premium MPV Design Language
   ======================================== */

:root {
    --utour-primary: #3ed6ad;
    --utour-secondary: #2a7a71;
    --utour-accent: #60fae8;
    --utour-dark: #0f172a;
    --utour-light: #f8fafc;
    --utour-gray: #64748b;
}

/* Hero Section */
.utour-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.utour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/utour/hero-bg-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.utour-hero .container {
    position: relative;
    z-index: 2;
}

.utour-hero-content {
    padding: 60px 0;
    animation: fadeInLeft 1s ease-out;
}

.utour-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--utour-primary), var(--utour-secondary));
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.utour-hero-title {
    font-size: 80px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.utour-hero-subtitle {
    font-size: 24px;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 400;
}

.utour-hero-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.utour-spec-item {
    flex: 0 0 auto;
}

.utour-spec-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--utour-accent);
    margin-bottom: 5px;
    line-height: 1;
}

.utour-spec-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.utour-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.utour-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--utour-primary), var(--utour-secondary));
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.utour-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.utour-btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.utour-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.utour-hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.utour-car-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
    transition: filter 0.6s ease;
}

.utour-car-img.changing {
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
    opacity: 0.7;
}

/* Color Selector */
.utour-hero-color-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.utour-color-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.utour-color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.utour-color-option.active {
    border-color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Highlights Section */
.utour-highlights {
    padding: 100px 0;
    background: #ffffff;
}

.utour-highlight-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.utour-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--utour-accent);
}

.utour-highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utour-highlight-icon img {
    width: 40px;
    height: 40px;
}

.utour-highlight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--utour-dark);
    margin-bottom: 12px;
}

.utour-highlight-card p {
    font-size: 15px;
    color: var(--utour-gray);
    margin: 0;
    line-height: 1.6;
}

/* Full Width Feature Sections */
.utour-feature-full {
    padding: 0;
    margin: 0;
}

.utour-feature-split {
    display: flex;
    min-height: 700px;
}

.utour-feature-image-side {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.utour-feature-content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.utour-feature-dark {
    background: var(--utour-dark);
    color: #ffffff;
}

.utour-feature-light {
    background: #ffffff;
    color: var(--utour-dark);
}

.utour-feature-reverse {
    flex-direction: row-reverse;
}

.utour-feature-content {
    max-width: 600px;
}

.utour-feature-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--utour-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.utour-feature-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.utour-feature-dark h2 {
    color: #ffffff;
}

.utour-feature-light h2 {
    color: var(--utour-dark);
}

.utour-feature-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.utour-feature-dark p {
    color: #cbd5e1;
}

.utour-feature-light p {
    color: var(--utour-gray);
}

.utour-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.utour-feature-list li {
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.utour-check {
    width: 24px;
    height: 24px;
    background: var(--utour-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Specifications Section */
.utour-specs-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.utour-specs-header {
    text-align: center;
    margin-bottom: 70px;
}

.utour-specs-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--utour-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.utour-specs-header p {
    font-size: 20px;
    color: var(--utour-gray);
}

.utour-spec-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.utour-spec-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.utour-spec-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--utour-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--utour-primary);
}

.utour-spec-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.utour-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.utour-spec-row:last-child {
    border-bottom: none;
}

.utour-spec-label {
    font-size: 15px;
    color: var(--utour-gray);
    font-weight: 500;
}

.utour-spec-value {
    font-size: 15px;
    color: var(--utour-dark);
    font-weight: 700;
    text-align: right;
}

/* Gallery Section */
.utour-gallery-section {
    padding: 120px 0;
    background: var(--utour-dark);
}

.utour-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.utour-section-subtitle {
    font-size: 20px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 70px;
}

.utour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.utour-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.utour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.utour-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.utour-gallery-item:hover .utour-gallery-overlay {
    transform: translateY(0);
}

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

.utour-gallery-overlay span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* CTA Section */
.utour-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--utour-primary), var(--utour-secondary));
}

.utour-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.utour-cta-box h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.utour-cta-box p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

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

.utour-btn-cta-primary {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: var(--utour-primary);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.utour-btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--utour-primary);
}

.utour-btn-cta-secondary {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.utour-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .utour-feature-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .utour-hero-title {
        font-size: 52px;
    }

    .utour-feature-split {
        flex-direction: column !important;
        min-height: auto;
    }

    .utour-feature-image-side {
        flex: 0 0 400px;
    }

    .utour-feature-content-side {
        flex: 1;
        padding: 60px 40px;
    }

    .utour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .utour-hero {
        min-height: auto;
    }

    .utour-hero-title {
        font-size: 44px;
    }

    .utour-hero-subtitle {
        font-size: 20px;
    }

    .utour-hero-specs {
        gap: 30px;
    }

    .utour-spec-number {
        font-size: 28px;
    }

    .utour-hero-buttons {
        flex-direction: column;
    }

    .utour-btn-primary,
    .utour-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .utour-highlights {
        padding: 60px 0;
    }

    .utour-highlight-card {
        margin-bottom: 20px;
    }

    .utour-feature-content-side {
        padding: 40px 20px;
    }

    .utour-feature-content h2 {
        font-size: 32px;
    }

    .utour-feature-content p {
        font-size: 16px;
    }

    .utour-specs-section {
        padding: 80px 0;
    }

    .utour-spec-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .utour-gallery-grid {
        grid-template-columns: 1fr;
    }

    .utour-cta-box h2 {
        font-size: 36px;
    }

    .utour-cta-box p {
        font-size: 18px;
    }

    .utour-cta-buttons {
        flex-direction: column;
    }

    .utour-btn-cta-primary,
    .utour-btn-cta-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .utour-hero-title {
        font-size: 36px;
    }

    .utour-specs-header h2 {
        font-size: 36px;
    }

    .utour-section-title {
        font-size: 36px;
    }
}

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