@media (max-width: 768px) {
    footer:not(#whatsappButton):not(.whatsapp-float):not([class*="whatsapp"]):not(a[href*="whatsapp"]) {
        display: none !important;
    }
}
@media (max-width: 768px) {
    #whatsappButton,
    [class*="whatsapp"],
    .whatsapp-float,
    a[href*="whatsapp"] {
        left: 15px !important;
        right: auto !important;
    }
}
/* Responsive overrides for mobile/tablet only */
@media (max-width: 768px) {
    .container,
    [class*="container"],
    .row {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    section {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    /* Fix min-height for sections that use large values */
        #hero {
            min-height: 60vh !important;
        }
        body {
            overflow-x: clip !important;
        }
        /* Logo mobile fix */
        img[src*="logo2"] {
            max-width: 100px !important;
        }
}
@media (max-width: 480px) {
    img[src*="logo2"] {
        max-width: 70px !important;
    }
}
@media (max-width: 768px) {
    img,
    video {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
}
/* ============================================================
   RUN RADIOLOGY CENTER - MODERN CSS STYLESHEET
   Mobile-First Responsive Design
   Version: 2.0
   ============================================================ */

/* ============================================================
   0. GLOBAL SMOOTH SCROLLING
   ============================================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES) - RELATIVE UNITS
   ============================================================ */

:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e3a8a;
    
    /* Accent Colors */
    --accent-burgundy: #A0275B;
    --accent-burgundy-light: #be185d;
    --accent-burgundy-dark: #831843;
    
    /* Gray Palette */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* White & Black */
    --white: #ffffff;
    --black: #000000;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    
    /* Spacing - Relative Units */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius - Relative Units */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Font Sizes - Relative Units */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Container Widths */
    --container-sm: 100%;
    --container-md: 100%;
    --container-lg: 100%;
    --container-xl: 1140px;
    --container-2xl: 1320px;
}

/* ============================================================
   2. BUTTON STYLES - RESPONSIVE
   ============================================================ */

/* Base Button */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    min-height: 3rem;
    box-sizing: border-box;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

/* Primary Button (Blue) */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

/* Secondary Button (Burgundy) */
.btn-secondary {
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-burgundy-light) 100%);
    color: var(--white);
    border-color: var(--accent-burgundy);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-burgundy-dark) 0%, var(--accent-burgundy) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

/* White/Outline Button */
.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-sm);
    min-height: 2.5rem;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: var(--text-lg);
    min-height: 3.5rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================================
   3. CARD STYLES - RESPONSIVE
   ============================================================ */

/* Base Card */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-burgundy));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

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

.service-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-size: 1.75rem;
}

.service-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.service-card-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Enhanced Service Cards with Background Images */
.service-card-enhanced {
    position: relative;
    min-height: 23.75rem; /* 380px in rem */
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.4s ease;
    z-index: 0;
}

.service-card-enhanced:hover::before {
    transform: scale(1.1);
}

.service-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(160, 39, 91, 0.3);
}

.service-card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(2px);
}

