/* ========================================
   FORTHING FRIDAY EV - PREMIUM EV DESIGN
   Apple-inspired, tech-focused styling
   ======================================== */

:root {
    --friday-primary: #050816;
    --friday-secondary: #0b1020;
    --friday-accent: #FF5D17;
    --friday-accent-soft: #FF5D17;
    --friday-light: #f5f5f5;
    --friday-white: #ffffff;
    --friday-gray: #808080;
    --friday-border: #e5e5e5;
}

/* HERO SECTION */

.friday-hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #000000 0%, #020617 50%, #000000 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.friday-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.25), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.25), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.6;
    z-index: 1;
}

.friday-hero .container {
    position: relative;
    z-index: 2;
}

.friday-hero-content {
    animation: fridayFadeInLeft 1s ease-out;
}

.friday-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
    color: var(--friday-accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.friday-hero-title {
    font-size: 96px;
    line-height: 1;
    font-weight: 700;
    color: var(--friday-white);
    letter-spacing: -2px;
    margin-bottom: 36px;
}

.friday-hero-subtitle {
    font-size: 26px;
    color: #e5e7eb;
    margin-bottom: 14px;
}

.friday-hero-description {
    font-size: 15px;
    color: #9ca3af;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.friday-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.friday-stat-item {
    min-width: 120px;
}

.friday-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--friday-accent);
    margin-bottom: 6px;
}

.friday-stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: 500;
}

.friday-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.friday-btn-primary,
.friday-btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.friday-btn-primary {
    background: linear-gradient(135deg, #e9690e, #c57922);
    color: var(--friday-white);
    box-shadow: 0 20px 45px rgba(248, 162, 56, 0.45);
}

.friday-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(248, 158, 56, 0.6);
}

.friday-btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.friday-btn-secondary:hover {
    border-color: var(--friday-accent);
    color: var(--friday-accent);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
}

.friday-hero-image {
    position: relative;
    animation: fridayFadeInRight 1s ease-out;
}

.friday-hero-glow {
    position: absolute;
    inset: 15% 5% 0 5%;
    background:
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.28), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.24), transparent 60%);
    filter: blur(4px);
    z-index: 1;
}

.friday-car-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 30px 80px rgba(15, 23, 42, 0.9));
    transform-origin: center;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.friday-hero-tagline {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
}

/* HIGHLIGHT STRIP */

.friday-highlight-strip {
    padding: 40px 0;
    background: linear-gradient(90deg, #020617, #020617);
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.friday-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.friday-highlight-item {
    padding: 16px 20px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.friday-highlight-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #e5e7eb;
    letter-spacing: 1.5px;
}

.friday-highlight-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--friday-accent);
}

/* FEATURE SECTIONS */

.friday-feature-section {
    padding: 100px 0;
}

.friday-feature-light {
    background: var(--friday-light);
}

.friday-feature-dark {
    background: var(--friday-primary);
    color: var(--friday-white);
}

.friday-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.friday-feature-reverse {
    direction: rtl;
}

.friday-feature-reverse > * {
    direction: ltr;
}

.friday-feature-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--friday-accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.friday-feature-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.friday-feature-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.friday-feature-light p {
    color: var(--friday-gray);
}

.friday-feature-dark p {
    color: #e5e7eb;
}

.friday-feature-points {
    list-style: none;
    padding: 0;
    margin: 22px 0 0 0;
}

.friday-feature-points li {
    position: relative;
    padding-left: 28px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.friday-feature-points li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
    color: var(--friday-accent);
}

.friday-feature-image {
    height: 460px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.6);
    transform: translateY(0);
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.friday-feature-image:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 120px rgba(15, 23, 42, 0.8);
}

/* SPECS SECTION */

.friday-specs-section {
    padding: 100px 0;
    background: var(--friday-light);
}

.friday-specs-header {
    text-align: center;
    margin-bottom: 64px;
}

.friday-specs-header h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--friday-primary);
    margin-bottom: 10px;
}

