.service-areas {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-area-header {
    background: #fd7e14;
    color: white;
    padding: 30px;
    text-align: center;
}

.service-area-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.service-area-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-area-content {
    display: flex;
    flex-wrap: wrap;
}

.cities-section {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #f5f5f5;
}

.cities-section h3 {
    color: #fd7e14;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 10px;
}

.cities-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.city-column {
    flex: 1;
    min-width: 200px;
}

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

.city-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
}

.city-list li:before {
    content: "•";
    color: #fd7e14;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

.description-section {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
}

.description-section h3 {
    color: #fd7e14;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.description-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.highlight {
    background: rgba(42, 170, 224, 0.1);
    border-left: 4px solid #fd7e14;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }

    .city-column {
        min-width: 100%;
    }
}




        
.services-additional-container {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px 30px;
}

.services-additional-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-additional-header h2 {
    color: #fd7e14;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-additional-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.services-additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-additional-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-additional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(42, 170, 224, 0.15);
    border-color: #fd7e14;
}

.service-additional-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 170, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-additional-card:hover .service-icon {
    background: #fd7e14;
    transform: scale(1.1);
}

.service-additional-icon i {
    font-size: 30px;
    color: #fd7e14;
    transition: all 0.3s ease;
}

.service-additional-card:hover .service-additional-icon i {
    color: white;
}

.service-additional-title {
    color: #fd7e14;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-additional-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-additional-features {
    margin-bottom: 20px;
}

.service-additional-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-additional-features li i {
    color: #fd7e14;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

.service-additional-cta {
    margin-top: auto;
}

.service-additional-cta a {
    display: inline-block;
    background: #fd7e14;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-additional-cta a:hover {
    background: #fd7e14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 170, 224, 0.3);
}

@media (max-width: 992px) {
    .services-additional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-additional-container {
        padding: 25px 15px;
    }

    .services-additional-header h2 {
        font-size: 2rem;
    }

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



.process-container {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px 30px;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    color: #fd7e14;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
}

/* Connector line for desktop */
.process-steps::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #fd7e14;
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(42, 170, 224, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fd7e14;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 170, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: #fd7e14;
    transform: scale(1.1);
}

.step-icon i {
    font-size: 30px;
    color: #fd7e14;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    color: white;
}

.step-title {
    color: #fd7e14;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: #555;
    margin-bottom: 15px;
}

.step-features {
    text-align: left;
    margin-top: 15px;
}

.step-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.step-features li i {
    color: #fd7e14;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fd7e14 0%, #fd7e14 100%);
    border-radius: 10px;
    color: white;
}

.process-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.process-cta p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #fd7e14;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }

    .process-step {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .process-container {
        padding: 25px 15px;
    }

    .process-header h2 {
        font-size: 2rem;
    }

    .process-step {
        padding: 20px 15px;
    }
}


.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, #fd7e14 0%, #fd7e14 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    padding: 40px 30px;
    background: #f5f7fa;
}

.contact-info h3 {
    color: #fd7e14;
    margin-bottom: 25px;
    font-size: 1.7rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #fd7e14;
    display: flex;
    align-items: center;
}

.contact-info h3 i {
    margin-right: 12px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 170, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon i {
    color: #fd7e14;
    font-size: 1.2rem;
}

.info-details {
    flex: 1;
}

.info-details h4 {
    color: #fd7e14;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-details p {
    color: #555;
    margin-bottom: 3px;
}

.info-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #fd7e14;
}

.business-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #d1d9e6;
}

.business-hours h4 {
    color: #fd7e14;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.day {
    color: #555;
}

.time {
    color: #fd7e14;
    font-weight: 500;
}

.map-section {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.map-container {
    height: 100%;
    min-height: 450px;
    background: #eee;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23f0f0f0" width="100" height="100"/><path fill="%23ddd" d="M0 0L100 100M100 0L0 100"/></svg>');
    background-size: 20px 20px;
}

.map-placeholder i {
    font-size: 3rem;
    color: #fd7e14;
    margin-bottom: 15px;
}

.map-placeholder h3 {
    color: #fd7e14;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: #555;
    text-align: center;
    max-width: 300px;
    margin-bottom: 20px;
}

.map-button {
    display: inline-block;
    background: #fd7e14;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #fd7e14;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .map-container {
        min-height: 350px;
    }
}
