
:root {
    --primary: #1a6db3;
    --secondary: #f8a01a;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #e9ecef;
}


.location-mention {
    color: #ff7300 !important;
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
}

.faq-section {
    background-color: var(--light);
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}



.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #155a92;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

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

.location-mention {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
}

.contact-cta {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.btn-custom {
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

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

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





.service-area-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}


.service-area-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-description p {
    margin-bottom: 20px;
    color: #555;
}

.highlight-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-area-list {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-area-list h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.city-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.city-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--secondary);
}

.city-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
}

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

.map-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #0d4d82 100%);
    border-radius: 10px;
    padding: 40px 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 50px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.map-placeholder h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-custom {
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    background: #e0910f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

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

    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}



.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f2fa 100%);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}



.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    height: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.4rem;
}

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

.service-features {
    margin: 15px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: #666;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.service-cta {
    margin-top: auto;
    text-align: center;
}

.btn-service {
    background: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
}

.btn-service:hover {
    background: #e0910f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.services-cta-section {
    background: var(--primary);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.services-cta-section p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

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



.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d4d82 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
    text-align: center;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.map-placeholder h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.map-placeholder p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-map {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: #555;
    margin-bottom: 0;
}

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

.contact-text a:hover {
    color: var(--primary);
}

.business-hours {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.business-hours h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.day {
    font-weight: 500;
    color: #555;
}

.time {
    color: var(--primary);
    font-weight: 500;
}

.contact-cta {
    background: var(--primary);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-cta p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.method-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.method-text h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.method-text a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-text a:hover {
    color: var(--secondary);
}

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

    .contact-info {
        padding: 25px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 250px;
    }
}