.friday-specs-header p {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--friday-gray);
}

.friday-spec-card {
    background: var(--friday-white);
    border-radius: 16px;
    border: 1px solid var(--friday-border);
    padding: 32px 26px;
    transition: all 0.35s ease;
    height: 100%;
}

.friday-spec-card:hover {
    border-color: var(--friday-accent);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    transform: translateY(-6px);
}

.friday-spec-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--friday-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(148, 163, 184, 0.4);
}

.friday-spec-rows {
    display: flex;
    flex-direction: column;
}

.friday-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.9);
}

.friday-spec-row:last-child {
    border-bottom: none;
}

.friday-spec-label {
    font-size: 13px;
    color: var(--friday-gray);
}

.friday-spec-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--friday-primary);
}

/* GALLERY SECTION */

.friday-gallery-section {
    padding: 100px 0;
    background: #020617;
}

.friday-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.friday-gallery-header h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--friday-white);
    margin-bottom: 10px;
}

.friday-gallery-header p {
    font-size: 14px;
    color: #9ca3af;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.friday-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.friday-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.friday-gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.friday-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.friday-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.8);
}

.friday-gallery-item:hover img {
    transform: scale(1.08);
}

.friday-gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 18px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: var(--friday-white);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.friday-gallery-item:hover .friday-gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* LIGHTBOX */

.friday-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.friday-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.friday-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.friday-lightbox-content {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    transition: transform 0.3s ease;
}

.friday-lightbox.active .friday-lightbox-content {
    transform: translate(-50%, -50%) scale(1);
}

.friday-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9);
}

.friday-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
    color: var(--friday-white);
    font-size: 26px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.friday-lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(56, 189, 248, 0.3);
}

/* CTA SECTION */

.friday-cta-section {
    padding: 110px 0;
    background: radial-gradient(circle at top, #1e293b, #020617);
}

.friday-cta-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.friday-cta-box h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--friday-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.friday-cta-box p {
    font-size: 18px;
    color: #cbd5f5;
    margin-bottom: 40px;
}

.friday-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.friday-cta-btn-primary,
.friday-cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.friday-cta-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: var(--friday-white);
    box-shadow: 0 22px 60px rgba(56, 189, 248, 0.5);
}

.friday-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 80px rgba(56, 189, 248, 0.8);
}

.friday-cta-btn-secondary {
    border: 2px solid rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
    background: transparent;
}

.friday-cta-btn-secondary:hover {
    border-color: var(--friday-accent);
    color: var(--friday-accent);
    background: rgba(15, 23, 42, 0.85);
    transform: translateY(-3px);
}

/* ANIMATIONS */

@keyframes fridayFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fridayFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .friday-hero-title {
        font-size: 80px;
    }
    .friday-feature-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .friday-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    .friday-hero-title {
        font-size: 64px;
    }
    .friday-hero-subtitle {
        font-size: 22px;
    }
    .friday-feature-grid,
    .friday-feature-reverse {
        grid-template-columns: minmax(0, 1fr);
        direction: ltr;
    }
    .friday-feature-image {
        height: 380px;
        margin-top: 10px;
    }
    .friday-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .friday-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .friday-gallery-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .friday-hero-title {
        font-size: 48px;
    }
    .friday-hero-subtitle {
        font-size: 18px;
    }
    .friday-hero-description {
        font-size: 14px;
    }
    .friday-hero-stats {
        gap: 22px;
    }
    .friday-highlight-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .friday-feature-section {
        padding: 80px 0;
    }
    .friday-feature-section h2 {
        font-size: 32px;
    }
    .friday-specs-section {
        padding: 80px 0;
    }
    .friday-gallery-section {
        padding: 80px 0;
    }
    .friday-gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .friday-cta-section {
        padding: 80px 0;
    }
    .friday-cta-box h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .friday-hero-title {
        font-size: 40px;
    }
    .friday-stat-number {
        font-size: 30px;
    }
    .friday-feature-image {
        height: 320px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
