/* Mensken Pharma - Main Stylesheet */
/* Blue Gradient Medical Theme */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables - Enhanced Blue Gradient Theme */
:root {
    /* Primary Gradient Colors */
    --primary-gradient-start: #0B1E3A;
    --primary-gradient-end: #1D4ED8;
    --primary-gradient: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
    
    /* Enhanced Gradients */
    --gradient-hero: linear-gradient(135deg, #0B1E3A 0%, #1D4ED8 50%, #38BDF8 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --gradient-button: linear-gradient(45deg, #1D4ED8, #38BDF8);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
    
    /* Accent Colors */
    --accent-info: #38BDF8;
    --accent-success: #4ADE80;
    --accent-warning: #F59E0B;
    
    /* Neutral Colors */
    --neutral-dark: #0F172A;
    --neutral-medium: #64748B;
    --neutral-light: #F8FAFC;
    --neutral-white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: var(--neutral-dark);
    --text-secondary: var(--neutral-medium);
    --text-light: var(--neutral-light);
    --text-white: var(--neutral-white);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --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);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
}

.loading-logo i {
    font-size: var(--font-size-4xl);
    color: var(--accent-info);
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--accent-info);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: var(--accent-success);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: var(--accent-warning);
    animation-duration: 2s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    width: 100%;
    display: block;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--neutral-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

/* Links */
a {
    color: var(--primary-gradient-end);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-gradient-start);
}

/* Buttons */
.btn {
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
    color: var(--text-white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-gradient-end);
    border: 2px solid var(--primary-gradient-end);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

/* Header */
.header {
    background: #FFFFFF !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar {
    padding: var(--spacing-md) 0;
    background: #FFFFFF !important;
}

.navbar-light {
    background: #FFFFFF !important;
}

.navbar-light .navbar-brand {
    color: #3B82F6 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #3B82F6 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #1E40AF !important;
}

/* Navbar Logo */
.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--primary-gradient-end);
}

.brand-logo i {
    font-size: var(--font-size-2xl);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
    color: #3B82F6;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1E40AF;
}

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

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

/* Gradient Line */
.navbar-gradient-line {
    height: 3px;
    background: linear-gradient(90deg, #1E293B 0%, #3B82F6 50%, #38BDF8 100%);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* Downloads Page Styles */
.downloads-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    text-align: center;
}

.downloads-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1E293B, #3B82F6, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.downloads-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.downloads-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.download-card-enhanced {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.download-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.download-preview {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.brochure-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.download-card-enhanced:hover .brochure-preview {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-card-enhanced:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-content {
    padding: 2rem;
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3B82F6, #38BDF8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.download-icon i {
    font-size: 1.5rem;
    color: white;
}

.download-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.download-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8FAFC;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #475569;
}

.info-item i {
    color: #3B82F6;
}

