/* BIG PHARMA INTERNATIONAL - Custom CSS */

/* CSS Variables for Brand Colors and Settings */
:root {
    --primary-color: #0c4d87;
    --primary-dark: #094066;
    --primary-light: #1565a3;
    --accent-color: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(12, 77, 135, 0.8), rgba(12, 77, 135, 0.6));
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-large: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Base Styles */
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Utilities */
.section-padding {
    padding: 100px 0;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    margin-left: 1rem;
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-white) !important;
    background: var(--primary-color);
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(12, 77, 135, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230c4d87' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 77, 135, 0.8), rgba(21, 101, 163, 0.6)), url('../img/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 77, 135, 0.3), rgba(21, 101, 163, 0.2));
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    background: var(--text-white) !important;
    background: #ffffff !important; /* Fallback */
    color: var(--primary-color) !important;
    color: #0c4d87 !important; /* Fallback */
    border: 2px solid var(--text-white);
    transition: var(--transition-smooth);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    background: transparent !important;
    color: var(--text-white) !important;
    color: #ffffff !important; /* Fallback */
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Additional specificity for hero button */
.hero-section .btn.hero-cta,
a.hero-cta {
    background: #ffffff !important;
    color: #0c4d87 !important;
    text-decoration: none !important;
}

.hero-section .btn.hero-cta:hover,
a.hero-cta:hover {
    background: transparent !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Mission Section */
.mission-content {
    padding-right: 2rem;
}

@media (max-width: 991.98px) {
    .mission-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
}

.mission-secondary {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    padding: 1.5rem;
    background: rgba(12, 77, 135, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 1rem;
}

.mission-image img {
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

/* Mission Video */
.mission-video {
    position: relative;
    text-align: center;
}

.mission-video .video-player {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: #000;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mission-video .video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px var(--shadow-medium);
}

.mission-video .video-caption {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(12, 77, 135, 0.05);
    border-radius: 6px;
    display: inline-block;
}

.mission-video .video-caption small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

/* Values Section */
.values-container {
    margin-top: 4rem;
}

.value-card {
    padding: 2.5rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.value-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Production Section */
.production-content {
    padding-left: 2rem;
}

.production-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.production-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.production-features {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(12, 77, 135, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.production-images {
    position: relative;
}

.main-image {
    position: relative;
    z-index: 2;
}

.main-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.secondary-image {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 60%;
    z-index: 1;
    max-width: calc(100% - 40px);
}

.secondary-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 45px var(--shadow-medium);
}

/* Stats Section */
.stats-container {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 50px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Innovation Engagement Section */
.innovation-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.innovation-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.innovation-content {
    padding-right: 2rem;
}

.innovation-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.innovation-secondary {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.innovation-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    background: rgba(12, 77, 135, 0.03);
    border-radius: 0 8px 8px 0;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 0.75rem;
    min-width: 20px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.innovation-video {
    position: relative;
    text-align: center;
}

.video-player {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: #000;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px var(--shadow-medium);
}

.video-player:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hide video controls */
.video-player::-webkit-media-controls-panel {
    display: none !important;
}

.video-player::-webkit-media-controls-play-button {
    display: none !important;
}

.video-player::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Add subtle loading state */
.innovation-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(12, 77, 135, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: videoSpin 1s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.innovation-video.loading::before {
    opacity: 1;
}

@keyframes videoSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-caption {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(12, 77, 135, 0.05);
    border-radius: 6px;
    display: inline-block;
}

.video-caption small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .innovation-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .innovation-highlights {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .innovation-video {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Partners Section */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

@media (min-width: 1200px) {
    .partners-tiles {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (max-width: 991.98px) {
    .partners-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .partners-tiles {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

.partner-tile {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    aspect-ratio: 1;
}

.partner-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.partner-tile-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) opacity(1);
    transition: var(--transition-smooth);
}

.partner-tile:hover .partner-tile-logo {
    transform: scale(1.1);
}

.partners-cta {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 50px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.partners-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partners-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-card {
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px var(--shadow-medium);
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-email:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.contact-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0 2rem;
    margin-top: 0;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-social {
    margin: 1.5rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    font-size: 1.5rem;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    color: var(--text-white);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 77, 135, 0.3);
}

/* Hero Button Override - Must come after Bootstrap overrides */
.hero-section .btn.hero-cta.btn-primary {
    background: #ffffff !important;
    color: #0c4d87 !important;
    border-color: #ffffff !important;
    text-decoration: none !important;
}

.hero-section .btn.hero-cta.btn-primary:hover,
.hero-section .btn.hero-cta.btn-primary:focus,
.hero-section .btn.hero-cta.btn-primary:active {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Desktop navbar spacing */
@media (min-width: 992px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .mission-content,
    .production-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .secondary-image {
        display: none;
    }
    
    .stats-container {
        padding: 2rem 1rem;
    }
    
    .contact-card {
        padding: 3rem 2rem;
    }
    
    .partners-tiles {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .partner-tile {
        padding: 1.75rem 1.25rem;
        min-height: 130px;
    }
}

@media (max-width: 767.98px) {
    /* Prevent horizontal scrolling */
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .mission-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .mission-secondary {
        font-size: 1.1rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .mission-video {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .mission-video .video-player {
        max-width: 100%;
        border-radius: var(--border-radius);
    }
    
    .value-card {
        padding: 2rem 1rem;
    }
    
    .production-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .partners-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .partner-tile {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .partners-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-email {
        font-size: 0.85rem;
    }
    
    .innovation-title {
        font-size: 1.7rem;
    }
    
    .innovation-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .innovation-secondary {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .innovation-highlights {
        margin: 2rem 0;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: left;
    }
    
    .video-player {
        max-width: 100%;
        border-radius: var(--border-radius);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    /* Ensure floating elements don't cause overflow */
    .whatsapp-float,
    .scroll-top {
        max-width: calc(100vw - 30px);
    }
}

@media (max-width: 575.98px) {
    /* Extra small devices - prevent any overflow */
    * {
        max-width: 100%;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        word-break: break-word;
    }
    
    .mission-content {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .mission-secondary {
        font-size: 1rem;
        padding: 1rem;
        margin-top: 1rem;
        border-left-width: 3px;
        text-align: center;
    }
    
    .mission-video .video-caption small {
        font-size: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .partners-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .partner-tile {
        padding: 1.25rem 0.75rem;
        min-height: 100px;
    }
    
    .innovation-title {
        font-size: 1.5rem;
    }
    
    .innovation-text {
        font-size: 0.95rem;
    }
    
    .innovation-secondary {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .video-caption small {
        font-size: 0.8rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 80px;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-top {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
    }
}