* {
    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, input, select, textarea {
    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); }

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;
}
.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-contact {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?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; }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-details p { margin: 1.5rem 0; }
.contact-details i { color: #D4AF37; width: 2rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 12px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #D4AF37;
    outline: none;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: #D4AF37; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Century Gothic', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #000;
    border: none;
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.05); }

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;
    }
    .contact-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;
}