/* ========================================
   MEDICAL BACKGROUND ANIMATIONS
   ======================================== */

/* Medical shapes container */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.08;
}

/* Pill/Capsule shapes */
.pill {
    position: absolute;
    width: 60px;
    height: 30px;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--primary-color) 50%, var(--accent-color) 50%);
    animation: floatSlow 25s infinite ease-in-out;
}

.pill-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.pill-2 {
    top: 60%;
    right: 15%;
    animation-delay: 8s;
    transform: rotate(45deg);
}

.pill-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 16s;
    transform: rotate(-30deg);
}

/* Heartbeat pulse */
.heartbeat {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 40%;
    right: 10%;
}

.heartbeat::before,
.heartbeat::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 25px 25px 0 0;
}

.heartbeat::before {
    left: 25px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heartbeat::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.heartbeat {
    animation: heartPulse 3s infinite ease-in-out;
}

/* Molecule structures */
.molecule {
    position: absolute;
    width: 100px;
    height: 100px;
}

.molecule-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
}

.molecule-1 {
    top: 25%;
    left: 5%;
    animation: rotate 40s infinite linear;
}

.molecule-2 {
    bottom: 30%;
    right: 8%;
    animation: rotate 50s infinite linear reverse;
}

.molecule-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.molecule-dot:nth-child(2) { top: 50%; left: 0; }
.molecule-dot:nth-child(3) { top: 50%; right: 0; }
.molecule-dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.molecule-dot:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Medical cross */
.medical-cross {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: pulse 4s infinite ease-in-out;
}

.medical-cross::before,
.medical-cross::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
}

.medical-cross::before {
    width: 100%;
    height: 12px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.medical-cross::after {
    width: 12px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cross-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.cross-2 {
    bottom: 15%;
    left: 30%;
    animation-delay: 2s;
}

/* Animations */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Remove old geometric shapes */
.geo-shape.hexagon,
.geo-shape.circle,
.geo-shape.triangle,
.geo-shape.plus,
.dna-helix {
    display: none;
}

/* ========================================
   MODERN PHARMA SECTIONS - REDUCED SPACING
   ======================================== */

/* About Section */
.about-section {
    position: relative;
    padding: 70px 0;
    background: white;
    overflow: hidden;
}

.about-content {
    padding-right: 30px;
}

.about-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-title .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlights {
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.highlight-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.highlight-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.highlight-content h4 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* About Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(12, 53, 158, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-blue);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.stat-card:hover .stat-icon svg {
    fill: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Health Focus Areas Section */
.health-focus-section {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.focus-area-card {
    background: white;
    border-radius: 20px;
    padding: 28px 21px;
    margin-bottom: 21px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(12, 53, 158, 0.1);
    position: relative;
    overflow: hidden;
}

.focus-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-blue);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.focus-area-card:hover::before {
    transform: scaleY(1);
}

.focus-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(12, 53, 158, 0.15);
}

.focus-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(12, 53, 158, 0.3);
}

.focus-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.focus-area-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.focus-area-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Innovation Section */
.innovation-section {
    position: relative;
    padding: 70px 0;
    background: white;
    overflow: hidden;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 21px;
    margin-top: 35px;
}

.innovation-item {
    text-align: center;
    padding: 28px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.innovation-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.innovation-number {
    font-size: 2.1rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 7px;
}

.innovation-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Quality Assurance Section */
.quality-section {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, #00224d 0%, #0C359E 100%);
    color: white;
    overflow: hidden;
}

.quality-content {
    position: relative;
    z-index: 2;
}

.quality-badge {
    display: inline-block;
    padding: 8px 21px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 21px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.quality-section h2 {
    font-size: 2.4rem;
    margin-bottom: 21px;
    color: white;
}

.quality-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.quality-feature {
    padding: 21px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.quality-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.quality-feature h4 {
    color: white;
    margin-bottom: 7px;
    font-size: 1.2rem;
}

.quality-feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    text-align: center;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 28px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(12, 53, 158, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(12, 53, 158, 0.4);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .quality-section h2 {
        font-size: 1.8rem;
    }
    
    .focus-area-card {
        padding: 21px 14px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .geometric-bg {
        opacity: 0.05;
    }
    
    .health-focus-section {
        padding: 35px 0;
    }
    
    .innovation-section {
        padding: 42px 0;
    }
    
    .quality-section {
        padding: 35px 0;
    }
    
    .cta-section {
        padding: 42px 0;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 42px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
}
