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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #e8e8e8;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* ============ HEADER & NAV ============ */
header {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-container img.main-logo {
    max-height: 70px;
    width: auto;
}

.logo-container img.ase-badge {
    max-height: 60px;
    width: auto;
    opacity: 0.95;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ff0000;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #ff0000;
}

nav a.active::after {
    width: 100%;
}

.cta-button {
    background-color: #ff0000;
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: #ff0000;
}

.hero .tagline {
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.credential-item {
    font-size: 0.95rem;
    color: #e8e8e8;
    font-weight: 600;
}

.credential-item::before {
    content: "✓ ";
    color: #ff0000;
    font-weight: 700;
}

/* ============ TWO-COLUMN SECTION ============ */
.two-column {
    background-color: #0a0a0a;
    padding: 5rem 2rem;
}

.two-column-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.two-column-text p {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.two-column-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.two-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============ ABOUT SECTION ============ */
.about {
    background-color: #111111;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.85rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-certification {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-certification img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.about-certification h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.about-certification p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* ============ SERVICE AREA SECTION ============ */
.service-area {
    background-color: #0a0a0a;
    padding: 4rem 2rem;
}

.service-area-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-area-subtitle {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
}

.coverage-box {
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.coverage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.area-item {
    background: #1a1a1a;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #e8e8e8;
    border: 1px solid #2a2a2a;
}

.area-item::before {
    content: "📍 ";
    color: #ff0000;
}

/* ============ SERVICES SECTION ============ */
.services {
    background-color: #111111;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #0a0a0a;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ff0000;
}

.service-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.7;
}

/* ============ PAYMENT OPTIONS SECTION ============ */
.payment-options {
    background-color: #0a0a0a;
    padding: 4rem 2rem;
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.payment-options h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-feature {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.payment-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.8rem;
}

.payment-feature p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-methods {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-methods h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.payment-methods-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #e8e8e8;
}

.payment-methods-list span {
    font-weight: 600;
}

/* ============ FAQ SECTION ============ */
.faq {
    background-color: #111111;
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff0000;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============ CONTACT FORM SECTION ============ */
.contact-form {
    background-color: #0a0a0a;
    padding: 5rem 2rem;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.contact-form-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e8e8e8;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e8e8e8;
    padding: 0.9rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.submit-btn {
    background-color: #ff0000;
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.form-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
    background-color: #111111;
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 1.05rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(255, 0, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
}

.stars {
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #e8e8e8;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #888;
}

.yelp-rating {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.yelp-rating h3 {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.yelp-rating p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 2px solid #ff0000;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phone-large {
    display: block;
    font-size: 2.5rem;
    color: #ff0000;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.phone-large:hover {
    color: #cc0000;
}

.cta-button-large {
    background-color: #ff0000;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-large:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* ============ FOOTER ============ */
footer {
    background-color: #0a0a0a;
    border-top: 1px solid #222;
    padding: 3rem 2rem 2rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-section p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .header-container {
        grid-template-columns: auto 1fr;
    }
    
    .menu-toggle {
        display: flex;
        justify-self: end;
    }
    
    nav {
        grid-column: 1 / -1;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 2px solid #ff0000;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .two-column-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .logo-container img.main-logo {
        max-height: 50px;
    }
    
    .logo-container img.ase-badge {
        max-height: 45px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .credentials {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}