* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 40%, #D4AF37 70%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h1, h2, h3, h4, .logo-fallback, .section-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

.subtitle-text, p, .value-badge, .client-tag {
    font-family: 'Century Gothic', 'CenturyGothic', 'Apple Gothic', 'Inter', sans-serif;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366, #20b859);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

header {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}
.logo-img {
    max-height: 55px;
    width: auto;
}
.logo-fallback {
    font-size: 1.6rem;
}
.logo-fallback span {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Century Gothic', sans-serif;
    padding: 0.5rem 0;
}
.nav-links a:hover, .nav-links a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}
.quote-btn {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #000 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 40px;
    border-bottom: none !important;
    font-weight: 700 !important;
    margin-left: auto;
    text-decoration: none !important;
}
.quote-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    border-bottom: none !important;
}
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #D4AF37;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.hero-about {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&h=900&fit=crop');
}
.hero-overlay {
    width: 100%;
    background: rgba(0,0,0,0.4);
    padding: 4rem 0;
}
.hero-content h1 {
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-content h1 span {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.bg-dark { background: #0a0a0a; }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.about-grid p { color: #ccc; line-height: 1.6; }
.value-badge {
    background: rgba(212,175,55,0.1);
    border-left: 3px solid #D4AF37;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 0 12px 12px 0;
}
.value-badge strong {
    color: #D4AF37;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.client-tag {
    background: #1e1e1e;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    border-left: 3px solid #D4AF37;
}

footer {
    background: #030303;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(212,175,55,0.3);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.social-icons a {
    color: white;
    margin-right: 1rem;
    font-size: 1.3rem;
}
.social-icons a:hover { color: #D4AF37; }
.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #666;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        padding: 1.5rem;
        z-index: 999;
    }
    .about-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Logo link styling */
.logo-link {
    text-decoration: none;
    display: inline-block;
}
.logo-link:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* Mobile navigation - FIXED: Centered dropdown */
@media (max-width: 900px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .logo-link {
        order: 1;
    }
    
    .mobile-menu {
        order: 2;
        display: block;
    }
    
    .quote-btn {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        margin-left: 0;
        text-align: center;
        display: block;
    }
    
    .nav-links {
        order: 4;
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        padding: 1.5rem;
        margin-top: 0;
        text-align: center;
        z-index: 999;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
}