/* Modern CSS - Clean, Professional Design System */

/* Additional Utilities & Components */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 32px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.btn-primary.large,
.btn-secondary.large,
.btn-outline.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: var(--bg);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Soft color spot that strengthens in one corner and fades out */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(780px 560px at 88% 12%,
            rgba(145, 33, 26, 0.18) 0%,
            rgba(248, 215, 213, 0.38) 28%,
            rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Background pattern for visual interest */
.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f3f4f6' fill-opacity='0.35'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    -webkit-mask-image: radial-gradient(780px 560px at 88% 12%, #000 35%, transparent 70%);
    mask-image: radial-gradient(780px 560px at 88% 12%, #000 35%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-badge {
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.contact-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.contact-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: white;
    color: var(--text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.footer-info a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
    z-index: 60;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg);
    z-index: 55;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.mobile-nav-content {
    padding: 24px;
}

.mobile-nav-link {
    display: block;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s ease;
}

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

.mobile-emergency {
    margin-top: 32px;
    padding: 24px;
    background: var(--primary-light);
    border-radius: var(--radius);
    text-align: center;
}

.mobile-emergency-text {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-emergency-btn {
    display: block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 20px;
    transition: all 0.2s ease;
}

.mobile-emergency-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .hero-features {
        gap: 32px;
    }

    .feature {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .services,
    .about,
    .cta {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 18px;
    }

    .container {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .services,
    .about,
    .cta {
        padding: 60px 0;
    }

    .service-card,
    .contact-card {
        padding: 24px 20px;
    }

    .hero-actions .btn-primary.large,
    .hero-actions .btn-secondary.large,
    .cta-actions .btn-primary.large,
    .cta-actions .btn-outline.large {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 20px;
    }

    .badge-text {
        font-size: 12px;
        padding: 6px 12px;
    }

    .mobile-nav {
        width: 280px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px 16px;
    }

    .contact-card {
        padding: 20px 16px;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}

/* Animation & Smooth Transitions */
@media (prefers-reduced-motion: no-preference) {

    .service-card,
    .contact-card,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-content,
    .services-grid,
    .about-content {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .services-grid {
        animation-delay: 0.2s;
    }

    .about-content {
        animation-delay: 0.4s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus,
.nav-link:focus,
.emergency-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Page-specific Styles */

/* Standard Page Header */
.page-header {
    background: var(--bg);
    padding: 120px 0 80px;
    border-bottom: 1px solid var(--border-light);
}

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

.page-header .hero-badge {
    margin-bottom: 24px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.page-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Page Hero - Legacy support for existing pages */
.page-hero {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg) 100%);
    padding: 140px 0 100px;
    position: relative;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.page-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Service Types */
.service-types {
    padding: 100px 0;
    background: var(--bg);
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-type-card {
    background: linear-gradient(135deg, var(--bg) 0%, rgba(248, 215, 213, 0.4) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-type-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-type-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.service-type-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-type-features {
    list-style: none;
    text-align: left;
}

.service-type-features li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.service-type-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Info Cards */
.info-cards {
    padding: 100px 0;
    background: var(--bg);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-card-icon {
    font-size: 32px;
}

.info-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.info-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Enhanced Mobile Responsiveness for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-hero {
        padding: 120px 0 80px;
    }

    .service-types,
    .process-section,
    .info-cards,
    .faq-section {
        padding: 80px 0;
    }

    .service-types-grid,
    .process-steps,
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .page-actions,
    .page-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-features {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .service-types,
    .process-section,
    .info-cards,
    .faq-section {
        padding: 60px 0;
    }

    .service-type-card,
    .process-step,
    .info-card,
    .faq-item {
        padding: 24px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

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

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.expertise-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.expertise-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.expertise-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.expertise-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.expertise-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-card-icon {
    font-size: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: var(--bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.industry-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.industry-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.industry-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* Enhanced Mobile Responsiveness for Brandschutz */
@media (max-width: 1024px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .expertise-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {

    .expertise-section,
    .industries-section {
        padding: 80px 0;
    }

    .expertise-stats {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {

    .expertise-section,
    .industries-section {
        padding: 60px 0;
    }

    .feature-card,
    .industry-card,
    .stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .expertise-title {
        font-size: 1.8rem;
    }
}

/* Arrival Time Calculator Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}


.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg);
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: slideInUp 0.3s ease;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-header .close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 4px;
    border-radius: var(--radius);
}

.modal-header .close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 24px;
}

.calculator-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(145, 33, 26, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.result-display {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(145, 33, 26, 0.05) 0%, rgba(248, 215, 213, 0.1) 100%);
    border: 1px solid rgba(145, 33, 26, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.result-display h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.time-display {
    margin-bottom: 16px;
}

.time-value {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    letter-spacing: -0.5px;
}

.route-info {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
}

.route-info p {
    background: var(--bg);
    padding: 8px 12px;
    border-radius: var(--radius);
    margin: 0;
    border: 1px solid var(--border-light);
    font-size: 13px;
}

.contact-prompt {
    border-top: 1px solid rgba(145, 33, 26, 0.2);
    padding-top: 16px;
    margin-top: 16px;
}

.error-display {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    color: #dc2626;
    text-align: center;
    font-weight: 500;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 16px 20px;
        flex-shrink: 0;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .time-value {
        font-size: 24px;
        padding: 10px 20px;
    }
    
    .route-map {
        height: 160px; /* Even more compact on mobile */
    }
    
    .route-map-compact {
        margin: 12px 0;
    }
    
    .contact-prompt {
        margin-top: 12px;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 15% auto;
        width: 98%;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .time-value {
        font-size: 24px;
        padding: 10px 20px;
    }
    
    .form-group input {
        padding: 14px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {

    .hero,
    .cta,
    .page-hero {
        background: white !important;
        color: black !important;
    }

    .footer {
        background: white !important;
        color: black !important;
        border-top: 1px solid #ccc;
    }
    
    .modal {
        display: none !important;
    }
}

/* GDPR Consent Modal Styles */
.consent-info {
    max-width: 500px;
}

.consent-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-notice {
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    border-left: 4px solid var(--warning);
}

.privacy-notice h4 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.privacy-notice ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-notice li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.privacy-notice a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-notice a:hover {
    text-decoration: none;
}

.consent-options {
    margin: 24px 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    user-select: none;
}

.consent-checkbox input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.consent-actions .btn-primary:disabled {
    background-color: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.consent-actions .btn-primary:disabled:hover {
    background-color: var(--border);
    transform: none;
}

/* Enhanced Calculator Form Styles */
.calculation-mode {
    margin: 20px 0;
    padding: 16px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mode-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.mode-info span {
    color: var(--text);
    font-weight: 500;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
}

.btn-link:hover {
    text-decoration: none;
    color: var(--primary-dark);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Result Display */
#calculation-source {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.8;
}

/* Consent Section Styling */
.consent-section {
    text-align: center;
    padding: 20px 0;
}

.consent-section .consent-info {
    max-width: 500px;
    margin: 0 auto;
}

.consent-section .privacy-notice {
    background-color: rgba(248, 215, 213, 0.3);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    border-left: 4px solid var(--primary);
    text-align: left;
}

/* Compact Route Map - Clean & Lean */
.route-map-compact {
    margin: 16px 0;
}

.route-map {
    width: 100%;
    height: 180px; /* Compact mobile height */
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

/* Compact button styling */
.btn-call {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.btn-compact {
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 14px;
}

/* Responsive map sizing - still compact */
@media (min-width: 768px) {
    .route-map {
        height: 220px; /* Slightly larger on tablet */
    }
}

@media (min-width: 1024px) {
    .route-map {
        height: 250px; /* Max height on desktop */
    }
    
    .btn-call {
        width: auto;
        margin: 16px auto 0;
        display: block;
    }
}

/* Mobile optimizations for consent modal */
@media (max-width: 768px) {
    .consent-actions {
        flex-direction: column;
    }
    
    .consent-actions button {
        width: 100%;
    }
    
    .privacy-notice {
        padding: 16px;
    }
    
    .consent-checkbox {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mode-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .calculation-mode {
        padding: 12px;
    }
}

/* Service Hero Sections */
.service-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-gray) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 20% 80%,
            rgba(145, 33, 26, 0.12) 0%,
            rgba(248, 215, 213, 0.25) 35%,
            rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

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

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0 40px;
    }

    .service-hero-title {
        font-size: 2.25rem;
    }

    .service-hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .service-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* SEO Landing Pages Styles */
.seo-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-gray) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.seo-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 600px at 80% 20%,
            rgba(145, 33, 26, 0.08) 0%,
            rgba(248, 215, 213, 0.20) 40%,
            rgba(255, 255, 255, 0) 75%);
    z-index: 1;
    pointer-events: none;
}

.seo-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}

.seo-hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.seo-hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.emergency-contact {
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.emergency-label {
    font-weight: 600;
    color: var(--text);
}

.emergency-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.emergency-number:hover {
    text-decoration: underline;
}

.emergency-hours {
    color: var(--text-muted);
    font-size: 14px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.benefit-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Situations Grid */
.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.situation-card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 24px;
}

.situation-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.situation-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Warning Section */
.warning-section {
    padding: 60px 0;
}

.warning-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.warning-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.warning-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.warning-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.service-hours {
    margin-top: 24px;
    text-align: center;
}

.service-hours p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .seo-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-hero-title {
        font-size: 2.5rem;
    }

    .seo-hero-description {
        font-size: 18px;
    }

    .hero-img {
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .emergency-contact {
        padding: 20px;
    }

    .emergency-number {
        font-size: 20px;
    }

    .warning-card {
        flex-direction: column;
        text-align: center;
    }

    .warning-icon {
        font-size: 64px;
    }
}

/* Security Section Styles */
.security-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

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

.security-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid;
}

.security-card.urgent {
    border-top-color: #dc3545;
}

.security-card.moderate {
    border-top-color: #ffc107;
}

.security-card.low {
    border-top-color: #28a745;
}

.security-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.security-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.security-list li {
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
}

.security-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-options {
    padding: 80px 0;
    background: var(--bg-gray);
}

/* Stats Grid */
.success-stats {
    padding: 60px 0;
    background: var(--primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: white;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Methods Grid */
.methods-section {
    padding: 80px 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.method-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.method-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.method-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Damage Info Section */
.damage-info {
    padding: 80px 0;
    background: var(--bg-gray);
}

.damage-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.damage-case {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.damage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.damage-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* District Pages Styles */
.district-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-gray) 100%);
    padding: 80px 0 60px;
    position: relative;
}

.district-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.district-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.district-hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Areas Grid */
.local-areas {
    padding: 80px 0;
}

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

.area-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.area-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.area-streets {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.area-streets li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.response-time {
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Landmarks */
.landmarks {
    padding: 60px 0;
    background: var(--bg-gray);
}

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

.landmark-item {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-size: 14px;
    color: var(--text-muted);
}

.landmark-item strong {
    color: var(--text);
}

/* Local Benefits */
.why-choose-local {
    padding: 80px 0;
}

.local-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.local-benefit {
    text-align: center;
    padding: 24px;
}

/* Local Situations */
.local-situations {
    padding: 80px 0;
    background: var(--bg-gray);
}

.situations-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.situation-item {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

.situation-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.situation-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for District Pages */
@media (max-width: 768px) {
    .district-hero-title {
        font-size: 2.25rem;
    }

    .district-hero-description {
        font-size: 18px;
    }

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

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

    .local-benefits {
        grid-template-columns: 1fr;
    }

    .situations-list {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-gray) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.pricing-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 18px;
}

/* Pricing Factors */
.price-transparency {
    padding: 80px 0;
}

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.factor-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.factor-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.factor-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.factor-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.price-range {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Rip-off Comparison */
.no-ripoff {
    padding: 80px 0;
    background: var(--bg-gray);
}

.ripoff-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.ripoff-card {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.ripoff-card.bad {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border: 2px solid #e17055;
}

.ripoff-card.good {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8a3 100%);
    border: 2px solid #00b894;
}

.ripoff-header {
    margin-bottom: 24px;
}

.ripoff-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.ripoff-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.ripoff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.ripoff-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.ripoff-card.bad .ripoff-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.ripoff-card.good .ripoff-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Price Promise */
.price-promise {
    padding: 80px 0;
}

.promise-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.promise-item {
    text-align: center;
    padding: 24px;
}

.promise-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.promise-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.promise-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Price Examples */
.price-examples {
    padding: 80px 0;
    background: var(--bg-gray);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.example-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.example-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.price-indicator {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-indicator.low {
    background: #d4edda;
    color: #155724;
}

.price-indicator.medium {
    background: #fff3cd;
    color: #856404;
}

.price-indicator.high {
    background: #f8d7da;
    color: #721c24;
}

.example-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.example-details li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    padding-left: 16px;
}

.example-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.25rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .ripoff-comparison {
        grid-template-columns: 1fr;
    }

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

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