/* Coverage Area Section Styles */
.coverage-area-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e3c72 25%, #2a5298 50%, #1e3c72 75%, #0f1419 100%);
    overflow: hidden;
    min-height: auto;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Background Elements */
.coverage-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%);
    background-size: 60px 60px, 40px 40px, 100px 100px;
    animation: patternFloat 25s ease-in-out infinite;
    z-index: 1;
}

.coverage-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(30, 60, 114, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Container and Layout */
.coverage-area-section .container {
    position: relative;
    z-index: 3;
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.coverage-area-section .row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    min-height: 600px;
    padding: 0 40px !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Column Structure */
.coverage-area-section .col-lg-5 {
    flex: 0 0 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.coverage-area-section .col-lg-7 {
    flex: 0 0 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 40px 0 !important;
}

/* Image Section */
.coverage-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.coverage-image-wrapper:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 53, 0.3),
        0 0 50px rgba(255, 107, 53, 0.2);
}

.coverage-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.coverage-image-wrapper:hover .coverage-hero-image {
    transform: scale(1.05);
}

/* Content Section */
.coverage-content-left,
.coverage-content-right {
    color: white;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.coverage-content-left {
    margin-bottom: 5px;
    padding: 20px 0;
    text-align: center;
}

.coverage-content-right {
    flex: 1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage-header {
    margin-bottom: 40px;
}

.coverage-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 20px;
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
}

.coverage-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    position: relative;
}

/* Coverage Details */
.coverage-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coverage-info {
    flex: 1;
    margin-bottom: 50px;
    padding: 20px 0;
}

.coverage-location-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.coverage-location-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.coverage-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    padding: 0 10px;
}

.coverage-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.coverage-description span[itemprop="areaServed"] {
    color: #ffffff;
    font-weight: 500;
}

/* CTA Button */
.coverage-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 35px rgba(255, 107, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.coverage-cta-btn:hover::before {
    left: 100%;
}

.coverage-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 107, 53, 0.5),
        0 0 30px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #ff8c42 0%, #ffab42 50%, #ff8c42 100%);
}

.btn-arrow-icon {
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.coverage-cta-btn:hover .btn-arrow-icon {
    transform: translateX(5px);
}

/* Highlights Section */
.coverage-highlights {
    margin-top: 0;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: fit-content;
    width: 100%;
    margin: 0 auto;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #1e3c72, #ff6b35);
    background-size: 200% 100%;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.highlight-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: -10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.highlight-badge {
    font-size: 32px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.highlight-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.highlight-description strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Coverage Features List */
.coverage-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.coverage-features li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    padding: 0;
    position: relative;
    transition: all 0.4s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.coverage-features li:hover {
    color: #ff8c42;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .coverage-area-section .row {
        gap: 30px;
        padding: 0 30px;
    }
    
    .coverage-content-left {
        padding: 40px 30px;
    }
    
    .coverage-title {
        font-size: 42px;
    }
    
    .coverage-location-title {
        font-size: 24px;
    }
    
    .highlight-card {
        padding: 35px;
    }
}

@media (max-width: 991px) {
    .coverage-area-section {
        padding: 80px 0;
    }
    
    .coverage-area-section .row {
        flex-direction: column !important;
        gap: 30px;
        min-height: auto;
        padding: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .coverage-area-section .col-lg-5,
    .coverage-area-section .col-lg-7 {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .coverage-area-section .col-lg-5 {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .coverage-area-section .col-lg-7 {
        order: 2;
        gap: 20px;
        padding: 20px 0;
    }
    
    .coverage-content-left {
        padding: 40px 0;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-content-right {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .coverage-image-wrapper {
        margin-bottom: 20px;
        max-width: 500px;
    }
    
    .coverage-image-wrapper:hover {
        transform: translateY(-5px);
    }
    
    .coverage-title {
        font-size: 36px;
        text-align: center;
    }
    
    .coverage-location-title {
        font-size: 22px;
        text-align: center;
    }
    
    .coverage-description {
        text-align: center;
        font-size: 16px;
    }
    
    .coverage-cta-btn {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .highlight-card {
        padding: 30px;
        margin: 0 10px;
    }
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 991px) {
    .coverage-area-section .col-lg-7 {
        padding: 40px 60px !important;
    }
}

@media (max-width: 767px) {
    .coverage-area-section {
        padding: 60px 0;
    }
    
    .coverage-area-section .row {
        padding: 0 15px !important;
        gap: 20px;
        margin: 0 !important;
    }
    
    .coverage-content-left {
        padding: 30px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .coverage-content-right {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .coverage-title {
        font-size: 28px;
    }
    
    .coverage-location-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .coverage-description {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .coverage-hero-image {
        height: 400px;
    }
    
    .highlight-title {
        font-size: 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .highlight-description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .coverage-features {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .coverage-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .highlight-card {
        padding: 25px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .coverage-area-section {
        padding: 40px 0;
    }
    
    .coverage-area-section .row {
        padding: 0 10px !important;
        gap: 15px;
        margin: 0 !important;
    }
    
    .coverage-content-left {
        padding: 1px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-content-right {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .coverage-title {
        font-size: 24px;
        line-height: 1;
    }
    
    .coverage-location-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .coverage-description {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .coverage-hero-image {
        height: 300px;
    }
    
    .coverage-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .highlight-card {
        padding: 20px;
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }
    
    .highlight-title {
        font-size: 18px;
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .highlight-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .coverage-features {
        gap: 8px;
    }
    
    .coverage-features li {
        font-size: 14px;
    }
    
    .coverage-subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .coverage-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .coverage-area-section {
        background: white !important;
        color: black !important;
        padding: 20px 0;
    }
    
    .coverage-bg-pattern,
    .coverage-bg-gradient {
        display: none;
    }
    
    .coverage-title,
    .coverage-location-title,
    .coverage-description,
    .highlight-title,
    .highlight-description {
        color: black !important;
    }
    
    .coverage-cta-btn {
        background: #333 !important;
        color: white !important;
    }
    
    .highlight-card {
        border: 1px solid #ddd !important;
        background: #f9f9f9 !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .coverage-image-wrapper,
    .coverage-cta-btn,
    .highlight-card,
    .coverage-features li,
    .patternFloat,
    .subtitleGlow,
    .borderGlow,
    .bounce {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus States for Accessibility */
.coverage-cta-btn:focus {
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

.coverage-area-section *:focus {
    outline-color: #ff6b35;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .coverage-area-section {
        background: #000;
    }
    
    .coverage-title,
    .coverage-location-title,
    .coverage-description {
        color: #fff !important;
    }
    
    .highlight-card {
        border: 2px solid #fff;
        background: rgba(255, 255, 255, 0.1);
    }
}
