@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(160deg,
            #070707 0%,
            #0c0a07 25%,
            #15110a 45%,
            #0f0d0b 65%,
            #080808 100%);
    color: #e6e6e6;
    font-family: 'Montserrat', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.08), transparent 40%),
        radial-gradient(circle at 80% 100%, rgba(160, 120, 40, 0.06), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:active {
    opacity: 0.6;
}

/* ================= HEADER / NAVBAR ================= */
header {
    width: 100%;
    position: absolute;
    /* ← changed: not fixed → disappears on scroll */
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    /* equal left/right padding + some vertical space */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 24px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-size: 16px;
    letter-spacing: 1px;
    color: #d4af37;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f5f5f5;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 30px;
    font-weight: 500;
    color: #d4af37;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 15s infinite, zoomSlide 15s infinite;
}

.slide1 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("https://wallpapercave.com/wp/wp7638266.jpg");
}

.slide2 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("https://i.pinimg.com/736x/f8/59/c5/f859c5e34b3acd6309ad34506138d999.jpg");
    animation-delay: 5s;
}

.slide3 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("https://png.pngtree.com/thumb_back/fh260/background/20231221/pngtree-a-black-porsche-parked-on-the-roadside-photo-image_15554644.png");
    animation-delay: 10s;
}

.hero-content {
    max-width: 640px;
    margin-left: 8%;
    z-index: 2;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: #d4af37;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
    max-width: 520px;
}

.btns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.btn,
.btn1 {
    padding: 14px 38px;
    border: 1px solid #d4af37;
    color: #d4af37;
    letter-spacing: 1.5px;
    font-size: 13px;
    transition: all 0.4s;
}

.btn1 {
    border-color: #fff;
    color: #fff;
}

.btn:hover {
    background: #d4af37;
    color: #000;
}

.btn1:hover {
    background: #fff;
    color: #000;
}

/* ================= GENERAL SECTIONS ================= */
.section {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 38px;
    margin-bottom: 20px;
}

.divider {
    width: 90px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 20px auto;
}

/* ================= LUXURY DASHBOARD ================= */
.luxury-dashboard {
    padding-top: 80px;
}

.luxury-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 90px;
}

.luxury-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
}

.luxury-card i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 18px;
}

.luxury-card h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 12px;
}

.luxury-card p {
    font-size: 14px;
    color: #ccc;
}

.how-it-works {
    text-align: center;
}

.how-it-works h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 15px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #e5e5e5;
}

.step span {
    width: 40px;
    height: 40px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 16px;
}

.step p {
    font-size: 15px;
    letter-spacing: 1px;
}

.step-line {
    width: 60px;
    height: 1px;
    background: rgba(212, 175, 55, 0.45);
}

/* ================= IMAGE SLIDER ================= */
.image-slider {
    padding: 80px 0;
    overflow: hidden;
}

.image-slider h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 60px;
}

.slider-track {
    display: flex;
    gap: 35px;
    width: max-content;
    animation: scrollImages 45s linear infinite;
}

.slider-track img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #d4af37;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.slider-track img:hover {
    transform: scale(1.06);
}

@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= LOGO SLIDER ================= */
.logo-slider {
    padding: 40px 0 50px;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border: 2px solid #d4af37;
    border-radius: 14px;
    padding: 12px 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* CTA – single centered button */
.cta-row {
    text-align: center;
    margin-top: 5rem;
}

.cta-btn {
    display: inline-block;
    padding: 16px 60px;
    border: 1px solid #d4af37;
    background: #d4af37;
    color: #000;
    font-size: 1.05rem;
    letter-spacing: 1.4px;
    border-radius: 8px;
    transition: all 0.35s;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
    background: #e5c04a;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 100px 5%;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    overflow-x: auto;
    gap: 35px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 360px;
    background: rgba(25, 25, 25, 0.65);
    border: 1px solid #444;
    border-radius: 14px;
    padding: 45px 38px;
    scroll-snap-align: start;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width : 410px) {
    .testimonial-card {
        flex: 0 0 290px;
    }
}

.quote-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 24px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #f5f5f5;
    margin-bottom: 32px;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: #d4af37;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(35, 35, 35, 0.75);
    border: 1px solid #555;
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #d4af37;
    color: #111;
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.12);
}

.left-arrow {
    left: -30px;
}

.right-arrow {
    right: -30px;
}

/* ================= FOOTER & WHATSAPP ================= */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    color: #888;
    font-size: 14px;
}



.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d4af37;
    color: #000;
    padding: 11px 18px;
    border-radius: 50%;
    font-size: 41px;
    transition: all 0.3s;
}

.whatsapp:hover {
    color: #ffffff;
    transform: scale(1.18);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeSlide {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomSlide {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.08);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    nav {
        padding: 20px 25px;
    }

    nav ul {
        display: none;
        /* ← you'll probably want a hamburger menu later */
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 7rem;
    }

    .btns {
        flex-direction: column;
        max-width: 13rem;
        gap: 20px;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        width: 1px;
        height: 40px;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 500px) {
    .brand-text {
        max-width: 6rem;
        font-size: 20px;
    }

    nav {
        padding: 25px 22px;
    }

    .hero-content {
        margin-top: 7rem;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .whatsapp {
        right: 18px;
        padding: 10px 15px;
        font-size: 30px;
    }

}

/* Mobile */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #151515;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.show {
        display: flex;
    }
}