@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Primary Colors */
    --color-black: #0a0a0a;
    --color-black-soft: #141414;
    --color-gold: #d4af37;
    --color-gold-light: #e6c667;
    --color-gold-dark: #b5922c;

    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-gold: #d4af37;

    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-black-soft);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--text-white);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-black-soft);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--color-gold);
}

.about-list {
    margin-top: 30px;
    padding: 0;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pricing / Packages Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: var(--text-white);
    color: var(--color-black);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    background: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 5;
    border: none;
}

.pricing-header {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--color-black);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: #555;
    min-height: 40px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    text-align: left;
    padding-left: 0;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.pricing-footer {
    padding: 30px;
}

.pricing-footer .btn {
    width: 100%;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-black-soft);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 10px 20px 20px;
    max-height: 400px;
}

.faq-item.active .faq-question {
    color: var(--color-gold);
}

/* Brands Section */
.brands-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 40px 0;
}

.brand-placeholder {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
}

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Utility Classes */
.bg-soft {
    background-color: var(--color-black-soft);
}

.text-gold {
    color: var(--text-gold);
}

.py-section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-gray {
    color: var(--text-gray);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Specific styles for outlines on white backgrounds (like pricing cards) */
.pricing-card .btn-outline {
    color: var(--color-black);
    border-color: var(--color-black);
}

.pricing-card .btn-outline:hover {
    background-color: var(--color-black);
    color: var(--text-white);
    border-color: var(--color-black);
}

/* Specific styles for outlines on dark backgrounds (like VIP card) */
.pricing-card.featured .btn-outline {
    color: var(--color-black); /* VIP card has gold bg, so black text/border is good, or white? layout says gold bg. black text usually better on gold */
    border-color: var(--color-black);
}

.pricing-card.featured .btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border-color: var(--color-black);
}

/* Animations */
.fade-in,
.fade-in-delay,
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    header nav {
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-black-soft);
        flex-direction: column;
        padding: 40px 20px;
        border-bottom: 2px solid var(--color-gold);
        align-items: flex-start; /* Left align items in mobile */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%; /* Full width for clickable area */
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    /* Mobile Dropdown Fixes */
    .dropdown {
        display: block;
        width: 100%;
    }
    
    .dropdown-content {
        position: static; /* Stack naturally in flow */
        display: block; /* Always show in mobile for simplicity */
        width: 100%;
        background-color: rgba(255,255,255,0.03);
        box-shadow: none;
        border: none;
        padding-left: 20px; /* Indent sub-menu */
        margin-top: 15px;
    }

    .dropdown-content a {
        padding: 10px 0;
        border-bottom: none;
        font-size: 0.9rem;
        color: var(--text-gray);
    }
    
    .dropdown > a {
        color: var(--color-gold); /* Highlight parent category */
        font-weight: 600;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background: var(--color-gold);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .cta-nav {
        display: none; /* Hide top CTA in mobile menu, assumes repeated elsewhere or creates duplication */
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Blog Specific Styles */
.blog-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: var(--color-black-soft);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.blog-card-img {
    height: 200px;
    background-color: #222;
}

.blog-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}