/* ============================================
   ASAP Towing V2 - Home Page Styles
   Complete with Hero Slider & All Sections
   ============================================ */





/* ============================================
   SERVICE AREAS SECTION - Interactive
   ============================================ */

.service-areas-section {
    position: relative;
    overflow: hidden;
}

/* Floating background elements */
.service-areas-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(113, 178, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.areas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.areas-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(113, 178, 128, 0.15);
    border: 1px solid rgba(113, 178, 128, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.areas-badge i {
    font-size: 1rem;
}

/* Coverage Stats */
.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 2rem;
}

.coverage-stat {
    text-align: center;
}

.coverage-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    font-family: var(--font-heading);
    line-height: 1;
}

.coverage-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Areas Grid Container */
.areas-grid-container {
    position: relative;
}

/* Interactive Map Side */
.areas-map-side {
    position: relative;
}

.areas-map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(113, 178, 128, 0.3);
}

.areas-map-wrapper iframe {
    display: block;
    filter: grayscale(40%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}

.areas-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

/* Map Markers Overlay */
.map-markers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Radius Indicator */
.radius-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(113, 178, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radius-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radius-info h4 i {
    color: var(--accent-green);
}

.radius-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.radius-badge {
    background: linear-gradient(135deg, var(--accent-green), #134E5E);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Areas Cards Grid */
.areas-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Individual Area Card */
.area-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-green);
    transition: height 0.3s ease;
}

.area-card:hover {
    background: rgba(113, 178, 128, 0.1);
    border-color: rgba(113, 178, 128, 0.4);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 
        -10px 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(113, 178, 128, 0.1);
}

.area-card:hover::before {
    height: 100%;
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.area-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(113, 178, 128, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-card-icon i {
    font-size: 1.3rem;
    color: var(--accent-green);
}

.area-card:hover .area-card-icon {
    background: var(--accent-green);
    transform: rotate(10deg) scale(1.1);
}

.area-card:hover .area-card-icon i {
    color: #000;
}

.area-card-title {
    flex: 1;
}

.area-card-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.area-card-title span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.area-card-response {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(113, 178, 128, 0.1);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

.area-card-response i {
    font-size: 0.75rem;
}

/* Area Card Expand Arrow */
.area-card-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-card-arrow i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.area-card:hover .area-card-arrow {
    background: var(--accent-green);
}

.area-card:hover .area-card-arrow i {
    color: #000;
    transform: rotate(45deg);
}

/* Highway Cards */
.highway-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.highway-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(19, 78, 94, 0.4), rgba(9, 48, 40, 0.4));
    border: 1px solid rgba(19, 78, 94, 0.5);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.highway-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(113, 178, 128, 0.2);
}

.highway-shield {
    display: inline-block;
    background: linear-gradient(180deg, #1a5f7a, #0d3d4d);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.highway-card span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Area Detail Modal
   ============================================ */
.area-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.area-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.area-modal {
    background: linear-gradient(135deg, #093028, #237A57);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-modal-overlay.active .area-modal {
    transform: scale(1) translateY(0);
}

.area-modal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.area-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-modal-header h3 i {
    color: var(--accent-green);
}

.area-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-modal-close:hover {
    background: #EB3349;
    transform: rotate(90deg);
}

.area-modal-body {
    padding: 30px;
}

.area-modal-map {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-modal-map iframe {
    display: block;
}

.area-modal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.area-info-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.area-info-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.area-info-item h5 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.area-info-item p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.area-modal-cta {
    margin-top: 25px;
    text-align: center;
}

/* ============================================
   Additional Home Page Styles
   ============================================ */

/* Muted Light Text */
.text-muted-light {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

/* Image Styles */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   Service Areas Responsive
   ============================================ */

@media (max-width: 1199.98px) {
    .areas-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-stats {
        gap: 40px;
    }
    
    .coverage-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .areas-map-side {
        margin-bottom: 40px;
    }
    
    .coverage-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .coverage-stat {
        flex: 0 0 45%;
    }
    
    .highway-cards {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .areas-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        padding: 20px;
    }
    
    .radius-indicator {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .area-modal-info {
        grid-template-columns: 1fr;
    }
    
    .coverage-stat {
        flex: 0 0 100%;
    }
    
    .coverage-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .area-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .area-card-response {
        margin-top: 10px;
    }
    
    .area-modal {
        border-radius: 16px;
    }
    
    .area-modal-header {
        padding: 20px;
    }
    
    .area-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .area-modal-body {
        padding: 20px;
    }
}

/* ============================================
   Reduce Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .slide-bg,
    .slide-badge,
    .slide-title,
    .slide-text,
    .slide-features,
    .slide-buttons,
    .slider-accent,
    .badge-pulse,
    .pagination-dot.active::after {
        animation: none !important;
        transition: none !important;
    }
    
    .slide.active .slide-bg {
        transform: none;
    }
    
    .slide.active .slide-badge,
    .slide.active .slide-title,
    .slide.active .slide-text,
    .slide.active .slide-features,
    .slide.active .slide-buttons {
        opacity: 1;
        transform: none;
    }
}

.divider-steam-glow {
    position: relative;
    height: 100px;         /* Height of the blur area */
    margin-top: -50px;     /* Moves it up to cover the seam */
    margin-bottom: -50px;  /* Overlaps the next section */
    width: 100%;
    z-index: 9;            /* Sits on top of backgrounds */
    pointer-events: none;  /* Allows clicking through it */
    
    /* The Magic Gradient: Whitish Core -> Greenish Mid -> Transparent Edge */
    background: radial-gradient(
        ellipse at center, 
        rgba(255, 255, 255, 0.15) 0%,   /* Whitish center (Steam/Light) */
        rgba(113, 178, 128, 0.2) 30%,   /* Your Green Accent */
        rgba(113, 178, 128, 0.05) 50%,  /* Fading Green */
        transparent 70%
    );
    
    /* This makes it look like gas/fog rather than a shape */
    filter: blur(25px);
    
    /* Optional: Blend mode makes it interact nicely with dark backgrounds */
    mix-blend-mode: screen; 
}

/*