.service-icon-large {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    font-weight: 600;
    border-radius: 3.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-btn:hover {
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-btn i {
    transition: transform 0.3s ease;
}

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

/* ============================================================
   4. FORM STYLES
   ============================================================ */

/* Form Group */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-family: var(--font-sans);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-input:hover {
    border-color: var(--gray-400);
}

.form-input::placeholder {
    color: var(--gray-400);
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-family: var(--font-sans);
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea:hover {
    border-color: var(--gray-400);
}

/* Form States */
.form-input.error,
.form-textarea.error {
    border-color: var(--error);
}

.form-input.success,
.form-textarea.success {
    border-color: var(--success);
}

.form-error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

.form-success-message {
    color: var(--success);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

/* ============================================================
   5. ANIMATION & UTILITY CLASSES
   ============================================================ */

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

.fadeInUp {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slideIn {
    animation: slideIn 0.6s ease-out backwards;
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slideInRight {
    animation: slideInRight 0.6s ease-out backwards;
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scaleIn {
    animation: scaleIn 0.5s ease-out backwards;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ============================================================
   6. RESPONSIVE DESIGN (MOBILE-FIRST) - ENHANCED
   ============================================================ */

/* Base styles are for mobile (320px+) */

/* Extra Small devices (phones, 320px and up) */
@media (min-width: 320px) {
    :root {
        --container-sm: 100%;
        --text-xs: 0.75rem;
        --text-sm: 0.875rem;
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.25rem;
        --text-2xl: 1.5rem;
        --text-3xl: 1.875rem;
        --text-4xl: 2.25rem;
        --text-5xl: 3rem;
        --text-6xl: 3.75rem;
    }
    
    .btn {
        font-size: var(--text-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-card-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .service-card-title {
        font-size: var(--text-lg);
    }
}

/* Small tablets and large phones (576px and up) */
@media (min-width: 576px) {
    :root {
        --spacing-sm: 1.25rem;
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
        --spacing-2xl: 5rem;
        --container-md: 540px;
    }
    
    .btn {
        font-size: var(--text-base);
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .service-card-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
    
    .service-card-title {
        font-size: var(--text-xl);
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    :root {
        --container-lg: 720px;
    }
    
    .btn-lg {
        padding: 1.125rem 2.25rem;
        font-size: var(--text-lg);
    }
    
    .service-card-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.75rem;
    }
    
    .service-card-title {
        font-size: var(--text-2xl);
    }
}

/* Small desktops (992px and up) */
@media (min-width: 992px) {
    :root {
        --spacing-md: 2.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 6rem;
        --container-xl: 960px;
    }
    
    .container-custom {
        max-width: var(--container-xl);
        margin: 0 auto;
        padding: 0 var(--spacing-md);
    }
}

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
    :root {
        --container-2xl: 1140px;
    }
    
    .container-custom {
        max-width: var(--container-2xl);
    }
}

/* Extra large desktops (1400px and up) */
@media (min-width: 1400px) {
    :root {
        --container-2xl: 1320px;
    }
    
    .container-custom {
        max-width: var(--container-2xl);
    }
}

/* Ultra wide screens (1600px and up) */
@media (min-width: 1600px) {
    :root {
        --container-2xl: 1440px;
    }
    
    .container-custom {
        max-width: var(--container-2xl);
    }
}

/* ============================================================
   7. UTILITY CLASSES
   ============================================================ */

/* Display */
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none; }

/* Flexbox */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Colors */
.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--accent-burgundy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-600); }

.bg-primary { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--accent-burgundy); }
.bg-white { background-color: var(--white); }
.bg-gray-light { background-color: var(--gray-50); }

/* Spacing Utilities */
.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); }

.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); }

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

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

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Border Radius */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Transitions */
.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* Hover Effects */
.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: transform var(--transition-base);
}

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

/* ============================================================
   15. HERO SECTION SPECIFIC STYLES - RESPONSIVE
   ============================================================ */

#hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero .smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive hero height adjustments */
@media (max-width: 768px) {
    #hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    #hero {
        min-height: 50vh;
        padding: var(--spacing-md) 0;
    }
}

/* Hero Background Image Effect */
#hero img {
    animation: subtle-zoom 20s ease-in-out infinite alternate;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Hero Text Shadow for Better Readability */
#hero h1 {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    font-size: var(--text-4xl);
    line-height: 1.2;
}

#hero p {
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: var(--text-lg);
    line-height: 1.6;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    #hero h1 {
        font-size: var(--text-3xl);
    }
    
    #hero p {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: var(--text-2xl);
    }
    
    #hero p {
        font-size: var(--text-sm);
    }
}

/* Scroll Indicator Animation */
.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Hero Buttons Enhanced Hover */
#hero .btn-primary:hover,
#hero .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Feature Pills Animation on Hover */
#hero .bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive Hero Buttons */
@media (max-width: 480px) {
    #hero .btn-primary,
    #hero .btn-white {
        width: 100%;
        justify-content: center;
        margin-bottom: var(--spacing-sm);
    }
    
    #hero .flex-col.sm\\:flex-row {
        flex-direction: column;
    }
}

/* ============================================================
   FOOTER FIX - FORCE DARK BACKGROUND AND WHITE TEXT
   ============================================================ */

/* Force dark background */
footer {
    background-color: #1a1a1a !important;
}

/* Force all text to white */
footer * {
    color: #ffffff !important;
}

/* Force headings to white with bold weight */
footer h3,
footer h4,
footer h2 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Force links to light gray with hover effect */
footer a {
    color: #e5e5e5 !important;
}

footer a:hover {
    color: #3b82f6 !important;
}

/* Override all gray text classes */
.text-gray-300,
.text-gray-400,
.text-gray-500,
.text-gray-600 {
    color: #ffffff !important;
}

/* Ensure footer columns align at the top so left/right blocks are on the same horizontal line */
footer .container > .grid {
    align-items: start;
    align-content: start;
}

/* Ensure individual footer columns don't force extra vertical offset */
footer .container > .grid > div {
    margin-bottom: 0 !important;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */
