:root {
    --bg-black: #050505;
    --gold-metalic: #d4af37;
    --gold-highlight: #fffacd;
    --gold-shadow: #a67c00;
    --white: #ffffff;
    --cream: #fffdd0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-black);
    color: var(--white);
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

/* Layout */
#main-content {
    display: block;
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

.hero-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold-metalic);
    letter-spacing: 15px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 800px;
    line-height: 1.8;
    font-weight: 300;
}

.services-wrapper {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.section-subtitle {
    text-align: center;
    color: var(--gold-metalic);
    letter-spacing: 5px;
    margin-bottom: 50px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Hero call-to-action */
.scroll-indicator {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-metalic);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.scroll-indicator:hover {
    background-color: var(--gold-metalic);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.nav-scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    color: var(--gold-metalic);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}

.nav-logo-img {
    width: auto;
    height: 60px;
    max-width: 220px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-metalic);
}

.nav-btn {
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links .nav-btn:hover {
    background-color: var(--gold-metalic);
    color: #000;
    border-color: var(--gold-metalic);
    transform: translateY(-2px);
}

.nav-wp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-metalic);
    border: 1px solid var(--gold-metalic);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-wp-btn:hover {
    background: var(--gold-metalic);
    color: var(--bg-black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.nav-wp-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-wp-btn:hover i {
    color: #25D366;
    transform: scale(1.1);
}

/* Footer */
.footer-section,
.simple-footer {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-section {
    padding: 60px 5% 30px;
    margin-top: 50px;
}

.footer-title {
    color: var(--gold-metalic);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-icon {
    color: var(--gold-metalic);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.footer-label {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-text {
    color: var(--cream);
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-action-btn {
    color: var(--gold-metalic);
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid var(--gold-metalic);
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
    display: inline-block;
}

.footer-action-btn:hover {
    background-color: var(--gold-metalic);
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.footer-copy,
.simple-footer p,
.footer-signature {
    color: #444;
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-copy {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

.simple-footer {
    width: 100%;
    padding: 25px 0;
    margin-top: 20px;
}

/* Responsive */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    #main-content {
        display: flex;
        flex-direction: column;
        height: auto;
        padding-top: 100px;
    }

    .hero-section {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 20px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        width: 100%;
    }

    .hero-desc {
        width: 100%;
        font-size: 1rem;
        padding: 0 10px;
    }

    .services-wrapper {
        width: 100%;
        padding: 40px 20px;
        margin-top: 20px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 0;
    }

    .navbar {
        padding: 10px 15px;
    }

    .nav-logo-img {
        height: 44px;
        max-width: 160px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        padding: 20px 0;
        border-bottom: 2px solid var(--gold-metalic);
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-wp-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--gold-metalic);
        cursor: pointer;
    }
}
