/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1e3a8a;
    --dark-navy: #172554;
    --accent-red: #dc2626;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-navy);
}

.nav-cta {
    background: var(--accent-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ===== HERO SECTION (NO PARALLAX) ===== */
.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-top: 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.benefit-text {
    color: var(--text-gray);
}

/* ===== MAP SECTION ===== */
.city-map {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legend-marker {
    font-size: 1.5rem;
}

.legend-marker.available {
    color: #10b981;
}

.legend-marker.booked {
    color: var(--accent-red);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-title {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.service-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}



.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-gray);
}

/* ===== FORM SECTION ===== */
.form-benefits {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.benefits-list li {
    color: var(--text-dark);
    font-weight: 500;
}

.form-notice {
    color: var(--accent-red);
    font-size: 1.05rem;
}

.audit-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.form-success {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #d1fae5;
    border: 2px solid #10b981;
    border-radius: 12px;
    text-align: center;
}

.form-success h3 {
    color: #065f46;
    margin-bottom: 12px;
}

.form-success p {
    color: #047857;
}

.contact-alternative {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-alternative h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

/* ===== FAQ SECTION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* City Page Styles */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumbs a {
    color: #1e3a8a;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.hero-city {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-city h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.local-insight {
    padding: 4rem 0;
    background: white;
}

.local-insight h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.local-insight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.services-city {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-city h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

.services-city .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.results-city {
    padding: 4rem 0;
    background: white;
}

.results-city h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

.results-city > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

.testimonial-city {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

.testimonial-city blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.95rem;
}

.nearby-cities {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.nearby-cities h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.nearby-cities p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.nearby-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.nearby-links a {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.nearby-links a:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

@media (max-width: 768px) {
    .hero-city h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .local-insight h2,
    .services-city h2,
    .results-city h2 {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* City Page Button Fixes */
.hero-city .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-city .cta-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.form-success h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

.form-success p {
    color: #047857;
    font-size: 1.1rem;
}

.contact-alternative {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-alternative h4 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-alternative p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Mobile Icon Centering Fix */
@media (max-width: 768px) {
    .service-card,
    .feature-card {
        text-align: center;
    }
    
    .service-icon,
    .feature-icon {
        margin: 0 auto 1rem auto;
        display: block;
        width: fit-content;
    }
    
    .service-title,
    .feature-title {
        text-align: center;
    }
    
    .service-text,
    .feature-text {
        text-align: center;
    }
}

/* Center content blocks and add paragraph spacing */
.content-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Center service card icons on desktop */
@media (min-width: 769px) {
    .service-card .service-icon {
        text-align: center;
        display: block;
        margin: 0 auto 1rem auto;
    }
}

/* Center form submit button on desktop */
@media (min-width: 769px) {
    .form-group button[type="submit"] {
        display: block;
        margin: 0 auto;
    }
}

/* Override: Center service icons on desktop */
@media (min-width: 769px) {
    .service-icon {
        text-align: center !important;
        display: block !important;
        width: 100%;
    }
}

/* Force center service icons using flexbox */
@media (min-width: 769px) {
    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* Fix mobile menu toggle */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu .nav-link,
    .nav-menu .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        margin: 0.25rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #1e3a8a;
        cursor: pointer;
        padding: 0.5rem;
    }
}
