/* Fiber Optic Solutions Page Styles */

/* Hero Banner */
.fiber-hero-banner {
    position: relative;
    height: 350px;
    background-image: url('../images/fiber-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fiber-hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.fiber-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 0;
}

.fiber-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
}

.fiber-hero-content h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: var(--principal);
}

.fiber-hero-content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 25px;
}

/* Intro Section */
.fiber-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.fiber-intro-content p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.fiber-intro-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fiber-intro-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.fiber-intro-image:hover img {
    transform: scale(1.05);
}

/* Solutions Guide Section */
/* Solutions Guide Section */
.solutions-guide-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.guide-content-box {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.guide-text-content {
    padding: 40px 50px;
    position: relative;
}

.guide-red-arrow {
    width: 35px;
    height: 35px;
    position: relative;
    margin-bottom: 15px;
}

.guide-red-arrow svg {
    width: 100%;
    height: 100%;
}

.guide-text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.red-underline {
    width: 100px;
    height: 4px;
    background-color: #ef3a43;
    margin-bottom: 20px;
}

.guide-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.download-link {
    margin-top: 20px;
}

.btn-download {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-download:hover {
    color: #ef3a43;
    text-decoration: none;
}

.arrow-icon {
    width: 15px;
    height: 15px;
    margin-left: 10px;
}

.guide-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.guide-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    transform: skewX(-15deg);
    z-index: 1;
}

.guide-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.guide-content-box:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background-color: #ef3a43;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .guide-image {
        height: 300px;
    }
    
    .guide-image:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .guide-text-content {
        padding: 30px;
    }
    
    .guide-text-content h2 {
        font-size: 24px;
    }
}

/* Key Solutions Section */
.key-solutions-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--principal);
    transform: translateX(-50%);
}

.solution-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
}

.solution-item a {
    text-decoration: none;
    color: var(--dark-gray);
    display: block;
}

.solution-image {
    height: 220px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-item:hover .solution-image img {
    transform: scale(1.1);
}

.solution-title {
    text-align: center;
    border-top: 4px solid var(--principal);
    margin-top: -10px;
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.solution-title h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .fiber-hero-content h1 {
        font-size: 32px;
    }
    
    .fiber-hero-content p {
        font-size: 16px;
    }
    
    .guide-header h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .solution-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .fiber-hero-banner {
        height: 300px;
    }
    
    .fiber-hero-content {
        padding: 60px 0;
    }
    
    .fiber-hero-content h1 {
        font-size: 28px;
    }
    
    .fiber-intro-section,
    .solutions-guide-section,
    .key-solutions-section {
        padding: 50px 0;
    }
    
    .fiber-intro-image {
        margin-top: 30px;
    }
    
    .solutions-guide-content {
        margin-bottom: 30px;
    }
    
    .solutions-guide-image {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .guide-header h2 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .fiber-hero-banner {
        height: 250px;
    }
    
    .fiber-hero-content {
        padding: 50px 0;
    }
    
    .fiber-hero-content h1 {
        font-size: 24px;
    }
    
    .fiber-hero-content p {
        font-size: 14px;
        margin-top: 20px;
    }
    
    .fiber-intro-content p,
    .solutions-guide-content p {
        font-size: 14px;
    }
    
    .guide-header h2 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .solution-image {
        height: 160px;
    }
    
    .solution-title h3 {
        font-size: 14px;
    }
}