@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;
}

/* ================= HEADER ================= */
header {
    
    width: 100%;
    top: 0;
    /* background: rgba(0, 0, 0, 0.85); */
    /* border-bottom: 1px solid rgba(212, 175, 55, 0.2); */
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 22px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    font-size: 17px;
    /* font-weight: bold; */
    letter-spacing: 1px;
    transition: 0.3s;
    color: #d4af37;
}

nav ul li a:hover {
    color: #e5e5e5;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    /* background:
        linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)),
        url(./images/banner.jpg) center/cover no-repeat;
        background-attachment: fixed; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 620px;
    margin-left: 8%;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: #d4af37;
    margin-bottom: 18px;
}

.hero p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
}

/* ================= BUTTON ================= */
.btns {
    display: flex;
    gap: 50px;
}

.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 40px;
    border: 1px solid #d4af37;
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.4s;
}

.btn:hover {
    background: #d4af37;
    color: #000;
}

.btn1 {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.4s;
}


#btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 40px;
    border: 1px solid #d4af37;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.4s;
    background: #d4af37;
    color: #000;
}

#btn:hover {
    background-color: #fff;
    color: #ebc033;
}

/* ================= SECTIONS ================= */
.section {
    padding: 110px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 34px;
    margin-bottom: 15px;
}

/* GOLD DIVIDER */
.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 20px auto;
}

/* ================= CARDS ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 45px;
    transition: 0.4s;
}

.card:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
}

.card h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 12px;
}

/* ================= PROCESS ================= */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.process div {
    padding: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ================= CONTACT ================= */
.contact {
    max-width: 580px;
    margin: auto;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.social {
    text-align: center;
    margin-top: 30px;
}

.social a {
    margin: 0 15px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* ================= FOOTER ================= */
footer {
    padding: 45px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #888;
    font-size: 13px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #d4af37;
    color: #000;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
}




/* ================= GALLERY ================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 16px;
}

/* ================= PARTNERS ================= */
.partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.85;
}

.partners img {
    height: 40px;
    filter: grayscale(100%);
}

/* ================= HERO SLIDESHOW ================= */
/* .hero {
    position: relative;
    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;
}


/* Your images */
.slide1 {
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("./images/c.jpg");
}

.slide2 {
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("./images/banner1.jpg");
    animation-delay: 5s;
}

.slide3 {
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
        url("./images/banner2.jpg");
    animation-delay: 10s;
}



/* ================= INNER HERO ================= */
.inner-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    padding-left: 8%;
    position: relative;
    background-size: cover;
    background-position: center;
    animation: innerZoom 25s ease-in-out infinite alternate;

}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.inner-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #d4af37;
    margin-bottom: 15px;
}

.inner-hero p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
}


/* Page backgrounds */
.about-hero {
    background-image: url("./images/about-banner.jpg");
}

.services-hero {
    background-image: url("./images/services-banner.jpg");
}

.why-hero {
    background-image: url("./images/why-us-banner.jpg");
}

.contact-hero {
    background-image: url("./images/contact-banner.jpg");
}



/* ================= WHY HOME SECTION ================= */
.why-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
}

.why-home-card {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 35px 30px;
    text-align: center;
    transition: 0.4s;
}

.why-home-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.why-home-card i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 18px;
}

.why-home-card h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 12px;
}

.why-home-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

/* ================= ABOUT LUXURY ================= */
.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-lead {
    font-size: 17px;
    color: #e5e5e5;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-content p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-values {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.about-values div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-values i {
    font-size: 18px;
}


/* ================= SERVICES LUXURY ================= */
.service-card {
    text-align: left;
    padding: 50px 45px;
}

.service-card i {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #ccc;
}

/* ================= WHY BRAND ================= */
.why-brand-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.why-lead {
    font-size: 17px;
    color: #e5e5e5;
    margin-bottom: 25px;
    font-weight: 300;
}

.why-brand-content p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 22px;
}

.why-pillars {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.why-pillars div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 1px;
}

.why-pillars i {
    font-size: 18px;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    nav ul {
        display: none;
    }

    .hero h2 {
        font-size: 38px;
    }

    .hero-content {
        margin: 0 5%;
    }
}


/* ================= DASHBOARD LUXURY SECTION ================= */

.luxury-dashboard {
    padding-top: 60px;
}

/* TOP ACTION CARDS */
.luxury-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.luxury-card {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(212, 175, 55, 0.25); */
    /* padding: 40px 30px; */
    text-align: center;
    transition: 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.luxury-card i {
    font-size: 26px;
    color: #d4af37;
    margin-bottom: 15px;
}

.luxury-card h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 8px;
}

.luxury-card p {
    font-size: 13px;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* HOW IT WORKS */
.how-it-works {
    text-align: center;
}

.how-it-works h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 30px;
    margin-bottom: 10px;
}

/* STEPS */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 45px;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e5e5e5;
}

.step span {
    width: 36px;
    height: 36px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 14px;
}

.step p {
    font-size: 14px;
    letter-spacing: 1px;
}

/* LINE BETWEEN STEPS */
.step-line {
    width: 50px;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
}

/* MOBILE */
@media(max-width:768px) {
    .steps {
        flex-direction: column;
    }

    .step-line {
        width: 1px;
        height: 30px;
    }
}

/* ================= PAGE FADE TRANSITION ================= */
.page-wrapper {
    animation: pageFade 0.8s ease;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    transition: opacity 0.3s ease;
}

a:active {
    opacity: 0.6;
}

/* PAGE BACKGROUND */

@keyframes innerZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@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);
    }
}

.image-slider {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollImages 40s linear infinite;
}

.slider-track img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #d4af37;
    /* Luxury gold */
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.image-slider h2 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: #d4af37;
    margin-bottom: 18px;
    text-align: center;
    margin-bottom: 60px;
margin-top: -60px;
}

/* Slight zoom on hover */
.slider-track img:hover {
    transform: scale(1.05);
}

/* Continuous scrolling */
@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    padding: 30px 0 60px;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.logo-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border: 2px solid #d4af37;
    /* Gold border */
    border-radius: 12px;
    padding: 10px 18px;
    flex-shrink: 0;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle premium hover */
.logo-track img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Right to Left movement */
@keyframes scrollLogos {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    /* Removed forced dark background – let it inherit from page */
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;

    /* Hide scrollbar completely */
    -ms-overflow-style: none;          /* IE + Edge */
    scrollbar-width: none;             /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
    display: none;                     /* Chrome, Safari, newer Edge */
}

.testimonial-card {
    flex: 0 0 340px;                   /* card width – adjust as needed */
    background: rgba(20, 20, 20, 0.6); /* subtle semi-transparent dark for luxury feel */
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.quote-icon {
    font-size: 3.2rem;
    color: #d4af37;                    /* luxury gold */
    margin-bottom: 20px;
    opacity: 0.85;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f0f0f0;                    /* bright white-ish for contrast */
    margin-bottom: 28px;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.18rem;
    color: #ffffff;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: #d4af37;                    /* gold accent for location */
}

/* Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid #444;
    border-radius: 50%;
    color: #d4af37;                    /* gold arrows */
    font-size: 1.4rem;
    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.1);
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

/* Optional: hide arrows on very small screens */
@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}