:root {
    --bg-dark: #0a0a0a;
    --gold: #D4AF37;
    --gold-hover: #c5a028;
    --text-white: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.gold-text {
    color: var(--gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-primary {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--bg-dark) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animation Utilities */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
.services {
    padding: 8rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* CTA & Footer */
.cta-section {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.contact-item:hover {
    color: var(--gold);
    border-color: var(--gold);
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 5%;
    background: #0d0d0d;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review-author {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
}

.faq-item summary {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    padding: 1.5rem;
    list-style: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item[open] {
    border-color: var(--gold);
}