:root {
    --black: #050505;
    --dark-grey: #121212;
    --grey: #555555;
    --light-grey: #e0e0e0;
    --white: #ffffff;
    --accent: #222222;
    --gold: #C5A059;
    --gold-glow: rgba(197, 160, 89, 0.15);
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--grey);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--light-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .title, .section-title, .massive-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

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

.bg-accent {
    background-color: var(--accent);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Mockup Banner */
.mockup-banner {
    background-color: #e50914;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 38px;
    z-index: 1000;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--white);
    transition: color 0.4s ease;
}

.btn-primary {
    background-color: var(--white);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--black);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

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

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--black);
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

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

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
    font-weight: 300;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: transform 2s ease-out;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* Marquee */
.marquee-container {
    background-color: var(--white);
    color: var(--black);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
}

.marquee-content span {
    margin: 0 1.5rem;
}

.dot {
    color: #999;
    font-style: normal;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
}

/* Luxury Features (Vervangt Benefits Grid) */
.luxury-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.luxury-feature:nth-child(even) {
    direction: rtl;
}

.luxury-feature:nth-child(even) .feature-text {
    direction: ltr;
}

.luxury-feature:last-child {
    margin-bottom: 0;
}

.feature-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-feature:hover .feature-image-wrapper img {
    transform: scale(1.05);
}

.feature-text {
    padding: 2rem 0;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--light-grey);
    margin-bottom: 2rem;
}

/* Services */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.services-text p {
    font-size: 1.1rem;
    color: var(--light-grey);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
}

.price-item.popular {
    border-color: var(--gold);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 12px;
}

.price-info h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.price-info p {
    font-size: 0.95rem;
    color: var(--grey);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
}

/* Testimonials Slider */
.testimonials-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-testimonials 35s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    width: 450px;
    flex-shrink: 0;
}

.testimonial-card .stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--gold);
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--light-grey);
}

.reviewer strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--grey);
}

/* Big CTA */
.massive-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.brand-col p {
    max-width: 300px;
    color: var(--grey);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-col p, .footer-links a {
    color: var(--grey);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--grey);
}

.portfolio-credits a {
    color: var(--white);
    font-weight: 600;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-image-wrapper {
        height: 50vh;
    }
    .hero-cta {
        justify-content: center;
    }
    .subtitle {
        margin: 0 auto 3rem;
    }
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-text {
        text-align: center;
    }
    .services-text .section-title {
        margin-bottom: 1rem;
    }
}

@media (max-width: 900px) {
    .luxury-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    .luxury-feature:nth-child(even) {
        direction: ltr;
    }
    .feature-image-wrapper {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .massive-title {
        font-size: 2.5rem;
    }
    .title {
        font-size: 2.8rem;
    }
    .hero {
        padding-top: 160px;
    }
    .testimonial-card {
        width: 300px;
        padding: 2rem 1.5rem;
    }
    .mockup-banner {
        font-size: 0.7rem;
        min-height: 50px;
    }
    .navbar {
        top: 50px;
        padding: 1rem 5%;
    }
    .testimonials-slider::before,
    .testimonials-slider::after {
        width: 40px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(5, 5, 5, 0.98);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hero-cta .btn-primary, 
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
