/* ===================================
   PROFESSIONAL PHARMACEUTICAL STYLES
   =================================== */

/* Color Palette */
:root {
    --pharma-green: #1B5E20;
    --pharma-blue: #1565C0;
    --pharma-gold: #F57C00;
    --pharma-dark: #212121;
    --pharma-gray: #616161;
    --pharma-light-gray: #F5F5F5;
    --pharma-white: #FFFFFF;
}

/* ===================================
   PHARMA HERO SECTION
   =================================== */

.pharma-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pharma-green) 0%, var(--pharma-blue) 100%);
    background-image: url('../assets/pharma-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.92) 0%, rgba(21, 101, 192, 0.88) 100%);
    backdrop-filter: blur(2px);
}

.hero-content-pharma {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pharma-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #FFF 0%, #FFD700 50%, #FFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.pharma-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-actions-pharma {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--pharma-green);
}

/* ===================================
   COMPLIANCE BADGES
   =================================== */

.compliance-badges {
    position: relative;
    z-index: 10;
    background: var(--pharma-light-gray);
    padding: 3rem 0;
    text-align: center;
    clear: both;
}

.badges-subtitle {
    font-size: 0.95rem;
    color: var(--pharma-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--pharma-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.badge-name {
    font-weight: 600;
    color: var(--pharma-dark);
}

.badges-link {
    color: var(--pharma-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.badges-link:hover {
    text-decoration: underline;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.section-title-pharma {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--pharma-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title-pharma.center {
    text-align: center;
}

.section-title-pharma.white {
    color: white;
}

.section-subtitle-pharma {
    font-size: 1.1rem;
    color: var(--pharma-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.section-subtitle-pharma.center {
    text-align: center;
}

.section-subtitle-pharma.white {
    color: rgba(255, 255, 255, 0.9);
}

.text-large-pharma {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pharma-gray);
    margin-bottom: 2rem;
}

/* ===================================
   ABOUT BRIEF SECTION
   =================================== */

.about-brief {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text {
    display: flex;
    flex-direction: column;
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
}


.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--pharma-light-gray);
    border-radius: var(--radius-lg);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pharma-green);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--pharma-gray);
}

.image-placeholder-pharma {
    background: var(--pharma-light-gray);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(27, 94, 32, 0.1);
}

.image-placeholder-pharma .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

.facility-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* ===================================
   THERAPEUTIC SEGMENTS
   =================================== */

.therapeutic-segments {
    padding: 4rem 0;
    background: white;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.segment-card {
    background: white;
    border: 2px solid var(--pharma-light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.segment-card:hover {
    border-color: var(--pharma-green);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.1);
    transform: translateY(-4px);
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.segment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pharma-dark);
    margin-bottom: 0.75rem;
}

.segment-desc {
    font-size: 0.95rem;
    color: var(--pharma-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.segment-link {
    color: var(--pharma-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.segment-link:hover {
    text-decoration: underline;
}

/* ===================================
   MANUFACTURING & QUALITY
   =================================== */

.manufacturing-quality {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--pharma-green) 0%, #2E7D32 100%);
    color: white;
}

.quality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.quality-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quality-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   WHY PARTNER
   =================================== */

.why-partner {
    padding: 4rem 0;
    background: var(--pharma-light-gray);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.partner-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.partner-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.partner-icon {
    width: 48px;
    height: 48px;
    background: var(--pharma-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pharma-dark);
    margin-bottom: 0.75rem;
}

.partner-card p {
    font-size: 0.95rem;
    color: var(--pharma-gray);
    line-height: 1.6;
}

/* ===================================
   CERTIFICATIONS
   =================================== */

.certifications-section {
    padding: 4rem 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cert-card {
    background: white;
    border: 2px solid var(--pharma-light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.cert-card:hover {
    border-color: var(--pharma-green);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.1);
}

.cert-badge {
    width: 80px;
    height: 80px;
    background: var(--pharma-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.cert-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pharma-dark);
    margin-bottom: 0.75rem;
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--pharma-gray);
}

/* ===================================
   BUSINESS INQUIRY CTA
   =================================== */

.business-inquiry-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--pharma-blue) 0%, #1976D2 100%);
    color: white;
}

.inquiry-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.inquiry-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.inquiry-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-pharma-primary {
    background: var(--pharma-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

.btn-pharma-primary:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.btn-pharma-secondary {
    background: transparent;
    color: var(--pharma-green);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--pharma-green);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

.btn-pharma-secondary:hover {
    background: var(--pharma-green);
    color: white;
}

.btn-pharma-white {
    background: white;
    color: var(--pharma-green);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

.btn-pharma-white:hover {
    background: var(--pharma-light-gray);
    transform: translateY(-2px);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {

    /* Hero Section - Tablet */
    .pharma-hero {
        min-height: 550px;
        padding: 4rem 0;
    }

    .pharma-hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    /* Content Grid - Tablet */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-image {
        order: -1;
    }

    /* Grids - 2 Columns for Tablet */
    .segments-grid,
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .quality-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Sections Padding */
    .about-brief,
    .therapeutic-segments,
    .why-partner,
    .certifications-section {
        padding: 3rem 0;
    }

    .manufacturing-quality,
    .business-inquiry-cta {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {

    /* Hero Section - Mobile */
    .pharma-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .pharma-hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .pharma-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-actions-pharma {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions-pharma .btn-large {
        width: 100%;
        text-align: center;
    }

    /* Compliance Badges - Mobile */
    .compliance-badges {
        padding: 2rem 0;
    }

    .badges-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .badges-grid {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-item {
        width: 100%;
    }

    /* Typography - Mobile */
    .section-title-pharma {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle-pharma {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .text-large-pharma {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* About Section - Mobile */
    .about-brief {
        padding: 2.5rem 0;
    }

    .content-grid {
        gap: 2rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    /* Therapeutic Segments - Mobile */
    .therapeutic-segments {
        padding: 2.5rem 0;
    }

    .segments-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .segment-card {
        padding: 1.5rem;
    }

    .segment-icon {
        font-size: 2.5rem;
    }

    .segment-title {
        font-size: 1.15rem;
    }

    /* Manufacturing & Quality - Mobile */
    .manufacturing-quality {
        padding: 2.5rem 0;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .quality-card {
        padding: 1.5rem;
    }

    .quality-icon {
        font-size: 2rem;
    }

    .quality-card h3 {
        font-size: 1rem;
    }

    .quality-card p {
        font-size: 0.85rem;
    }

    /* Why Partner - Mobile */
    .why-partner {
        padding: 2.5rem 0;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .partner-card h3 {
        font-size: 1.05rem;
    }

    .partner-card p {
        font-size: 0.9rem;
    }

    /* Certifications - Mobile */
    .certifications-section {
        padding: 2.5rem 0;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .cert-card {
        padding: 1.5rem;
    }

    .cert-badge {
        width: 70px;
        height: 70px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .cert-card h4 {
        font-size: 1rem;
    }

    .cert-card p {
        font-size: 0.85rem;
    }

    /* Business Inquiry CTA - Mobile */
    .business-inquiry-cta {
        padding: 2.5rem 0;
    }

    .inquiry-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .inquiry-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .inquiry-actions {
        flex-direction: column;
        width: 100%;
    }

    .inquiry-actions .btn-large {
        width: 100%;
    }

    /* Buttons - Mobile */
    .btn-pharma-primary,
    .btn-pharma-secondary,
    .btn-pharma-white {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Hero Section - Small Mobile */
    .pharma-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .pharma-hero-title {
        font-size: 1.75rem;
    }

    .pharma-hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        padding: 1rem 0;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    /* Compliance Badges - Small Mobile */
    .compliance-badges {
        padding: 1.5rem 0;
    }

    .badge-item {
        flex-direction: column;
        text-align: center;
        gap: 0.35rem;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .badge-name {
        font-size: 0.85rem;
    }

    /* Typography - Small Mobile */
    .section-title-pharma {
        font-size: 1.5rem;
    }

    .section-subtitle-pharma {
        font-size: 0.95rem;
    }

    .text-large-pharma {
        font-size: 0.95rem;
    }

    /* Sections Padding - Small Mobile */
    .about-brief,
    .therapeutic-segments,
    .manufacturing-quality,
    .why-partner,
    .certifications-section,
    .business-inquiry-cta {
        padding: 2rem 0;
    }

    /* Cards - Small Mobile */
    .segment-card,
    .quality-card,
    .partner-card,
    .cert-card {
        padding: 1.25rem;
    }

    .segment-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .segment-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .segment-desc {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    /* Stats - Small Mobile */
    .stat-box {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.35rem;
    }

    .stat-desc {
        font-size: 0.85rem;
    }

    /* Business Inquiry - Small Mobile */
    .inquiry-content h2 {
        font-size: 1.5rem;
    }

    .inquiry-content p {
        font-size: 0.95rem;
    }

    /* Buttons - Small Mobile */
    .btn-pharma-primary,
    .btn-pharma-secondary,
    .btn-pharma-white,
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Container Padding */
    .section-container {
        padding: 0 1rem;
    }
}