* {
    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, .page-title, .service-card h3 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

.subtitle-text, .section-subhead, p, .service-card p, .addon-tag, .note {
    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;
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: #000000;
}
.page-title { font-size: 3rem; margin-bottom: 1rem; }

.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: 1rem; }
.section-subhead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #0c0c0c;
    padding: 1.8rem;
    border-radius: 1.5rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}
.service-card:hover { border-color: #D4AF37; transform: translateY(-5px); }
.service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: #D4AF37; }
.service-card p { color: #aaa; font-size: 0.85rem; }

.addons-section {
    padding: 2rem;
    background: #0c0c0c;
    border-radius: 2rem;
    border: 1px solid rgba(212,175,55,0.2);
}
.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}
.addon-tag {
    background: #1e1e1e;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    border-left: 3px solid #D4AF37;
}
.note { font-size: 0.8rem; color: #888; }

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: 1024px) {
    .services-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@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;
    }
    .page-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 600px) {
    .services-grid-full { grid-template-columns: 1fr; }
}

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