/* Index Page Styling - Premium Overhaul */

/* Hero Improvements */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax offset */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.hero-text-center {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(42px, 8vw, 76px);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

/* Scroll Indiciator */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Global Subtitle Standalone styling */
.subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Experience Highlights */
.experience-highlights {
    background-color: var(--white);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    background: var(--soft-gray);
    transition: var(--transition);
}

.benefit-item i {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* Luxury Showcase */
.luxury-showcase {
    overflow: hidden;
}

.showcase-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.img-wrapper.shadow-gold {
    box-shadow: 20px 20px 0 var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 1.5s ease;
}

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

.luxury-features-list {
    margin-top: 35px;
}

.luxury-features-list li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
}

.luxury-features-list i {
    color: var(--gold);
    font-size: 14px;
}

/* Quick Gallery Preview */
.preview-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.p-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-card:hover .p-overlay {
    opacity: 1;
}

.preview-card:hover img {
    transform: scale(1.1);
}

.p-overlay span {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid var(--gold);
    padding: 15px 25px;
}

/* Dark Testimonials */
.testimonials-dark h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.t-carousel {
    max-width: 900px;
    margin: 50px auto 0;
}

.t-carousel .stars {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 16px;
}

.t-item .quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.t-item .author {
    display: block;
    margin-top: 40px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}

/* Final CTA Area */
.final-cta {
    background: var(--soft-gray);
    position: relative;
}

.cta-box {
    background: var(--white);
    border-radius: 0;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-box h2 {
    font-size: 42px;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .luxury-showcase .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showcase-content {
        padding: 0 !important;
        text-align: center;
    }

    .showcase-img {
        order: -1;
    }

    .luxury-features-list {
        display: inline-block;
        text-align: left;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .scroll-indicator {
        display: none;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .t-item .quote {
        font-size: 22px;
    }

    .showcase-content h2,
    .testimonials-dark h2,
    .cta-box h2 {
        font-size: 32px;
    }
}