/* ===================================
   CARDIMED B.V. - Modern Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #002768;
    --primary-light: #1a4a9e;
    --primary-dark: #001a4d;
    --secondary-color: #136db4;
    --accent-color: #4B5EFF;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #111827;

    --gradient-primary: linear-gradient(135deg, #002768 0%, #136db4 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #374151 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    transition: var(--transition-normal);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-radius: var(--border-radius-md) !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 39, 104, 0.85) 0%, rgba(19, 109, 180, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Certifications Badges */
.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cert-badge i {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Animations */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Section Styles
   =================================== */
.section-padding {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Value Cards (Core Values)
   =================================== */
.value-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card > p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.value-details {
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.value-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-details li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.value-details li strong {
    color: var(--text-dark);
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background: var(--gradient-primary);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: var(--transition-normal);
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   Product Cards
   =================================== */
.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* ===================================
   Service Cards
   =================================== */
.service-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
}

/* ===================================
   Clinical Portfolio Section
   =================================== */
.clinical-portfolio {
    background: var(--bg-light);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.division-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-normal);
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.division-card:hover::before {
    transform: scaleY(1);
}

.division-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 39, 104, 0.1) 0%, rgba(19, 109, 180, 0.1) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.division-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.division-card:hover .division-icon {
    background: var(--gradient-primary);
}

.division-card:hover .division-icon i {
    color: white;
}

.division-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.division-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Portfolio Stats */
.portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Responsive adjustments for Clinical Portfolio */
@media (max-width: 767.98px) {
    .divisions-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
        flex: 1 1 40%;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .divisions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 39, 104, 0.95) 0%, rgba(19, 109, 180, 0.7) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.service-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.service-content .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.service-content .btn:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.service-content .btn i {
    transition: var(--transition-fast);
}

.service-content .btn:hover i {
    transform: translateX(3px);
}

/* ===================================
   Facts Section
   =================================== */
.facts-section {
    background: var(--gradient-primary);
    position: relative;
}

.fact-card {
    text-align: center;
    padding: 2rem;
}

.fact-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-section .btn {
    white-space: nowrap;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .cta-section .btn {
        margin-top: 0;
    }
}

/* ===================================
   Footer
   =================================== */
#footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-widget h5 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links i {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-contact a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright a {
    color: var(--secondary-color);
}

.footer-copyright a:hover {
    color: white;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 39, 104, 0.3);
    background: var(--gradient-primary);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===================================
   Reveal Animation
   =================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for cards in a row */
.row .reveal-element:nth-child(1) { transition-delay: 0s; }
.row .reveal-element:nth-child(2) { transition-delay: 0.1s; }
.row .reveal-element:nth-child(3) { transition-delay: 0.2s; }
.row .reveal-element:nth-child(4) { transition-delay: 0.3s; }
.row .reveal-element:nth-child(5) { transition-delay: 0.4s; }
.row .reveal-element:nth-child(6) { transition-delay: 0.5s; }
.row .reveal-element:nth-child(7) { transition-delay: 0.6s; }
.row .reveal-element:nth-child(8) { transition-delay: 0.7s; }

/* ===================================
   Responsive Adjustments
   =================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin: 1rem 0 0 0;
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .value-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .certifications {
        flex-direction: column;
        align-items: center;
    }

    .cert-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .service-card {
        min-height: 280px;
    }

    .cta-section {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 35px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .fact-number {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   Background Utilities
   =================================== */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .hero-section video,
    .scroll-indicator,
    .cta-section,
    .footer-social {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-overlay {
        background: var(--primary-color);
    }
}

/* ===================================
   Page Headers (Subpages)
   =================================== */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding-top: 100px;
    overflow: hidden;
}

.page-header-small {
    min-height: 300px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.page-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .page-header {
        min-height: 300px;
        padding-top: 80px;
    }

    .page-header-small {
        min-height: 250px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   Content Blocks
   =================================== */
.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.content-block h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-gray);
    line-height: 1.8;
}

.content-block .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===================================
   Highlight Boxes
   =================================== */
.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    margin: 2.5rem 0;
}

.highlight-box-info {
    background: linear-gradient(135deg, rgba(0, 39, 104, 0.05) 0%, rgba(0, 86, 166, 0.05) 100%);
    border-left-color: var(--secondary-color);
}

.highlight-box h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box h4 i {
    color: var(--secondary-color);
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-gray);
}

.highlight-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Locations Grid (About Us)
   =================================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 40px;
    text-align: center;
}

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

/* ===================================
   Feature Items (About Us)
   =================================== */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ===================================
   Principle Cards (About Us)
   =================================== */
.principle-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.principle-icon i {
    font-size: 1.75rem;
    color: white;
}

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ===================================
   Contact Cards (Hospital Care)
   =================================== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Benefit Circle Cards
   =================================== */
.benefit-circle-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.benefit-circle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-circle-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.benefit-circle-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.benefit-circle-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-circle-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-circle-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ===================================
   Service Items (Pharma)
   =================================== */
.service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* ===================================
   Alert Box (Pharma)
   =================================== */
.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 86, 166, 0.08) 0%, rgba(0, 39, 104, 0.08) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 86, 166, 0.2);
    margin: 2rem 0;
}

.alert-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.alert-box strong {
    color: var(--primary-color);
}

/* ===================================
   Check List (Supplier)
   =================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===================================
   Partner Logos (Supplier)
   =================================== */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   Contact Form (Contact Page)
   =================================== */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-form-wrapper p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 166, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Contact Info (Contact Page)
   =================================== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h3 i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
}

/* ===================================
   Jobs/Careers Page
   =================================== */
.jobs-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
}

.jobs-empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.jobs-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.jobs-empty-state p {
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto 0.5rem;
}

.jobs-empty-state a {
    color: var(--secondary-color);
    font-weight: 600;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.job-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.job-location i {
    color: var(--secondary-color);
}

.job-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.job-details {
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* ===================================
   Legal Content (Privacy, Imprint)
   =================================== */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-intro p {
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-details-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 1rem;
}

.contact-details-box p {
    margin-bottom: 1rem;
}

.contact-details-box p:last-child {
    margin-bottom: 0;
}

.contact-details-box a {
    color: var(--secondary-color);
}

/* ===================================
   Imprint Cards
   =================================== */
.imprint-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.imprint-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.imprint-card h3 i {
    color: var(--secondary-color);
}

.imprint-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.imprint-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.imprint-card a:hover {
    color: var(--primary-color);
}

/* ===================================
   Contact CTA
   =================================== */
.contact-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-cta a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-cta a:hover {
    color: var(--primary-color);
}

/* ===================================
   Responsive Adjustments for Subpages
   =================================== */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-wrapper,
    .legal-content {
        padding: 1.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }

    .partner-logo {
        height: 80px;
        padding: 1rem;
    }

    .highlight-text {
        font-size: 1.15rem;
    }

    .jobs-empty-state {
        padding: 2.5rem 1.5rem;
    }

    .jobs-empty-state i {
        font-size: 3rem;
    }
}

@media (max-width: 575.98px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
