/* ========================================
   PHARMACEUTICALS PAGE STYLES
   ======================================== */

/* Banner */
.pharma-banner {
    height: 350px;
    margin-top: 136px;
    position: relative;
    overflow: hidden;
}

.pharma-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Introduction Section */
.pharma-intro {
    padding: 60px 5%;
    background: #fff;
}

.pharma-intro-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pharma-intro-text {
    flex: 1;
    min-width: 280px;
}

.pharma-intro-text small {
    color: #FBA301;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.pharma-intro-text h2 {
    font-size: 32px;
    color: #0b0c41;
    margin: 12px 0 20px;
    line-height: 1.3;
}

.pharma-intro-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.pharma-intro-image {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pharma-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #0b0c41;
    transition: transform 0.3s ease;
}

.pharma-intro-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.pharma-features {
    padding: 60px 5%;
    background: #f8f9fa;
}

.pharma-features .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pharma-features .section-header h2 {
    color: #0b0c41;
    font-size: 32px;
    margin-bottom: 12px;
}

.pharma-features .section-header p {
    color: #555;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #0b0c41;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon i {
    font-size: 24px;
    color: #0b0c41;
}

.feature-card h3 {
    color: #0b0c41;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Barrier Section */
.pharma-barrier {
    padding: 60px 5%;
    background: #fff;
}

.pharma-barrier-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pharma-barrier-image {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pharma-barrier-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pharma-barrier-text {
    flex: 1;
    min-width: 280px;
}

.pharma-barrier-text h2 {
    font-size: 32px;
    color: #0b0c41;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pharma-barrier-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Equipment Section */
.pharma-equipment {
    padding: 60px 5%;
    background: #f8f9fa;
}

.pharma-equipment .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pharma-equipment .section-header h2 {
    color: #0b0c41;
    font-size: 32px;
    margin-bottom: 12px;
}

.pharma-equipment .section-header p {
    color: #555;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.equipment-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.equipment-img-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
}

.equipment-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-img-box img {
    transform: scale(1.05);
}

.equipment-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-content h3 {
    font-size: 1.3rem;
    color: #0b0c41;
    margin-bottom: 12px;
}

.equipment-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.equipment-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.equipment-content ul li {
    color: #555;
    padding: 5px 0 5px 25px;
    position: relative;
    font-size: 14px;
}

.equipment-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #0b0c41;
    border: 2px solid #0b0c41;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-outline:hover {
    background: #0b0c41;
    color: #fff;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #FBA301;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-cta:hover {
    background: #e69301;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid,
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pharma-banner {
        height: 250px;
        margin-top: 80px;
    }

    .pharma-intro,
    .pharma-features,
    .pharma-barrier,
    .pharma-equipment {
        padding: 40px 4%;
    }

    .pharma-intro-container,
    .pharma-barrier-container {
        flex-direction: column;
        gap: 30px;
    }

    .pharma-intro-text h2,
    .pharma-barrier-text h2,
    .pharma-features .section-header h2,
    .pharma-equipment .section-header h2 {
        font-size: 26px;
    }

    .features-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pharma-intro-image,
    .pharma-barrier-image {
        order: -1;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .equipment-img-box {
        height: 180px;
    }

    .equipment-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .pharma-banner {
        height: 200px;
        margin-top: 70px;
    }

    .pharma-intro,
    .pharma-features,
    .pharma-barrier,
    .pharma-equipment {
        padding: 30px 4%;
    }

    .pharma-intro-text h2,
    .pharma-barrier-text h2,
    .pharma-features .section-header h2,
    .pharma-equipment .section-header h2 {
        font-size: 22px;
    }

    .pharma-intro-text p,
    .pharma-barrier-text p {
        font-size: 14px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .equipment-img-box {
        height: 160px;
        padding: 15px;
    }

    .equipment-content h3 {
        font-size: 1.1rem;
    }

    .equipment-content p,
    .equipment-content ul li {
        font-size: 13px;
    }

    .btn-cta,
    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }
}
