/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 164, 66, 0.4);
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .btn-nav {
        padding: 10px 18px;
        font-size: 14px;
    }
}


/* --- Variables & Reset --- */
:root {
    --gold: #d2a442;
    --navy: #081526;
    --light-navy: #0d213a;
    --white: #ffffff;
    --gray: #f4f7f9;
    --text-main: #333333;
    --text-light: #666666;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--gray); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.img-rounded { border-radius: var(--radius); width: 100%; height: auto; }
.mt-40 { margin-top: 40px; }

/* --- Buttons --- */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-gold-full { background: var(--gold); color: var(--white); width: 100%; }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.glow:hover { box-shadow: 0 0 20px var(--gold); }

/* --- Section 1: Hero --- */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(rgba(8, 21, 38, 0.78), rgba(8, 21, 38, 0.82));
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.badge {
    background: rgba(212, 166, 58, 0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    color: var(--white);
    margin: 20px 0;
    line-height: 1.2;
}

.subheading { font-size: 1.2rem; color: #ccc; margin-bottom: 30px; }

.feature-icons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    color: #fff;
}

.hero-btns { display: flex; gap: 20px; }

.hero-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
    z-index: 10;
}

.hero-form-card h3 { margin-bottom: 25px; color: var(--navy); }

form input, form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.privacy-text { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* --- Section 2: Stats --- */
.stats-bar { background: var(--navy); padding: 40px 0; color: var(--white); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-item h2 { font-size: 2.5rem; color: var(--gold); }

/* --- Section 3: About --- */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bullet-list { list-style: none; margin: 20px 0; }
.bullet-list li::before { content: '✓'; color: var(--gold); font-weight: bold; margin-right: 10px; }

.features-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feat-card {
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: var(--transition);
}
.feat-card:hover { transform: translateY(-5px); }

/* --- Section 4: Gallery --- */
.gallery-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 20px 0 0;
}
.gallery-card {
    aspect-ratio: 4 / 3;
    background: #f5f2eb;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.04); }

/* --- Section 5: Pricing --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #eee;
    flex: 0 1 420px;
    max-width: 420px;
}

.price-card.highlighted {
    border: 2px solid var(--gold);
    z-index: 2;
    transform: translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.price { font-size: 1.5rem; font-weight: 700; margin: 20px 0; color: var(--navy); }
.card-list { list-style: none; margin-bottom: 30px; color: var(--text-light); }

/* --- Section 6: Amenities --- */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.amenity-item {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.location-details h4 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.location-details h4:not(:first-child) {
    margin-top: 26px;
}

.location-list {
    list-style: none;
    margin-top: 0;
}

.location-list li {
    margin-bottom: 10px;
}

.nearby-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nearby-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    margin-bottom: 0;
    padding: 14px;
    background: var(--gray);
    border: 1px solid #e8edf2;
    border-radius: 12px;
    text-align: left;
}

.nearby-list li:first-child {
    grid-column: span 2;
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 166, 58, 0.16);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    grid-row: 1 / span 2;
}

.nearby-list strong,
.nearby-list small {
    display: block;
}

.nearby-list strong {
    color: var(--navy);
    line-height: 1.25;
}

.nearby-list small {
    color: var(--text-light);
    font-size: 0.82rem;
    margin-top: 3px;
    grid-column: 2;
}

/* --- Section 7: Progress --- */
.progress-section { background: var(--navy); }
.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}
.timeline-line {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    z-index: 1;
}
.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #777;
    width: 20%;
}
.timeline-item.active { color: var(--gold); }
.dot {
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 5px solid var(--navy);
}
.active .dot { background: var(--gold); }

/* --- Section 8: Testimonials --- */
.testimonial-slider-container { overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}
.user { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 20px; }
.user img { width: 60px; border-radius: 50%; }

/* --- Section 9: Offer --- */
.offer-banner { background: var(--light-navy); padding: 50px 0; color: #fff; }
.offer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.offer-cta {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.offer-cta .btn { min-width: 220px; }

/* --- Section 10: FAQ --- */
.accordion-item { margin-bottom: 15px; border-bottom: 1px solid #ddd; }
.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}
.accordion-body { max-height: 0; overflow: hidden; transition: 0.3s ease; }
.accordion-item.active .accordion-body { max-height: 200px; padding-bottom: 20px; }

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-address h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

.footer-address p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-socials a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact a:hover,
.footer-socials a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    border-color: var(--gold);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-wrapper { 
        flex-direction: column;
        text-align: center; 
        align-items: center;
    }
    .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-btns { justify-content: center; }
    .hero-form-card { margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .gallery-slider { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nearby-list { grid-template-columns: 1fr; }
    .nearby-list li:first-child { grid-column: auto; }
    
    .hero {
        padding-top: 140px;
        min-height: auto;
    }

    .hero-form-card { padding: 25px; }

    /* Vertical Timeline for Mobile */
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 30px;
        margin-top: 40px;
    }
    .timeline-line {
        width: 2px;
        height: calc(100% - 40px);
        left: 34px;
        top: 15px;
    }
    .timeline-item {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    .dot {
        margin: 0;
        flex-shrink: 0;
    }

    .price-card.highlighted { transform: none; }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials { justify-content: center; }
    .footer-contact { align-items: center; }

    .offer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .offer-cta {
        flex-direction: column;
        width: 100%;
    }
    .offer-cta .btn { width: 100%; }

    .countdown-timer { justify-content: center; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .gallery-slider { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
}