.btn-download {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3B82F6, #38BDF8);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Responsive Design for Downloads */
@media (max-width: 768px) {
    .downloads-hero {
        padding: 6rem 0 3rem;
    }
    
    .downloads-title {
        font-size: 2.5rem;
    }
    
    .downloads-subtitle {
        font-size: 1.1rem;
    }
    
    .download-preview {
        height: 250px;
    }
    
    .download-content {
        padding: 1.5rem;
    }
    
    .download-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-item {
        justify-content: center;
    }
}

/* Home Screen Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile - Vertical Stack */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
        min-height: calc(100vh - 120px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .brand-name-shiny {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }
    
    /* Our Certifications Section Mobile - Horizontal Scroll Design */
    .quality-assurance {
        padding: 2rem 0;
        background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #8B5CF6 100%);
        position: relative;
        overflow: hidden;
    }
    
    .quality-assurance::before {
        content: '';
        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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }
    
    .quality-assurance .container {
        position: relative;
        z-index: 2;
    }
    
    .quality-assurance .section-header {
        text-align: center;
        margin-bottom: 2rem;
        color: white;
    }
    
    .quality-assurance .section-header h2 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .quality-assurance .section-header p {
        color: rgba(255,255,255,0.9);
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .quality-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem 1rem 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .quality-grid::-webkit-scrollbar {
        display: none;
    }
    
    .quality-card {
        flex: 0 0 280px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .quality-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
    }
    
    .quality-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(59, 130, 246, 0.5);
    }
    
    .certificate-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    .certificate-icon::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.6s;
    }
    
    .quality-card:hover .certificate-icon::after {
        transform: rotate(45deg) translate(100%, 100%);
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: #1E293B;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .card-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #64748B;
        margin-bottom: 1rem;
    }
    
    .certificate-badge {
        display: inline-block;
        background: linear-gradient(135deg, #3B82F6, #1D4ED8);
        color: white;
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
    }
    
    .quality-card:hover .certificate-badge {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    }
    
    /* Special styling for the 4P Culture card */
    .quality-card:nth-child(3) {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
        border: 2px solid rgba(139, 92, 246, 0.3);
    }
    
    .quality-card:nth-child(3)::before {
        background: linear-gradient(90deg, #8B5CF6, #EC4899, #F59E0B);
    }
    
    .quality-card:nth-child(3) .certificate-badge {
        background: linear-gradient(135deg, #8B5CF6, #EC4899);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }
    
    .quality-card:nth-child(3):hover .certificate-badge {
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    }
}

/* Tablet optimizations for Our Certifications */
@media (min-width: 768px) and (max-width: 991.98px) {
    .quality-assurance {
        background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #7C3AED 100%);
    }
    
    .quality-grid {
        gap: 1.2rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .quality-card {
        flex: 0 0 320px;
        padding: 2rem;
    }
    
    .certificate-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .certificate-badge {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
}

/* Mobile optimizations for Our Certifications */
@media (max-width: 768px) {
    /* Smooth fade-in animation for cards */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .quality-card {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }
    
    /* Therapeutic Segments Section Mobile - Carousel Design */
    .therapeutic-segments {
        padding: 2.5rem 0;
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #38BDF8 75%, #0EA5E9 100%) !important;
    }
    
    .segments-grid {
        display: flex !important;
        overflow-x: auto;
        gap: 1.2rem;
        padding: 0 1rem 1rem 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .segments-grid::-webkit-scrollbar {
        display: none;
    }
    
    .segment-card {
        flex: 0 0 300px;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }
    
    .segment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .card-image {
        height: 160px;
        position: relative;
        overflow: hidden;
    }
    
    .segment-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .segment-card:hover .segment-img {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(147, 51, 234, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .segment-card:hover .image-overlay {
        opacity: 1;
    }
    
    .overlay-content {
        text-align: center;
        color: white;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.8rem 1.2rem;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .overlay-content i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .overlay-content span {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .card-content {
        padding: 1.2rem;
        text-align: center;
    }
    
    .segment-icon {
        display: none !important;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #1E293B;
        font-weight: 600;
    }
    
    .card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #64748B;
    }
    
    .therapeutic-icon {
        width: 35px;
        height: 35px;
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .therapeutic-icon i {
        font-size: 0.9rem;
    }
    
    /* Featured Products Section Mobile - Single Column */
    .featured-products {
        padding: 2.5rem 0;
    }
    
    .products-carousel {
        padding: 0 1rem;
    }
    
    .product-card {
        margin: 0;
        min-width: 100%;
        max-width: 100%;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 1.2rem;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .product-content .product-category {
        font-size: 0.95rem;
    }
    
    .product-content .product-description {
        font-size: 0.85rem;
    }
    
    /* Operating in Uttar Pradesh Section Mobile - Vertical Stack */
    .operating-section {
        padding: 2.5rem 0;
    }
    
    .operating-content {
        padding: 0 1rem;
    }
    
    .operating-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .operating-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .operating-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #1E293B;
    }
    
    .operating-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: #64748B;
        line-height: 1.5;
    }
    
    .operating-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 0.5rem;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        color: #3B82F6;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
        color: #64748B;
    }
    
    .operating-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .operating-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .operating-chart {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .chart-container {
        height: 200px;
    }
    
    .chart-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #1E293B;
    }
    
    .chart-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        color: #64748B;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #1E293B;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #64748B;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    /* Container Mobile */
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section Tablet */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .brand-name-shiny {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Our Certifications Section Tablet - Enhanced Grid */
    .quality-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        overflow: visible;
    }
    
    .quality-card {
        flex: none;
        min-height: 280px;
        padding: 2rem;
    }
    
    .certificate-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .certificate-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    /* Therapeutic Segments Section Tablet - Enhanced Grid */
    .segments-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow: visible;
    }
    
    .segment-card {
        flex: none;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }
    
    .segment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .card-image {
        height: 180px;
    }
    
    .segment-icon {
        display: none !important;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Featured Products Section Tablet */
    .product-card {
        min-width: 300px;
    }
    
    /* Operating in Uttar Pradesh Section Tablet */
    .operating-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .operating-text h2 {
        font-size: 2.5rem;
    }
    
    .chart-container {
        height: 300px;
    }
}

/* Hero Section - Modern Redesign */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    padding-top: 83px; /* Add padding to prevent navbar overlap + gradient line */
}

/* Enhanced Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(241, 245, 249, 0.8) 100%);
    z-index: 2;
}

/* 3D Model Background */
.hero-3d-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12;
    animation: float3D 10s ease-in-out infinite;
}

.model-bg-image {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: blur(2px);
    transform: scale(1.05);
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(1deg) scale(1.08);
    }
}

/* Animated Background Elements */
/* Enhanced Medical Icons */
.hero-medical-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.medical-icon {
    position: absolute;
    color: rgba(56, 189, 248, 0.15);
    font-size: 2.5rem;
    animation: floatMedical var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 4;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.medical-icon:hover {
    color: rgba(56, 189, 248, 0.25);
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}

@keyframes floatMedical {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1.05); 
        opacity: 0.2;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(56, 189, 248, 0.8);
    border-radius: 50%;
    animation: floatParticle var(--duration) linear infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6), 0 0 30px rgba(56, 189, 248, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.9);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.particle:nth-child(2) {
    top: 40%;
    right: 15%;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

.particle:nth-child(4) {
    top: 60%;
    right: 25%;
}

.particle:nth-child(5) {
    top: 80%;
    left: 30%;
}

.particle:nth-child(6) {
    top: 30%;
    right: 20%;
}

.particle:nth-child(7) {
    bottom: 40%;
    left: 25%;
}

.particle:nth-child(8) {
    top: 50%;
    right: 35%;
}

.particle:nth-child(9) {
    bottom: 60%;
    left: 40%;
}

.particle:nth-child(10) {
    top: 70%;
    right: 45%;
}

@keyframes floatParticle {
    0% { 
        transform: translateY(0px) translateX(0px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(-10px) translateX(5px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) translateX(25px) scale(1.2);
    }
    90% {
        opacity: 0.8;
        transform: translateY(-90px) translateX(45px) scale(1);
    }
    100% { 
        transform: translateY(-120px) translateX(60px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px); /* Adjust for navbar height */
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.badge-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3B82F6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: fadeInDown 0.8s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Title */
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
}

.brand-name {
    background: linear-gradient(45deg, #1E293B, #0F172A, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.brand-name-shiny {
    background: linear-gradient(45deg, #1E293B, #0F172A, #3B82F6, #8B5CF6, #38BDF8);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: shinyGradient 3s ease-in-out infinite;
    position: relative;
}

.brand-name-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shinySweep 2s ease-in-out infinite;
}

@keyframes shinyGradient {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes shinySweep {
    0% { 
        left: -100%; 
    }
    100% { 
        left: 100%; 
    }
}

/* Enhanced Hero Subtitle */
.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
}

.subtitle-text {
    background: linear-gradient(45deg, #64748B, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.subtitle-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

@keyframes expandWidth {
    0% { width: 0; }
    100% { width: 80px; }
}

/* Enhanced Hero Description */
.hero-description {
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    color: #1E293B;
    font-weight: 700;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    opacity: 0.3;
    border-radius: 1px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid #3B82F6;
    color: #3B82F6;
    background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Main Image */
.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.image-placeholder {
    text-align: center;
    color: #64748B;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-1 {
    top: 10%;
    right: 10%;
    width: 140px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 5%;
    width: 140px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    width: 160px;
    animation-delay: 4s;
}

.card-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2rem;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content {
    text-align: center;
}

.card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0;
}

/* Animations */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Products Page Styles */
.products-page .hero {
    background: linear-gradient(45deg, #0B1E3A 0%, #1D4ED8 100%);
    color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.products-page .text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.products-page .text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Filters Section */
.filters-section {
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-chip {
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.badge-chip:hover {
    background: #E2E8F0;
    border-color: #CBD5E1;
    color: #0F172A;
    text-decoration: none;
}

.badge-chip.active {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.badge-chip.active:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: white;
}

/* Product Cards */
.products-page .card.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.products-page .card.glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.12);
}

.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    color: #94A3B8;
    font-size: 3rem;
}

.product-content {
    padding: 1.5rem;
}

.product-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.product-composition {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-indications {
    margin-bottom: 1rem;
}

.indication-chip {
    display: inline-block;
    background: #F1F5F9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    margin: 0.125rem;
    border: 1px solid #E2E8F0;
}

/* Variant Badge (top-right corner) */
.variant-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Variant Chips */
.variant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.variant-chip-small {
    display: inline-block;
    background: #F8FAFC;
    color: #64748B;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.variant-chip-small:hover {
    background: #EFF6FF;
    border-color: #3B82F6;
    color: #3B82F6;
    transform: translateY(-1px);
}

.variant-chip-small.active {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border-color: #3B82F6;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-meta .badge {
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
}

/* Product Description */
.product-desc {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #E2E8F0;
}

.product-desc small {
    line-height: 1.5;
}

/* Product Card Position Relative for Badge */
.products-page .card.glass {
    position: relative;
}

.product-pack {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-claims {
    margin-bottom: 1.5rem;
}

.product-claims ul {
    margin: 0;
    padding-left: 1rem;
}

.product-claims li {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0.25rem;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-product {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-view-details {
    background: #3B82F6;
    color: white;
    border: none;
}

.btn-view-details:hover {
    background: #2563EB;
    color: white;
}

.btn-enquire {
    background: transparent;
    color: #3B82F6;
    border: 1px solid #3B82F6;
}

.btn-enquire:hover {
    background: #3B82F6;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #0B1E3A 0%, #1D4ED8 100%);
    color: white;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 1px solid #E2E8F0;
    color: #64748B;
}

.pagination .page-link:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #3B82F6;
}

.pagination .page-item.active .page-link {
    background: #3B82F6;
    border-color: #3B82F6;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-page .hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .filter-chips {
        justify-content: center;
    }
    
    .badge-chip {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-product {
        width: 100%;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-placeholder {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .products-page .hero h1 {
        font-size: 2rem;
    }
    
    .products-page .hero .lead {
        font-size: 1rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-brand {
        font-size: 1.1rem;
    }
}

/* Gradient Overlay - Removed */
.gradient-overlay {
    display: none;
}

/* Gradient Shift Animation - Removed */

/* Hero Background - Removed for other pages, but used on presence page */

/* Hero Badge - Removed */


.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-accent {
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.7em;
    margin-left: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle-highlight {
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: #475569;
    opacity: 0.8;
    margin-bottom: var(--spacing-2xl);
    line-height: var(--line-height-relaxed);
    max-width: 500px;
}

.hero-description strong {
    color: #1E293B;
    font-weight: 600;
    opacity: 1;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: #10B981;
    font-size: 1rem;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, #0F172A, #1E293B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2xl);
    color: var(--text-white);
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

/* Main Image Placeholder */
.main-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-image-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) scale(1.05);
}

.main-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.main-image-placeholder span {
    opacity: 0.8;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--text-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatCard 8s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Cards Positioning - Removed old rules */

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1D4ED8, #38BDF8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.floating-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.floating-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

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

.hero-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    text-align: center;
    color: var(--text-white);
    transform: translateY(20px);
    animation: floatAnimation 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.hero-card:hover {
    transform: translateY(10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-card i {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.hero-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.hero-card p {
    margin: 0;
    color: var(--text-white);
    opacity: 0.9;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Floating Elements */
/* Floating Elements - Removed */
.floating-elements {
    display: none;
}

.floating-element {
    position: absolute;
    color: rgba(59, 130, 246, 0.08);
    font-size: 2.5rem;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 3;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #ffffff, #38BDF8, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item i {
    font-size: var(--font-size-lg);
}

/* Enhanced Hero Card */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-2xl);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-stats {
    display: flex;
    justify-content: space-around;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quality Assurance Section - Dark Blue Sky Blue Gradient */
.quality-assurance {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #38BDF8 75%, #0EA5E9 100%);
    position: relative;
    overflow: hidden;
}

/* Quality Assurance Section Title - White Color */
.quality-assurance .section-title {
    color: #FFFFFF;
}

.quality-assurance .title-main {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.quality-assurance .title-highlight {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quality Card */
.quality-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(29, 78, 216, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quality-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(29, 78, 216, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

/* Card Icon */
.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.certificate-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.2);
    transition: all 0.3s ease;
}

.quality-card:hover .certificate-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.3);
}

/* Card Content */
.card-content {
    text-align: center;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #1E293B, #0F172A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #1E293B, #0F172A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Card Features */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(29, 78, 216, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.feature-item i {
    color: #10B981;
    font-size: 0.9rem;
}

.feature-item span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Value Background */
.value-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.value-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(29, 78, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.03) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.value-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
    animation: glowFloat 12s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -10px) rotate(180deg); }
}

@keyframes glowFloat {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.05); }
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(29, 78, 216, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(29, 78, 216, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card:nth-child(1) { animation-delay: 0.4s; }
.value-card:nth-child(2) { animation-delay: 0.6s; }
.value-card:nth-child(3) { animation-delay: 0.8s; }

/* Card Image */
.card-image {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
    border-radius: 12px 12px 0 0;
}

.image-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(29, 78, 216, 0.2));
}

.value-card:hover .certificate-img {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 6px 16px rgba(29, 78, 216, 0.3));
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .image-glow {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 1.2rem;
    text-align: center;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(45deg, #1D4ED8, #38BDF8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.card-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    background: linear-gradient(45deg, #1E293B, #0F172A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    line-height: var(--line-height-tight);
}

.card-content p {
    font-size: var(--font-size-sm);
    color: #475569;
    line-height: var(--line-height-relaxed);
    margin-bottom: 1rem;
}

/* Card Features */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--font-size-xs);
    color: #64748B;
    background: rgba(29, 78, 216, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.feature-item i {
    color: #10B981;
    font-size: 0.8rem;
}

/* Therapeutic Segments - White Theme */
.therapeutic-segments {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

/* Therapeutic Segments Section Title - White Color */
.therapeutic-segments .section-title {
    color: #FFFFFF;
}

.therapeutic-segments .title-main {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.therapeutic-segments .title-highlight {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Parallax Background Layers */
.segments-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 120%;
    opacity: 0.1;
}

.layer-1 {
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.3) 0%, transparent 50%);
    animation: floatLayer1 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: floatLayer2 25s ease-in-out infinite;
}

.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(29, 78, 216, 0.2) 0%, transparent 50%);
    animation: floatLayer3 30s ease-in-out infinite;
}

@keyframes floatLayer1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

@keyframes floatLayer2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(-180deg); }
}

@keyframes floatLayer3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 30px) rotate(90deg); }
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out;
}

.header-badge i {
    color: #F59E0B;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-tight);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(45deg, #FFFFFF, #F8FAFC, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    background: linear-gradient(45deg, #FFFFFF, #F8FAFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-highlight {
    background: linear-gradient(45deg, #F8FAFC, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.section-description {
    font-size: var(--font-size-lg);
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Segments Grid */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Segment Cards - White Theme */
.segment-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.segment-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(29, 78, 216, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.segment-card:nth-child(1) { animation-delay: 0.6s; }
.segment-card:nth-child(2) { animation-delay: 0.8s; }
.segment-card:nth-child(3) { animation-delay: 1s; }
.segment-card:nth-child(4) { animation-delay: 1.2s; }
.segment-card:nth-child(5) { animation-delay: 1.4s; }
.segment-card:nth-child(6) { animation-delay: 1.6s; }

/* Card Image */
.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.segment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.segment-card:hover .segment-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 30, 58, 0.9) 0%, rgba(29, 78, 216, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.segment-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #38BDF8;
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    position: relative;
}

.segment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1D4ED8, #38BDF8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3);
    position: absolute;
    top: -25px;
    right: 1.5rem;
}

.card-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.card-content p {
    font-size: var(--font-size-sm);
    color: #64748B;
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
    margin-bottom: 1rem;
}

/* Card Stats */
.card-stats {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
    background: rgba(29, 78, 216, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.stat-number {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: #64748B;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Featured Products - White Theme */
.featured-products {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
}

.product-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-lg);
}

.product-info h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.product-composition {
    color: var(--primary-gradient-end);
    font-size: var(--font-size-xs);
    font-weight: 500;
    background: rgba(29, 78, 216, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-gradient-end);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 var(--spacing-xs);
}

.carousel-indicators .active {
    background-color: var(--primary-gradient-start);
}

/* Presence Banner - White Theme */
.presence-banner {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    color: #1E293B;
    position: relative;
    overflow: hidden;
}

/* Presence Background */
.presence-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.presence-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

.presence-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Presence Content */
.presence-content {
    position: relative;
    z-index: 2;
}

.presence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out;
}

.presence-badge i {
    color: #F59E0B;
    animation: pulse 2s infinite;
}

.presence-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-tight);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-main {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-highlight {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.presence-description {
    font-size: var(--font-size-lg);
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.presence-description strong {
    color: var(--text-white);
    font-weight: 600;
    opacity: 1;
}

/* Presence Features */
.presence-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.feature-badge i {
    color: #10B981;
    font-size: 1rem;
}

/* Presence Buttons */
.presence-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.presence-buttons .btn {
    position: relative;
    overflow: hidden;
}

.presence-buttons .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.presence-buttons .btn:hover .btn-shine {
    left: 100%;
}

/* Presence Stats - Vertical Bar Chart Design */
.presence-stats {
    position: relative;
    z-index: 2;
}

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-header h4 {
    color: var(--text-white);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chart-header p {
    color: var(--text-white);
    opacity: 0.8;
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Vertical Chart Layout */
.vertical-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 300px;
    position: relative;
}

/* Y-Axis */
.chart-y-axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-width: 40px;
}

.y-label {
    color: var(--text-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.y-scale {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
}

.y-scale::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.scale-mark {
    color: var(--text-white);
    font-size: 0.75rem;
    opacity: 0.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Chart Bars */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex: 1;
    height: 100%;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
}

.bar-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    position: relative;
}

.vertical-bar {
    width: 100%;
    background: linear-gradient(180deg, #38BDF8, #10B981);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 2s ease-out;
    animation: barGrow 2s ease-out 2s both;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bar-1 {
    height: 0%;
    animation-delay: 2s;
}

.bar-2 {
    height: 0%;
    animation-delay: 2.2s;
}

.bar-3 {
    height: 0%;
    animation-delay: 2.4s;
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: var(--font-size-sm);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.bar-label {
    color: var(--text-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes barGrow {
    from { height: 0%; }
    to { height: var(--target-height, 100%); }
}

.chart-legend {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-item span {
    color: var(--text-white);
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Logos Section */
.logos-section {
    padding: var(--spacing-2xl) 0;
    background: var(--neutral-white);
    border-top: 1px solid var(--neutral-light);
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-button);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-brand .brand-logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand .tagline {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--accent-info);
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--line-height-relaxed);
}

.footer h5 {
    color: var(--text-white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-info);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: #3B82F6;
    font-size: var(--font-size-lg);
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.contact-item div {
    color: #1e293b;
    line-height: var(--line-height-relaxed);
}

.contact-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: var(--font-size-sm);
}

.developed-by {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 0 0;
    font-size: var(--font-size-sm);
}

.developer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* ========================================
   PRESENCE PAGE STYLES
   ======================================== */

/* Hero Section */
.presence-hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.presence-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.presence-hero .hero-pattern {
    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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23E2E8F0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.presence-hero .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.presence-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.presence-hero .hero-title {
    margin-bottom: 1.5rem;
}

.presence-hero .title-main {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.presence-hero .title-highlight {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    display: block;
    margin-top: 0.5rem;
}

.presence-hero .hero-description {
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.presence-hero .hero-description strong {
    color: #1E293B;
    font-weight: 700;
}

/* Enhanced Hero Stats */
.presence-hero .hero-stats-enhanced {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.presence-hero .hero-stats-enhanced .stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.presence-hero .hero-stats-enhanced .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
}

.presence-hero .hero-stats-enhanced .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.presence-hero .hero-stats-enhanced .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.presence-hero .hero-stats-enhanced .stat-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.presence-hero .hero-stats-enhanced .stat-number {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.presence-hero .hero-stats-enhanced .stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Ensure presence page hero section stat labels are white */
.hero-section .stat-card .stat-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Coverage Progress */
.coverage-progress {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-progress .progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #475569;
    font-weight: 600;
}

.coverage-progress .progress-percentage {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9, #0284C7);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-out;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.presence-hero .hero-visual {
    position: relative;
    z-index: 2;
}

.presence-hero .map-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.presence-hero .up-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

/* Interactive Map Section */
.interactive-map-section {
    padding: 4rem 0;
    background: #FFFFFF;
    position: relative;
    z-index: 10;
}

.interactive-map-section .section-title {
    margin-bottom: 1rem;
}

.interactive-map-section .title-main {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
}

.interactive-map-section .title-highlight {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
}

.interactive-map-section .section-description {
    color: #64748B;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.map-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #475569;
}

.map-legend .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.map-legend .legend-color.launched {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.map-legend .legend-color.planned {
    background: linear-gradient(45deg, #10B981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.map-legend .legend-color.other {
    background: linear-gradient(45deg, #CBD5E1, #94A3B8);
    box-shadow: 0 4px 12px rgba(203, 213, 225, 0.3);
}

.interactive-map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.maplibre-map {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #1E293B;
}

.map-control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-control-btn i {
    font-size: 1rem;
}

/* Floating Legend */
.floating-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    min-width: 200px;
}

.floating-legend .legend-header h5 {
    margin: 0 0 1rem 0;
    color: #1E293B;
    font-weight: 700;
    font-size: 1rem;
}

.floating-legend .legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-legend .legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-legend .legend-color.launched {
    background: #FBBF24;
}

.floating-legend .legend-color.tbl {
    background: #10B981;
}

.floating-legend .legend-color.other {
    background: #CBD5E1;
}

.floating-legend .legend-item span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Map Loading Indicator */
.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.map-loading .loading-spinner {
    margin-bottom: 1rem;
}

.map-loading p {
    margin: 0;
    color: #64748B;
    font-weight: 600;
}

/* Map Error Message */
.map-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.map-error .error-content i {
    font-size: 2rem;
    color: #EF4444;
    margin-bottom: 1rem;
}

.map-error .error-content h4 {
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.map-error .error-content p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

.map-error .retry-btn {
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-error .retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* Simple Map */
.simple-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    border-radius: 15px;
    padding: 2rem;
    overflow-y: auto;
}

.simple-map-content h4 {
    text-align: center;
    color: #1E293B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.district-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.district-card.launched {
    border-color: #FBBF24;
    background: rgba(251, 191, 36, 0.1);
}

.district-card.tbl {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.district-card.other {
    border-color: #CBD5E1;
    background: rgba(203, 213, 225, 0.1);
}

.district-name {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.district-status {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

/* Fallback Map */
.fallback-map {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    border-radius: 15px;
}

.fallback-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fallback-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.fallback-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.fallback-content h4 {
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.fallback-content p {
    color: #64748B;
    margin-bottom: 2rem;
}

.fallback-legend {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.fallback-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #475569;
}

.fallback-legend .legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.fallback-legend .legend-color.launched {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
}

.fallback-legend .legend-color.planned {
    background: linear-gradient(45deg, #10B981, #059669);
}

.fallback-legend .legend-color.other {
    background: linear-gradient(45deg, #CBD5E1, #94A3B8);
}

.fallback-content .retry-btn {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fallback-content .retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.map-tooltip .tooltip-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.map-tooltip .tooltip-content p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Map Popup */
.district-popup .maplibregl-popup-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.district-popup .maplibregl-popup-close-button {
    color: #64748B;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.district-popup .maplibregl-popup-close-button:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #1E293B;
}

.popup-content h4 {
    margin: 0 0 0.5rem 0;
    color: #1E293B;
    font-size: 1.1rem;
    font-weight: 700;
}

.popup-content .status-launched {
    color: #FBBF24;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.popup-content .status-planned {
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.popup-content .status-other {
    color: #64748B;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.map-info-panel {
    height: 100%;
}

.map-info-panel .info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 500px;
}

.map-info-panel .info-card h4 {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.district-details {
    color: #64748B;
    line-height: 1.6;
}

.district-details .default-message {
    text-align: center;
    padding: 2rem 1rem;
    color: #94A3B8;
}

.district-details .default-message i {
    font-size: 2rem;
    color: #38BDF8;
    margin-bottom: 1rem;
    display: block;
}

.district-details .default-message p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.district-info-content {
    margin-top: 1rem;
}

.district-info-content .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.district-info-content .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Statistics Dashboard */
.statistics-dashboard {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    position: relative;
    z-index: 10;
}

.statistics-dashboard .section-title {
    margin-bottom: 1rem;
}

.statistics-dashboard .title-main {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
}

.statistics-dashboard .title-highlight {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.stat-card .stat-number {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #64748B;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-out;
    animation: progressFill 2s ease-out 1s both;
}

/* District Lists */
.district-lists {
    padding: 4rem 0;
    background: #FFFFFF;
    position: relative;
    z-index: 10;
}

.district-section {
    height: 100%;
}

.district-section .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.district-section .section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.district-section .section-icon i {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.district-section .section-title {
    background: linear-gradient(45deg, #1E293B, #0F172A, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.district-section .section-description {
    color: #64748B;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.district-grid::-webkit-scrollbar {
    width: 6px;
}

.district-grid::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 10px;
}

.district-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #38BDF8, #0EA5E9);
    border-radius: 10px;
}

.district-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.district-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.district-item.launched {
    border-left: 4px solid #FBBF24;
}

.district-item.planned {
    border-left: 4px solid #10B981;
}

.district-item .district-name {
    color: #1E293B;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.district-item .district-status {
    color: #64748B;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 50%, #38BDF8 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #FFFFFF, #F8FAFC);
    color: #1E293B;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-primary {
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Animations */
@keyframes progressFill {
    from { width: 0%; }
    to { width: var(--target-width, 100%); }
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .presence-hero {
        padding: 6rem 0 3rem;
    }
    
    .presence-hero .title-main,
    .presence-hero .title-highlight {
        font-size: 2.5rem;
    }
    
    .presence-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .presence-hero .stat-number {
        font-size: 2rem;
    }
    
    .presence-hero .up-map {
        height: 300px;
    }
    
    .interactive-map-section .title-main,
    .interactive-map-section .title-highlight,
    .statistics-dashboard .title-main,
    .statistics-dashboard .title-highlight {
        font-size: 2rem;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .interactive-map-container {
        height: 400px;
    }
    
    .map-info-panel .info-card {
        height: auto;
        margin-top: 2rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .district-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .presence-hero .title-main,
    .presence-hero .title-highlight {
        font-size: 2rem;
    }
    
    .presence-hero .hero-description {
        font-size: 1rem;
    }
    
    .presence-hero .stat-number {
        font-size: 1.8rem;
    }
    
    .presence-hero .up-map {
        height: 250px;
    }
    
    .interactive-map-container {
        height: 350px;
    }
    
    .map-controls {
        top: 10px;
        right: 10px;
    }
    
    .map-control-btn {
        width: 35px;
        height: 35px;
    }
    
    .map-control-btn i {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .district-grid {
        grid-template-columns: 1fr;
    }
}

.footer .footer-links {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-end;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer .footer-links a:hover {
    color: var(--accent-info);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }
.gap-4 { gap: var(--spacing-lg); }
.gap-5 { gap: var(--spacing-xl); }

.text-primary { color: var(--primary-gradient-end); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--text-white); }
.text-dark { color: var(--text-primary); }

.bg-primary { background: var(--primary-gradient); }
.bg-light { background: var(--neutral-light); }
.bg-white { background: var(--neutral-white); }
.bg-dark { background: var(--neutral-dark); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.transition { transition: var(--transition-normal); }

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--accent-info);
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Override existing hero styles for mobile */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
    
    .btn {
        flex: 1 !important;
        max-width: 200px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .image-container {
        height: 400px;
    }
    
    .main-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card.card-1 {
        top: 5%;
        right: 5%;
        width: 140px !important;
        height: 160px !important;
    }
    
    .floating-card.card-2 {
        top: 25%;
        right: 25%;
        width: 140px !important;
        height: 160px !important;
    }
    
    .floating-card.card-3 {
        top: 45%;
        right: 10%;
        width: 160px !important;
        height: 180px !important;
    }
    
    /* Presence Banner Mobile */
    .presence-title {
        font-size: var(--font-size-3xl);
    }
    
    .presence-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .presence-buttons .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .presence-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-badge {
        justify-content: center;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Bar Chart Mobile */
    .chart-container {
        padding: 1.5rem;
    }
    
    .chart-header h4 {
        font-size: var(--font-size-lg);
    }
    
    .bar-chart {
        gap: 1rem;
    }
    
    .chart-bar {
        height: 16px;
    }
    
    .bar-percentage {
        font-size: 0.7rem;
    }
    
    /* Vertical Chart Mobile */
    .vertical-chart {
        height: 250px;
        gap: 0.5rem;
    }
    
    .chart-bars {
        gap: 1rem;
    }
    
    .bar-value {
        font-size: 0.7rem;
        top: -20px;
    }
    
    .bar-label {
        font-size: 0.7rem;
    }
    
    .y-label {
        font-size: 0.7rem;
    }
    
    .scale-mark {
        font-size: 0.65rem;
    }
    
    /* Therapeutic Segments Extra Small Mobile */
    .segments-grid {
        gap: 1rem;
        padding: 0 0.8rem 1rem 0.8rem;
    }
    
    .segment-card {
        flex: 0 0 280px;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }
    
    .segment-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .card-image {
        height: 140px;
    }
    
    .overlay-content {
        padding: 0.6rem 1rem;
    }
    
    .overlay-content i {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .overlay-content span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .segment-icon {
        display: none !important;
    }
    
    .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .segment-icon {
        display: none !important;
    }
    
    .card-content h3 {
        font-size: var(--font-size-base);
        margin-top: 0.25rem;
    }
    
    .card-stats {
        gap: 0.25rem;
    }
    
    .stat {
        padding: 0.25rem;
    }
    
    .stat-number {
        font-size: var(--font-size-sm);
    }
    
    .overlay-content {
        padding: 0.75rem 1rem;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content span {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Value Blocks */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
    }
    
    .value-card {
        animation-delay: 0.4s !important;
        padding: 1rem !important;
    }
    
    .card-image {
        height: 80px;
    }
    
    .image-container {
        width: 60px;
        height: 60px;
    }
    
    .card-content {
        padding: 0.8rem;
    }
    
    .certificate-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }
    
    .card-content h3 {
        font-size: var(--font-size-base);
    }
    
    .card-content p {
        font-size: var(--font-size-xs);
        margin-bottom: 0.8rem;
    }
    
    .feature-item {
        font-size: var(--font-size-xs);
        padding: 0.25rem 0.5rem;
    }
}

/* Enhanced Floating Cards Styles - White Theme */
.floating-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(29, 78, 216, 0.2) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    animation: floatCard 6s ease-in-out infinite !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    color: #1E293B !important;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(29, 78, 216, 0.4) !important;
}

.floating-card.card-1 {
    top: 5%;
    right: 10%;
    width: 160px !important;
    height: 180px !important;
    z-index: 3;
    animation-delay: 0s !important;
}

.floating-card.card-2 {
    top: 25%;
    right: 30%;
    width: 160px !important;
    height: 180px !important;
    z-index: 2;
    animation-delay: 2s !important;
}

.floating-card.card-3 {
    top: 45%;
    right: 15%;
    width: 180px !important;
    height: 200px !important;
    z-index: 1;
    animation-delay: 4s !important;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

/* Card Content */
.floating-card .card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Card Icon */
.floating-card .card-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3) !important;
    animation: pulse 3s ease-in-out infinite !important;
}

/* Card Stats */
.floating-card .card-stats {
    text-align: center;
    margin-bottom: 1rem;
}

.floating-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1E293B, #0F172A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.floating-card .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Description */
.floating-card .card-description {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
}

/* Card Progress */
.floating-card .card-progress {
    height: 4px;
    background: rgba(29, 78, 216, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.floating-card .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1E293B, #0F172A);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-out infinite;
    position: relative;
}

.floating-card .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

/* Enhanced Animations */
@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(-1deg); 
    }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Quality Assurance Responsive */
@media (max-width: 768px) {
    .quality-assurance {
        padding: 3rem 0;
    }
    
    .quality-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .quality-card {
        padding: 0.8rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .quality-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
    }
    
    .certificate-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.4rem;
        border-radius: 50%;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    }
    
    .card-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        color: #1E293B;
        font-weight: 600;
    }
    
    .card-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
        color: #64748B;
    }
    
    .certificate-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.4rem;
        background: linear-gradient(45deg, #3B82F6, #1D4ED8);
        color: white;
        border-radius: 15px;
        font-weight: 600;
    }
    
    /* Third card spans full width */
    .quality-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
        border: 2px solid rgba(59, 130, 246, 0.2);
        padding: 1rem;
        min-height: 180px;
    }
    
    .quality-card:nth-child(3) .certificate-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.6rem;
    }
    
    .quality-card:nth-child(3) .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .quality-card:nth-child(3) .card-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .quality-card:nth-child(3) .certificate-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.6rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .quality-assurance {
        padding: 1.5rem 0;
    }
    
    .quality-assurance .section-header h2 {
        font-size: 1.5rem;
    }
    
    .quality-assurance .section-header p {
        font-size: 0.8rem;
    }
    
    .quality-grid {
        gap: 0.8rem;
        padding: 0 0.8rem 1rem 0.8rem;
    }
    
    .quality-card {
        flex: 0 0 260px;
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    .certificate-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.8rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .certificate-badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

/* Presence Page Styles */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner/presence%20screen%20banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.7) 0%, rgba(59, 130, 246, 0.6) 50%, rgba(37, 99, 235, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats-container {
    margin-top: 3rem;
}

.hero-section .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-section .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.hero-section .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section .stat-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.hero-section .stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    line-height: 1;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.presence-section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.title-main {
    color: #1e293b;
}

.title-highlight {
    color: #3b82f6;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.district-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.district-card.active {
    border-left: 5px solid #28a745;
    border-color: #28a745;
}

.district-card.planned {
    border-left: 5px solid #f59e0b;
    border-color: #f59e0b;
}

.card-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #22c55e;
}

.status-badge.planned {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.district-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.district-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.district-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.district-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
    border-color: #3b82f6;
}

.district-item i {
    color: #3b82f6;
    width: 16px;
    font-size: 0.9rem;
}

.district-item span {
    font-weight: 600;
    color: #1e293b;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile Responsive for Presence Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats-container {
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .hero-section .stat-card .stat-number {
        font-size: 2.5rem !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: none !important;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .district-card {
        margin-bottom: 2rem;
    }
    
    .district-title {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .stat-icon i {
        font-size: 1.25rem;
    }
    
    .hero-section .stat-card .stat-number {
        font-size: 2rem !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: none !important;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .district-list {
        gap: 0.5rem;
    }
    
    .district-item {
        padding: 0.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Presence Banner Mobile Responsive */
@media (max-width: 991px) {
    .presence-banner {
        padding: 2rem 0;
    }
    
    .presence-banner .row {
        flex-direction: column;
    }
    
    .presence-banner .col-lg-8,
    .presence-banner .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }
    
    .presence-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .presence-badge {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.2);
        color: #3B82F6;
        padding: 0.4rem 1rem;
        border-radius: 25px;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .presence-badge i {
        color: #F59E0B;
    }
    
    .presence-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .presence-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: #64748B;
    }
    
    .presence-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .feature-badge {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(255, 255, 255, 0.8);
        padding: 0.8rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .feature-badge i {
        color: #10B981;
        font-size: 1.1rem;
    }
    
    .feature-badge span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1E293B;
    }
    
    .presence-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .presence-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .presence-buttons .btn-primary {
        background: linear-gradient(135deg, #3B82F6, #1D4ED8);
        border: none;
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    
    .presence-buttons .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    
    .presence-buttons .btn-outline-light {
        background: white;
        border: 2px solid #E2E8F0;
        color: #1E293B;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .presence-buttons .btn-outline-light:hover {
        background: #F8FAFC;
        border-color: #CBD5E1;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .presence-buttons .btn i {
        margin-right: 0.5rem;
    }
    
    /* Hide chart on mobile/tablet */
    .presence-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .presence-banner {
        padding: 1.5rem 0;
    }
    
    .presence-title {
        font-size: 1.6rem;
    }
    
    .presence-description {
        font-size: 0.85rem;
    }
    
    .presence-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-badge {
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    .feature-badge span {
        font-size: 0.85rem;
    }
    
    .presence-buttons {
        gap: 0.8rem;
    }
    
    .presence-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .presence-banner {
        padding: 1rem 0;
    }
    
    .presence-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .presence-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .presence-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .presence-features {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-badge {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .feature-badge i {
        font-size: 1rem;
    }
    
    .feature-badge span {
        font-size: 0.8rem;
    }
    
    .presence-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        max-width: 260px;
    }
}

/* Presence Page Responsive Styles */
@media (max-width: 768px) {
    .interactive-map-container {
        height: 400px;
    }
    
    .map-controls {
        bottom: 10px;
        right: 10px;
    }
    
    .map-control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .floating-legend {
        top: 10px;
        right: 10px;
        padding: 1rem;
        min-width: 160px;
    }
    
    .floating-legend .legend-header h5 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .floating-legend .legend-item span {
        font-size: 0.8rem;
    }
    
    .floating-legend .legend-color {
        width: 14px;
        height: 14px;
    }
}

/* Hero Section Responsive Styles */
@media (max-width: 768px) {
    .hero-3d-background {
        opacity: 0.08;
    }
    
    .model-bg-image {
        max-width: 80%;
        max-height: 80%;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-element {
        font-size: 2rem;
    }
}

/* Enhanced Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748B;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.trust-item i {
    color: #3B82F6;
    font-size: 1rem;
}

/* Enhanced Hero Buttons */
.hero-btn-primary {
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-btn-secondary {
    border: 2px solid #3B82F6;
    color: #3B82F6;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* ========================================
   PRESENCE PAGE MOBILE-FIRST REDESIGN
   ======================================== */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    /* Hero Section Mobile Optimization */
    .hero-section {
        padding: 80px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Stats Container Mobile Layout */
    .hero-stats-container {
        padding: 0 1rem !important;
    }
    
    .hero-stats-container .row {
        gap: 1rem !important;
        margin: 0 !important;
    }
    
    .hero-stats-container .col-md-4 {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        margin-bottom: 1rem !important;
    }
    
    /* Third card spans full width on tablet */
    .hero-stats-container .col-md-4:nth-child(3) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Stat Cards Mobile Design - Hide Icons on Tablet */
    .hero-section .stat-card {
        padding: 1.5rem 1rem !important;
        border-radius: 16px !important;
        min-height: auto !important;
        height: auto !important;
        text-align: center !important;
    }
    
    /* Hide icons on tablet and mobile */
    .hero-section .stat-icon {
        display: none !important;
    }
    
    .hero-section .stat-card .stat-number {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-section .stat-card .stat-label {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Hero Section Ultra-Mobile Optimization */
    .hero-section {
        padding: 25px 0 20px !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.3 !important;
    }
    
    /* Stats Container Mobile Layout */
    .hero-stats-container {
        padding: 0 0.5rem !important;
    }
    
    .hero-stats-container .row {
        gap: 0.4rem !important;
    }
    
    /* Single column layout for mobile */
    .hero-stats-container .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.4rem !important;
    }
    
    /* Micro-Compact Stat Cards Mobile Design - No Icons */
    .hero-section .stat-card {
        padding: 0.5rem !important;
        border-radius: 8px !important;
        display: block !important;
        text-align: center !important;
        min-height: auto !important;
        height: auto !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Hide icons on mobile */
    .hero-section .stat-icon {
        display: none !important;
    }
    
    .hero-section .stat-card .stat-number {
        font-size: 1.2rem !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
        font-weight: 700 !important;
    }
    
    .hero-section .stat-card .stat-label {
        font-size: 0.6rem !important;
        line-height: 1 !important;
        margin-bottom: 0 !important;
        font-weight: 500 !important;
    }
    
    /* Card content centered for mobile */
    .hero-section .stat-card > div {
        display: block !important;
        text-align: center !important;
    }
}

/* Small Mobile Styles (360px and below) */
@media (max-width: 360px) {
    .hero-section {
        padding: 20px 0 15px !important;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.7rem !important;
        padding: 0 0.25rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-section .stat-card {
        padding: 0.4rem !important;
        border-radius: 6px !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Hide icons on small mobile */
    .hero-section .stat-icon {
        display: none !important;
    }
    
    .hero-section .stat-card .stat-number {
        font-size: 1rem !important;
    }
    
    .hero-section .stat-card .stat-label {
        font-size: 0.55rem !important;
    }
}

/* ========================================
   PRESENCE PAGE SECTIONS MOBILE OPTIMIZATION
   ======================================== */

/* Tablet Styles for Other Sections */
@media (max-width: 768px) {
    /* Presence Section Mobile */
    .presence-section {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-description {
        font-size: 1rem !important;
        padding: 0 1rem !important;
    }
    
    /* District Cards Mobile */
    .district-card {
        margin-bottom: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .district-card .card-body {
        padding: 1.5rem !important;
    }
    
    .district-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .district-list {
        gap: 0.5rem !important;
    }
    
    .district-item {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0 !important;
    }
    
    .contact-card {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .contact-item {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Mobile Styles for Other Sections */
@media (max-width: 480px) {
    /* Presence Section Mobile */
    .presence-section {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section-description {
        font-size: 0.9rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* District Cards Mobile */
    .district-card {
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }
    
    .district-card .card-body {
        padding: 1rem !important;
    }
    
    .district-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .district-list {
        gap: 0.4rem !important;
    }
    
    .district-item {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 40px 0 !important;
    }
    
    .contact-card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    
    .contact-item {
        padding: 0.6rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 0.9rem !important;
    }
}

/* Small Mobile Styles for Other Sections */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-description {
        font-size: 0.85rem !important;
    }
    
    .district-card .card-body {
        padding: 0.75rem !important;
    }
    
    .district-title {
        font-size: 1rem !important;
    }
    
    .district-item {
        padding: 0.35rem 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    .contact-card {
        padding: 0.75rem !important;
    }
    
    .contact-item {
        padding: 0.5rem !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================
   FOOTER MOBILE OPTIMIZATION
   ======================================== */

/* Tablet Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .footer .container {
        padding: 0 1rem !important;
    }
    
    .footer .row {
        gap: 2rem !important;
    }
    
    .footer h5 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer .footer-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .footer .footer-links a {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .footer .contact-item {
        padding: 0.5rem 0 !important;
        margin-bottom: 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    .footer .social-links {
        gap: 1rem !important;
    }
    
    .footer .social-links a {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .footer-bottom {
        padding: 1rem 0 !important;
        margin-top: 2rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* Mobile Footer Styles */
@media (max-width: 480px) {
    .footer {
        padding: 15px 0 8px !important;
    }
    
    .footer .container {
        padding: 0 0.5rem !important;
    }
    
    .footer .row {
        gap: 1rem !important;
        flex-direction: column !important;
    }
    
    /* Hide footer sections on mobile to save space - Target specific columns */
    .footer .col-lg-4:first-child,
    .footer .col-lg-3:last-child,
    .footer .col-lg-3:nth-child(3) {
        display: none !important; /* Hide brand section and extra contact sections */
    }
    
    /* Keep only Quick Links and main Contact Info visible */
    .footer .col-lg-2.col-md-6,
    .footer .col-lg-3.col-md-6:first-of-type {
        display: block !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .footer h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .footer .footer-links {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        justify-content: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer .footer-links li {
        margin: 0 !important;
    }
    
    .footer .footer-links a {
        padding: 0.3rem 0 !important;
        font-size: 0.75rem !important;
        text-decoration: none !important;
        color: #ffffff !important;
        transition: color 0.2s ease !important;
    }
    
    .footer .footer-links a:hover {
        color: #3B82F6 !important;
    }
    
    .footer .contact-item {
        padding: 0.4rem 0 !important;
        margin-bottom: 0.5rem !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .footer .contact-item i {
        width: 16px !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .footer-divider {
        margin: 1rem 0 0.5rem 0 !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .footer .row.align-items-center {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .footer .copyright,
    .footer .developed-by {
        font-size: 0.65rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3 !important;
    }
    
    .footer .footer-links:last-child {
        justify-content: center !important;
        gap: 0.8rem !important;
    }
    
    .footer .footer-links:last-child a {
        font-size: 0.6rem !important;
        padding: 0.2rem 0 !important;
    }
}

/* Small Mobile Footer Styles */
@media (max-width: 360px) {
    .footer {
        padding: 12px 0 6px !important;
    }
    
    .footer .container {
        padding: 0 0.4rem !important;
    }
    
    .footer .row {
        gap: 0.8rem !important;
    }
    
    .footer h5 {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .footer .footer-links {
        gap: 0.6rem !important;
    }
    
    .footer .footer-links a {
        font-size: 0.7rem !important;
        padding: 0.25rem 0 !important;
    }
    
    .footer .contact-item {
        font-size: 0.75rem !important;
        padding: 0.35rem 0 !important;
        margin-bottom: 0.4rem !important;
    }
    
    .footer .copyright,
    .footer .developed-by {
        font-size: 0.6rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .footer .footer-links:last-child {
        gap: 0.6rem !important;
    }
    
    .footer .footer-links:last-child a {
        font-size: 0.55rem !important;
        padding: 0.15rem 0 !important;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 30, 58, 0.9) 0%, rgba(29, 78, 216, 0.8) 100%);
}

.contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.contact-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-hero-badge i {
    font-size: 18px;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-hero-title .title-main {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-title .title-highlight {
    display: block;
    background: linear-gradient(45deg, #60A5FA, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.feature-badge i {
    font-size: 16px;
    color: #60A5FA;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.contact-office-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(11, 30, 58, 0.15);
    border: 1px solid rgba(11, 30, 58, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(11, 30, 58, 0.15);
}

.office-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.office-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary-gradient-end);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.office-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.office-details {
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-item i {
    color: var(--primary-gradient-end);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.detail-item div strong {
    color: #0F172A;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.detail-item div {
    color: #475569;
    line-height: 1.6;
    font-size: 14px;
}

.office-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.business-hours-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(11, 30, 58, 0.15);
    border: 1px solid rgba(11, 30, 58, 0.1);
    text-align: center;
}

.hours-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.hours-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.hours-item {
    margin-bottom: 20px;
}

.hours-day {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
    font-size: 16px;
}

.hours-time {
    color: var(--primary-gradient-end);
    font-weight: 500;
    font-size: 16px;
}

.hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary-gradient-end);
    padding: 16px;
    border-radius: 12px;
    margin-top: 24px;
    font-size: 14px;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    overflow: hidden;
}

.contact-form-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-form-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(29, 78, 216, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(11, 30, 58, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-form-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

.contact-form-container {
    position: relative;
    z-index: 2;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(11, 30, 58, 0.15);
    border: 1px solid rgba(11, 30, 58, 0.1);
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.form-label i {
    color: var(--primary-gradient-end);
}

.form-control {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #FAFBFC;
}

.form-control:focus {
    border-color: var(--primary-gradient-end);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
    background: white;
}

.form-control.is-invalid {
    border-color: #EF4444;
}

.invalid-feedback {
    color: #EF4444;
    font-size: 14px;
    margin-top: 8px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
}

.form-note i {
    color: #10B981;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(11, 30, 58, 0.15);
    border: 1px solid rgba(11, 30, 58, 0.1);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sidebar-header i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.sidebar-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.quick-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary-gradient-end);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quick-contact-item div strong {
    color: #0F172A;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.quick-contact-item div p {
    color: #475569;
    margin: 0;
    font-size: 14px;
}

.expectation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.expectation-item i {
    color: #10B981;
    font-size: 16px;
}

.expectation-item span {
    color: #475569;
    font-size: 14px;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
    }
    
    .contact-hero-features {
        gap: 16px;
    }
    
    .feature-badge {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .contact-office-card {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* Contact Page Animations */
@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
