/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #0a0a1a;
    overflow-x: hidden;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
a { text-decoration: none; color: inherit; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #ff3b3b;
    color: #fff;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.emergency-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
.emergency-phone {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.emergency-phone:hover { opacity: 0.9; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10,10,26,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: #0a0a1a;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 900;
}
.logo-icon {
    font-size: 1.8rem;
}
.logo-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.logo-highlight {
    color: #ff3b3b;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: #ccc;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.nav-links a:hover { color: #ff3b3b; }
.btn-nav {
    background: linear-gradient(135deg, #ff3b3b, #ff6b3b);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s;
}
.btn-nav:hover { transform: scale(1.05); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff3b3b" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0 60px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,59,59,0.15);
    color: #ff6b3b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}
.highlight {
    background: linear-gradient(135deg, #ff3b3b, #ff6b3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0d0;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn-primary {
    background: linear-gradient(135deg, #ff3b3b, #ff6b3b);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,59,59,0.4);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: #ff3b3b;
    color: #ff3b3b;
}
.hero-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.9rem;
}
.trust-icon {
    font-size: 1.2rem;
}

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 0; }
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ===== SERVICES ===== */
.services { background: #0d0d20; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: linear-gradient(145deg, #151530, #1a1a3a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff3b3b;
}
.service-card.featured {
    border-color: #ff3b3b;
    box-shadow: 0 0 40px rgba(255,59,59,0.15);
}
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff3b3b, #ff6b3b);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}
.service-icon-wrapper {
    margin-bottom: 20px;
}
.service-icon-emoji {
    font-size: 3.5rem;
}
.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.service-price {
    color: #ff6b3b;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 15px;
}
.service-card p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}
.service-features li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}
.service-cta {
    display: inline-block;
    color: #ff6b3b;
    font-weight: 700;
    transition: color 0.3s;
}
.service-cta:hover { color: #ff3b3b; }

/* ===== GUARANTEE SECTION ===== */
.guarantee {
    background: linear-gradient(135deg, #ff3b3b, #ff6b3b);
    text-align: center;
    padding: 60px 0;
}
.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.guarantee h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.guarantee p {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    margin-bottom: 30px;
}
.guarantee-free {
    background: #fff;
    color: #ff3b3b;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
}
.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.guarantee-item {
    color: #fff;
    font-weight: 600;
}

/* ===== ABOUT SECTION - FIXED ===== */
.about { background: #0d0d20; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.about-content p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 15px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b3b;
}
.stat-label {
    color: #888;
    font-size: 0.8rem;
}

/* Team placeholder - looks intentional, not broken */
.about-image {
    border-radius: 20px;
    overflow: hidden;
}
.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a0a2e, #0a1a2e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255,59,59,0.2);
    border-radius: 20px;
}
.placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: rgba(255,59,59,0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.placeholder-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.placeholder-subtext {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.placeholder-cta {
    color: #ff6b3b;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255,59,59,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
}

/* ===== LOCATIONS ===== */
.locations { background: #0a0a1a; }
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.location-card {
    background: linear-gradient(145deg, #151530, #1a1a3a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}
.location-card:hover {
    border-color: #ff3b3b;
    transform: translateY(-5px);
}
.location-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.location-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.location-link {
    color: #ff6b3b;
    font-weight: 600;
    font-size: 0.9rem;
}
.location-note {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0d0d20; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: linear-gradient(145deg, #151530, #1a1a3a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px;
}
.stars {
    color: #ffb800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    color: #ff6b3b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq { background: #0a0a1a; }
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.faq-question:hover {
    background: rgba(255,59,59,0.1);
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    color: #ff6b3b;
}
.faq-item.active .faq-question::after {
    content: '-';
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #999;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 300px;
}

/* ===== CONTACT ===== */
.contact { background: linear-gradient(135deg, #0a0a1a, #1a0a2e); }
.contact-container { max-width: 1100px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
}
.contact-icon {
    font-size: 1.8rem;
}
.contact-card strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.contact-card p a {
    color: #ff6b3b;
}
.contact-small {
    color: #666;
    font-size: 0.8rem;
    margin-top: 4px;
}
.contact-hours {
    background: rgba(255,59,59,0.1);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,59,59,0.2);
}
.contact-hours strong {
    color: #ff6b3b;
    display: block;
    margin-bottom: 10px;
}
.contact-hours p {
    color: #ccc;
    font-size: 0.9rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff3b3b;
}
.contact-form select option {
    background: #1a1a3a;
    color: #fff;
}
.form-note {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: #050510;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.footer-brand p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.footer-contact p {
    color: #888;
    font-size: 0.9rem;
}
.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-links a {
    display: block;
    color: #666;
    padding: 5px 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ff3b3b;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    color: #444;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10,10,26,0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2rem; }
    .services-grid,
    .locations-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .about-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    .section-title { font-size: 2rem; }
    .guarantee h2 { font-size: 1.5rem; }
    .about-img-placeholder {
        height: 300px;
    }
}