:root {
    --primary: #1A365D;
    --primary-dark: #0F2342;
    --secondary: #F59E0B;
    --dark: #1E293B;
    --light: #F8FAFC;
    --text: #334155;
    --gray: #64748B;
    --alert-red: #DC2626;
    --info-blue: #0284C7;
    --success-green: #059669;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

.top-bar {
    background: var(--alert-red);
    color: white;
    text-align: center;
    padding: 0.5rem 5%;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar a {
    color: var(--secondary);
    text-decoration: underline;
    margin-left: 0.5rem;
}

.disclaimer-banner {
    background: #FFFBEB;
    border-bottom: 1px solid #FDE68A;
    color: #92400E;
    text-align: center;
    padding: 0.6rem 5%;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-banner {
    background: #F0FDF4;
    border-bottom: 1px solid #BBF7D0;
    color: #166534;
    text-align: center;
    padding: 0.6rem 5%;
    font-size: 0.85rem;
    font-weight: 700;
}

nav {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container h2 {
    color: var(--primary);
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary);
}

.cta-btn {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    display: inline-block;
}

.cta-btn:hover {
    background: #D97706;
    color: white !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.25rem;
}

.psa-badge {
    background: var(--info-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    margin: 4rem 0 1.5rem 0;
    color: var(--primary);
    font-size: 2rem;
}

.sub-section-title {
    text-align: center;
    color: var(--gray);
    font-size: 1.5rem;
    margin-top: 3rem;
}

.home-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-grid-sub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.home-card {
    background: white;
    color: var(--text);
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
    border-bottom: 4px solid var(--primary);
    text-decoration: none;
}

.home-card.featured-card {
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-bottom: 6px solid var(--primary);
}

.home-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--secondary);
}

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

.service-header h1, .service-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

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

.service-details ul {
    list-style-type: none;
    margin-top: 1rem;
}

.service-details li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.service-details li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Trust / Why Choose Us */
.trust-section {
    padding: 5rem 5%;
    background: white;
}

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

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    background: var(--light);
    border: 1px solid #E2E8F0;
}

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

.trust-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.trust-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 5%;
    background: var(--light);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--secondary);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-location {
    color: var(--gray);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 5%;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* SEO Cities Section */
.seo-cities-section {
    background: #EDF2F7;
    padding: 3rem 5%;
    border-top: 1px solid #E2E8F0;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 1.5rem auto 0 auto;
}

.city-tag {
    background: white;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    text-decoration: none;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

a.city-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: var(--secondary);
}

/* Service Areas List */
.areas-list-section {
    padding: 4rem 5%;
    background: var(--light);
}

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

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s;
    border-left: 3px solid var(--primary);
}

.area-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--secondary);
}

.area-card h3 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.area-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 5%;
    font-size: 0.85rem;
    color: var(--gray);
    background: #F1F5F9;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.4rem;
}

/* Page hero for subpages */
.page-hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(26,54,93,0.95) 0%, rgba(15,35,66,0.98) 100%);
    color: white;
    padding: 5rem 5% 4rem;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero h1 span {
    color: var(--secondary);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #E2E8F0;
}

/* Content sections for subpages */
.content-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-list-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.services-list-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-list-box ul {
    list-style: none;
}

.services-list-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-list-box li:last-child {
    border-bottom: none;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: var(--secondary);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 5%;
}

.cta-banner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #CBD5E1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner .cta-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 5% 2rem;
}

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

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    color: #CBD5E1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

/* Button */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #D97706;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .hamburger {
        display: block;
    }

    .service-content,
    .content-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .home-grid-main {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hotline-link {
        display: block;
        margin: 0.5rem 0;
    }
}
