
:root {
    --primary-blue: #0051a6;
    --secondary-orange: #f48b19;
    --light-blue: #eaf6ff;
    --dark-text: #40526b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #f9fdff 60%, #f5fcff 100%);
}

.section-title {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary-orange);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.faq-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(20, 70, 160, 0.12);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eaeff5;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fbff;
}

.faq-question h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.faq-question .city {
    color: var(--secondary-orange);
    font-weight: 500;
}

.faq-icon {
    color: var(--secondary-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8fbff;
}

.faq-answer p {
    margin: 0;
    padding: 20px 0;
    color: var(--dark-text);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
}

.contact-cta h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

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





.service-area-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(20, 70, 160, 0.12);
    overflow: hidden;
    height: 100%;
}

.service-area-header {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.service-area-header h3 {
    font-weight: 700;
    margin: 0;
}

.service-area-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.service-area-content {
    padding: 30px;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8fbff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-blue);
}

.location-item:hover {
    background: #eaf3ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 70, 160, 0.1);
}

.location-item i {
    color: var(--secondary-orange);
    margin-right: 12px;
    font-size: 1.1rem;
}

.location-item span {
    font-weight: 500;
    color: var(--dark-text);
}

.highlight-location {
    background: linear-gradient(135deg, #eaf6ff 10%, #f0f9ff 100%);
    border-left: 3px solid var(--secondary-orange);
}

.highlight-location span {
    font-weight: 600;
    color: var(--primary-blue);
}

.service-description {
    padding: 30px;
}

.service-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-point-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-point-icon i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.service-point-content h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-point-content p {
    margin: 0;
    line-height: 1.6;
}

.coverage-map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(20, 70, 160, 0.15);
}

.coverage-map img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary-custom {
    background: var(--secondary-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary-custom:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .service-area-section {
        padding: 60px 0;
    }

    .location-list {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 767px) {
    .location-list {
        grid-template-columns: repeat(2, 1fr);
    }
}






.services-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #f9fdff 60%, #f5fcff 100%);
}

.section-title {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.section-title span {
    color: var(--secondary-orange);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    background: white;
    margin: 0 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(20, 70, 160, 0.1);
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 70, 160, 0.2);
}

.nav-tabs .nav-link i {
    margin-right: 10px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(20, 70, 160, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(20, 70, 160, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

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

.service-card h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 5px 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li i {
    color: var(--secondary-orange);
    margin-right: 8px;
    font-size: 0.9rem;
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.seasonal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card-container {
    position: relative;
}

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .nav-tabs .nav-link {
        width: 100%;
        margin: 5px 0;
    }
}




.contact-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #f9fdff 60%, #f5fcff 100%);
}

.section-title {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.section-title span {
    color: var(--secondary-orange);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(20, 70, 160, 0.12);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 70, 160, 0.18);
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
    color: white;
    padding: 30px;
    text-align: center;
}

.contact-header h3 {
    font-weight: 700;
    margin: 0;
}

.contact-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.contact-content {
    padding: 40px 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #eaf3ff;
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-blue) 10%, var(--secondary-orange) 150%);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: white;
}

.contact-details h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-orange);
}

.business-hours {
    margin-top: 30px;
    padding: 25px;
    background: #f8fbff;
    border-radius: 12px;
}

.business-hours h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

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

.hours-list .time {
    font-weight: 600;
    color: var(--primary-blue);
}

.highlight-day {
    background: #eaf6ff;
    margin: 0 -15px;
    padding: 10px 15px;
    border-radius: 8px;
}

.service-areas {
    margin-top: 40px;
}

.service-areas h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--secondary-orange);
    color: white;
    transform: translateY(-3px);
}

.call-to-action {
    text-align: center;
    margin-top: 40px;
}

.btn-contact {
    background: var(--secondary-orange);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 139, 25, 0.3);
}

.btn-contact:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 81, 166, 0.3);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .areas-list {
        justify-content: flex-start;
    }
}




