:root {
    --primary: #ff3131;
    /* Premium Red */
    --primary-dark: #cc0000;
    --accent: #ffae00;
    /* Warm Accent (instead of neon green, to match red better) */
    --bg-dark: #0a0a0b;
    --bg-charcoal: #141416;
    --text-white: #ffffff;
    --text-gray: #a1a1a6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container-max: 1200px;
    --section-spacing: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.grid {
    display: grid;
    gap: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.6rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.logo-subline {
    font-size: 0.55rem;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 49, 49, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax */
    background:
        linear-gradient(to right, rgba(10, 10, 11, 0.9), rgba(10, 10, 11, 0.4)),
        url('../assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.1s ease-out;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Services Grid */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.service-card:hover::after {
    left: 100%;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
}

/* Stats */
.stats {
    background: var(--bg-charcoal);
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit';
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Component Details */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 150px;
    margin-top: 24px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--glass-border);
    z-index: 0;
}

.step {
    width: 32px;
    height: 32px;
    background: var(--bg-charcoal);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg-dark);
}

.step.completed {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--bg-dark);
}

.option-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.option-card:hover {
    border-color: var(--primary);
    background: rgba(0, 236, 255, 0.05);
}

.option-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.option-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 12px 0;
    color: var(--primary);
}

.form-input {
    width: 100%;
    background: var(--bg-charcoal);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 12px;
    color: var(--text-white);
    margin-bottom: 16px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-text {
    background: none;
    color: var(--text-gray);
    margin-top: 16px;
    font-size: 0.85rem;
}

/* Custom Wave Divider */
.wave-divider {
    width: 100%;
    height: 100px;
    background: var(--bg-dark);
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.showcase-item {
    position: relative;
    height: 450px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

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

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

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

.showcase-item:hover .showcase-content {
    transform: translateY(0);
    opacity: 1;
}

.showcase-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.showcase-content p {
    color: var(--text-white);
    font-weight: 600;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    cursor: pointer;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Page Footer */
footer {
    padding: 80px 0 120px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--bg-charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease-in-out;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-white);
        margin: 5px;
        transition: var(--transition);
    }

    .booking-steps {
        gap: 40px;
    }

    .booking-steps::before {
        width: 80%;
    }

    .glass {
        padding: 24px;
    }

    /* Prevent words running into logo */
    .logo {
        position: relative;
        z-index: 1001;
    }
}

/* Initially hide toggle on desktop if it wasn't already */
.mobile-menu-toggle {
    display: none;
}