/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2E3A4A;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0F1B2D;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 3vw, 22px);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #E63946;
    color: #FFFFFF;
    border-color: #E63946;
}

.btn-primary:hover {
    background-color: #D62828;
    border-color: #D62828;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #0F1B2D;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #1B3A6F;
    border-color: #1B3A6F;
}

.btn-outline:hover {
    background-color: #1B3A6F;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #0F1B2D;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E63946;
}

.phone-link {
    text-decoration: none;
    color: #0F1B2D;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #E63946;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #0F1B2D;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.4) 0%, rgba(15, 27, 45, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Review Strip */
.review-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.stars-image {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.review-text {
    font-size: 16px;
    color: #2E3A4A;
    margin: 0;
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-choose-text h2 {
    margin-bottom: 32px;
}

.why-choose-text p {
    margin-bottom: 24px;
    color: #2E3A4A;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 24px 24px 8px;
    margin: 0;
}

.service-micro-label {
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #E63946;
    margin: 0 0 16px;
}

.service-card p:last-of-type {
    padding: 0 24px 24px;
    margin: 0;
    color: #2E3A4A;
}

.service-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-link {
    color: #0066CC;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.service-link:hover {
    color: #E63946;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-4px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.projects-cta {
    text-align: center;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.review-card {
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0F1B2D;
    margin-bottom: 8px;
}

.review-role {
    font-size: 14px;
    color: #2E3A4A;
    margin-bottom: 24px;
    font-weight: 500;
}

.review-content {
    font-size: 16px;
    line-height: 1.7;
    color: #2E3A4A;
    margin-bottom: 24px;
    font-style: italic;
}

.review-stars {
    color: #F4B400;
    font-size: 18px;
}

.reviews-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
    padding: 64px 0 32px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 80px;
    width: auto;
}

.service-area h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0F1B2D;
    margin-bottom: 16px;
}

.service-area-text {
    font-size: 14px;
    color: #2E3A4A;
    margin-top: 16px;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Floating Help Button */
.floating-help {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.help-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #E63946;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    background-color: #D62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Mobile Menu Styles */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero,
    .about-hero,
    .projects-hero,
    .contact-hero,
    .service-hero {
        padding: 12rem 0 25rem;
    }
    
    .hero-buttons,
    .about-hero-buttons,
    .projects-hero-buttons,
    .contact-hero-buttons,
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-links {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-content: center;
        text-align: center;
    }
    
    .review-content {
        flex-direction: row;
        text-align: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .floating-help {
        bottom: 24px;
        right: 24px;
    }
    
    .help-button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 10rem 0 25rem;
    }
    
    .about-hero,
    .projects-hero,
    .contact-hero,
    .service-hero {
        padding: 10rem 0 25rem;
    }
    
    .why-choose,
    .services,
    .projects,
    .reviews {
        padding: 64px 0;
    }
    
    .review-card {
        padding: 32px 24px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .animate-in {
        animation: none;
    }
}

/* Focus styles */
.btn:focus,
.nav-link:focus,
.phone-link:focus,
.service-link:focus,
.help-button:focus {
    outline: 2px solid #E63946;
    outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-review {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.featured-review-content {
    max-width: 800px;
    margin: 0 auto;
}

.featured-review-stars {
    margin-bottom: 32px;
}

.featured-review-text {
    font-size: 24px;
    font-style: italic;
    color: #2E3A4A;
    margin-bottom: 24px;
    line-height: 1.6;
}

.featured-review-author {
    font-size: 18px;
    color: #0F1B2D;
    font-weight: 600;
    font-style: normal;
}

.all-reviews {
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.reviews-cta {
    text-align: center;
}


/* Projects Page Styles */
.projects-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.projects-hero-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.projects-hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-gallery {
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
    padding: 100px 0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }
    
    
    .featured-review {
        padding: 60px 0;
    }
    
    .featured-review-text {
        font-size: 20px;
    }
    
    .all-reviews {
        padding: 80px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section {
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
    padding: 100px 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    text-align: center;
}

.phone-display {
    margin: 40px 0;
}

.phone-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: #E63946;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #D62828;
    transform: scale(1.05);
}

.contact-description {
    font-size: 18px;
    color: #2E3A4A;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    color: #0F1B2D;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: #2E3A4A;
    margin: 0;
}

.contact-item a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* Responsive Design for Projects Page */
@media (max-width: 768px) {
    .projects-hero {
        min-height: 60vh;
    }
    
    
    .projects-gallery {
        padding: 80px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-content {
    background: linear-gradient(135deg, #F3F8F6 0%, #EEF6F2 100%);
    padding: 100px 0;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-description h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: #0F1B2D;
    margin-bottom: 24px;
}

.service-description h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: #0F1B2D;
    margin: 32px 0 16px;
    font-family: 'Inter', sans-serif;
}

.service-description p {
    font-size: 18px;
    color: #2E3A4A;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-description ul {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.service-description li {
    font-size: 16px;
    color: #2E3A4A;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-description strong {
    color: #0F1B2D;
    font-weight: 600;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
    }
    
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .phone-number {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    .contact-details {
        gap: 24px;
    }
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
    }
    
    
    .service-content {
        padding: 80px 0;
    }
    
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .service-image img {
        height: 300px;
    }
}

/* Local Information Grid */
.local-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.local-info-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.local-info-card:hover {
    transform: translateY(-4px);
}

.local-info-card h3 {
    font-size: 20px;
    color: #0F1B2D;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.local-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.local-info-card li {
    font-size: 16px;
    color: #2E3A4A;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.local-info-card li:before {
    content: "•";
    color: #E63946;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.local-info-card strong {
    color: #0F1B2D;
    font-weight: 600;
}

/* Responsive Design for Local Info */
@media (max-width: 768px) {
    .local-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .local-info-card {
        padding: 24px;
    }
}

/* Service Areas Page Styles */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.service-area-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-area-image {
    position: relative;
    overflow: hidden;
}

.service-area-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-area-card:hover .service-area-image img {
    transform: scale(1.05);
}

.service-area-content {
    padding: 32px;
}

.service-area-content h3 {
    font-size: 24px;
    color: #0F1B2D;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.service-area-content p {
    font-size: 16px;
    color: #2E3A4A;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-area-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-area-content li {
    font-size: 14px;
    color: #2E3A4A;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-area-content li:before {
    content: "•";
    color: #E63946;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.county-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.county-card:hover {
    transform: translateY(-4px);
}

.county-card h3 {
    font-size: 20px;
    color: #0F1B2D;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.county-card p {
    font-size: 16px;
    color: #2E3A4A;
    margin-bottom: 20px;
    line-height: 1.6;
}

.county-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.county-card li {
    font-size: 14px;
    color: #2E3A4A;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.county-card li:before {
    content: "•";
    color: #E63946;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Service Areas */
@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-area-content {
        padding: 24px;
    }
    
    .counties-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .county-card {
        padding: 24px;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-help {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-background {
        background: #F3F8F6;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-title,
    .hero-subtitle {
        color: #0F1B2D;
    }
}
