* {
    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 */
.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;
}

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

/* Subtitles - Century Gothic */
.subtitle-text, .section-subhead, p, .service-card p, .why-item p, .review-card p, .subscribe-note {
    font-family: 'Century Gothic', 'CenturyGothic', 'Apple Gothic', 'Inter', sans-serif;
}

/* WhatsApp Float */
.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;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    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 & Navigation */
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;
    flex-wrap: wrap;
    position: relative;
}

/* Logo */
.logo {
    flex: 0 0 auto;
}
.logo-img {
    max-height: 55px;
    width: auto;
    display: block;
}
.logo-fallback {
    font-size: 1.6rem;
}
.logo-fallback span {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Centered Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    font-family: 'Century Gothic', sans-serif;
    padding: 0.5rem 0;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

/* Free Quote Button - NO UNDERLINE */
.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;
    transition: all 0.3s ease;
}
.quote-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    color: #000 !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #D4AF37;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 65vh;
    display: flex;
    align-items: center;
}
.hero-home {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?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: 3.5rem;
    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;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Sections */
.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: 3rem;
}

/* Services Grid */
.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;
    font-family: 'Times New Roman', Times, serif;
}
.service-card p {
    color: #aaa;
    font-size: 0.85rem;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-item {
    background: #0c0c0c;
    padding: 1.8rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: 0.2s;
}
.why-item:hover {
    border-color: #D4AF37;
}
.why-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', Times, serif;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: #0c0c0c;
    padding: 1.8rem;
    border-radius: 1.5rem;
    border: 1px solid #2a2a2a;
}
.review-card:hover {
    border-color: #D4AF37;
}
.quote-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    opacity: 0.5;
    margin-bottom: 1rem;
}
.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.reviewer strong {
    color: #D4AF37;
    font-family: 'Times New Roman', Times, serif;
}
.stars {
    color: #D4AF37;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

/* Subscribe */
.subscribe-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}
.subscribe-container {
    background: rgba(212,175,55,0.08);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.2);
}
.subscribe-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
.subscribe-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}
.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 40px;
    color: white;
    font-family: 'Century Gothic', sans-serif;
}
.subscribe-form input:focus {
    outline: none;
    border-color: #D4AF37;
}
.subscribe-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer */
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;
    transition: 0.2s;
}
.social-icons a:hover {
    color: #D4AF37;
}
.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-full, .why-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
        margin-top: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .quote-btn {
        margin-left: 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .services-grid-full, .why-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    .subscribe-form {
        flex-direction: column;
    }
}