:root {
    --primary: #232429;
    --accent: #faa918;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --text: #5a6a7a;
}





.section-title {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}



.section-subtitle {
    color: var(--text);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-left {
    padding: 40px;
    background-color: white;
}

.faq-right {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
    color: white;
    height: 100%;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(250, 169, 24, 0.1);
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23faa918'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: white;
    color: var(--text);
    line-height: 1.6;
}

.city-highlight {
    color: var(--accent);
    font-weight: 600;
}

.service-highlight {
    background-color: rgba(250, 169, 24, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #e59400 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-box h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .faq-right {
        border-radius: 0 0 12px 12px;
    }
}



 
        
      
        
.section-title {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}


.section-subtitle {
    color: var(--text);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.service-area-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.areas-container {
    padding: 40px;
    background-color: white;
    height: 100%;
}

.map-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pulse 2s infinite;
}

.map-pin:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

@keyframes pulse {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.1); }
    100% { transform: rotate(-45deg) scale(1); }
}

.pin-1 { top: 30%; left: 45%; }
.pin-2 { top: 35%; left: 50%; }
.pin-3 { top: 40%; left: 40%; }
.pin-4 { top: 50%; left: 55%; }
.pin-5 { top: 55%; left: 45%; }

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.area-item {
    padding: 12px 15px;
    background-color: rgba(250, 169, 24, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s;
}

.area-item:hover {
    background-color: rgba(250, 169, 24, 0.2);
    transform: translateY(-2px);
}

.area-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.area-description {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.service-highlight {
    background-color: rgba(250, 169, 24, 0.1);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #e59400 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-box h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        border-radius: 12px 12px 0 0;
    }
    
    .areas-container {
        border-radius: 0 0 12px 12px;
    }
}




.section-title {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}


.section-subtitle {
    color: var(--text);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.seasonal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent);
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.seasonal-header {
    padding: 25px 25px 15px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
    color: white;
}

.seasonal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(250, 169, 24, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.seasonal-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.seasonal-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.seasonal-body {
    padding: 25px;
}

.service-item {
    margin-bottom: 25px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-name i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.service-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text);
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #e59400 100%);
    padding: 50px 0;
    margin-top: 50px;
    border-radius: 12px;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2rem;
}

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

.btn-dark-custom:hover {
    background-color: #1a1d23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.seasonal-note {
    background-color: rgba(250, 169, 24, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--accent);
}

.seasonal-note h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .service-item {
        margin-bottom: 30px;
    }
}



.contact-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
    color: white;
    padding: 50px;
    height: 100%;
}

.company-logo {
    margin-bottom: 30px;
}

.company-name {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: white;
}

.company-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--accent);
    font-weight: 600;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(250, 169, 24, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-text h5 {
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.contact-text p {
    margin-bottom: 0;
    opacity: 0.9;
}

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

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

.business-hours {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.hours-table {
    width: 100%;
}

.hours-table tr td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table .day {
    font-weight: 600;
    width: 40%;
}

.hours-table .time {
    opacity: 0.9;
}

.contact-description {
    padding: 50px;
    background-color: white;
    height: 100%;
}

.description-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.description-content {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-highlight {
    background-color: rgba(250, 169, 24, 0.1);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-highlight h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #e59400 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-box h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.emergency-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .contact-info {
        border-radius: 12px 12px 0 0;
    }

    .contact-description {
        border-radius: 0 0 12px 12px;
    }
}
