@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

:root {
    /* Ultra Premium Palette */
    --primary-color: #051024;
    --primary-light: #0D2040;
    --secondary-color: #D4AF37;
    /* Metallic Gold */
    --accent-color: #AA841B;
    --text-dark: #0A0A0A;
    --text-light: #5A5A5A;
    --bg-light: #FFFFFF;
    --bg-offwhite: #F9F9FB;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 45%, #B38728 70%, #FBF5B7 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing & Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --container-width: 1200px;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Common Styling */
.section-padding {
    padding: 8rem 0;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    height: var(--header-height);
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(5, 16, 36, 0.98);
    height: 75px;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2.2rem;
    color: white;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-item:hover,
.nav-item.active {
    color: var(--secondary-color);
}

.highlight-link {
    border: 1px solid var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 16, 36, 0.7), rgba(5, 16, 36, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Page Header */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 16, 36, 0.8);
}

/* Grids & Cards */
.advantages-grid,
.services-grid,
.footer-grid {
    display: grid;
    gap: 3rem;
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.advantage-card,
.service-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.advantage-card i {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* Quote Banner */
.quote-banner {
    padding: 12rem 0;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.process-item {
    text-align: center;
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 900;
    margin-bottom: -2rem;
}

.process-item h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    padding: 4rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--secondary-color);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 8rem 0 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    margin-bottom: 6rem;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.footer-col ul li {
    margin-bottom: 1.2rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
}

/* --- GLOBAL RESPONSIVE REFINEMENTS --- */

@media (max-width: 991px) {
    .container {
        padding: 0 4rem;
    }

    .section-padding {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        padding: 4rem;
        z-index: 1001;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    /* Grids */
    .about-grid,
    .advantages-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Premium components */
    .price-card.delay-1 {
        transform: scale(1);
        /* Reset transform on mobile */
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem !important;
        padding-left: 2rem !important;
    }

    .timeline-item div:first-child {
        min-width: unset;
    }

    .premium-form-box {
        padding: 3rem;
        margin-top: -5rem;
    }

    #booking-form {
        grid-template-columns: 1fr !important;
    }

    .gallery-item:nth-child(even) {
        transform: translateY(0);
        /* Reset staggered layout on mobile */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 2rem;
    }

    .footer-grid {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Events Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 16, 36, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.gallery-item:nth-child(even) {
    transform: translateY(20px);
}

/* Pricing Cards */
.price-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.price-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

/* Timeline */
.timeline-item {
    transition: var(--transition);
}

.timeline-item:hover {
    padding-left: 4rem !important;
    background: rgba(212, 175, 55, 0.05);
}

/* --- MOBILE UNIFORMITY REFINEMENTS --- */
@media (max-width: 991px) {
    .btn {
        width: 100% !important;
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 1.2rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 450px;
        margin: 3rem auto 0 auto;
    }

    p,
    .section-subtitle,
    li,
    .contact-item span {
        font-size: 1.05rem !important;
        line-height: 1.7;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .gallery-item:nth-child(even) {
        transform: translateY(0) !important;
    }

    .premium-form-box {
        padding: 2.5rem;
        margin-top: -3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem !important;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 2.1rem !important;
    }

    .nav-links {
        max-width: 100%;
    }

    .pricing-grid,
    .advantages-grid,
    .about-grid {
        gap: 2.5rem;
    }
}