@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --deep-midnight: #020817;
    --ocean-accent: #0ea5e9;
    --sand-gold: #e2b17a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--deep-midnight);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Luxury Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section - Ultra Luxury */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-luxury.png') no-repeat center center/cover;
    filter: brightness(0.4);
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate linear;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--deep-midnight), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -3px;
    color: white;
}

/* Gear Showcase Grid */
.section-title {
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 300;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gear-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.gear-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ocean-accent);
    transform: translateY(-10px);
}

.gear-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.8s ease;
}

.gear-card:hover img {
    transform: scale(1.05);
}

.gear-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--sand-gold);
}

.gear-card p {
    color: var(--text-muted);
    font-weight: 300;
}

/* Floating Technical Callouts */
.tech-specs {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.tech-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lead Capture - Premium Glassmorphism */
.notify-bar {
    margin: 10rem 2rem;
    padding: 6rem;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.15), transparent), var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    text-align: center;
    max-width: 1200px;
    margin-inline: auto;
}

.notify-form {
    margin-top: 3rem;
    display: flex;
    max-width: 600px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding-left: 2rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.notify-form button {
    background: white;
    color: black;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: var(--ocean-accent);
    color: white;
    transform: scale(1.05);
}

/* WhatsApp Widget - Premium Style */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--sand-gold);
    color: var(--deep-midnight);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: white;
}

.whatsapp-widget::after {
    content: 'Inquire Now';
    position: absolute;
    right: 75px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(10px);
    border: 1px solid var(--glass-border);
}

.whatsapp-widget:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--ocean-accent);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite ease-in-out;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .notify-bar {
        padding: 3rem 1.5rem;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .notify-form button {
        margin-top: 1rem;
        width: 100%;
    }
}