/* Wide Angle Block Styles */

.wide-angle-block {
    background: #ffffff;
    position: relative;
    padding: 80px 0;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.wide-angle-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Content */
.wide-angle-block .text-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.wide-angle-block .red-badge {
    background-color: #ff4444;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wide-angle-block .main-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #000000;
}

.wide-angle-block .angle-description {
    max-width: 800px;
    margin: 0 auto;
}

.wide-angle-block .angle-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 15px;
}

.wide-angle-block .angle-description strong {
    font-weight: 600;
}

/* Gallery Section */
.wide-angle-block .gallery-section {
    text-align: center;
}

.wide-angle-block .gallery-container {
    margin-bottom: 10px;
    overflow: hidden;
}

.wide-angle-block .gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.wide-angle-block .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.wide-angle-block .gallery-image.active {
    opacity: 1;
}

/* Angle Slider */
.wide-angle-block .angle-slider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    border-radius: 20px;
    padding: 2px;
    margin-top: 10px;
    position: relative;
}

.wide-angle-block .angle-option {
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
    position: relative;
    z-index: 2;
    border-radius: 20px;
}

.wide-angle-block .angle-option:hover {
    color: #444;
}

.wide-angle-block .angle-option.active {
    background: white;
    color: #333;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wide-angle-block .main-heading {
        font-size: 28px;
    }
    
    .wide-angle-block .gallery-main {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .wide-angle-block {
        padding: 60px 0;
    }
    
    .wide-angle-block .main-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .wide-angle-block .text-content {
        margin-bottom: 25px;
    }
    
    .wide-angle-block .gallery-main {
        height: 350px;
    }
    
    .wide-angle-block .gallery-container {
        margin-bottom: 5px;
    }
    
    .wide-angle-block .angle-slider {
        margin-top: 5px;
        padding: 3px;
    }
    
    .wide-angle-block .angle-option {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .wide-angle-block .main-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .wide-angle-block .text-content {
        margin-bottom: 20px;
    }
    
    .wide-angle-block .angle-description p {
        font-size: 14px;
    }
    
    .wide-angle-block .gallery-main {
        height: 180px;
    }
    
    .wide-angle-block .gallery-container {
        margin-bottom: 5px;
    }
    
    .wide-angle-block .angle-slider {
        margin-top: 5px;
        padding: 3px;
    }
    
    .wide-angle-block .angle-option {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 60px;
    }
}
