/**
 * FreightAssure - Main Stylesheet
 * Advanced Carrier Performance Platform
 */

/* Custom Properties */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --body-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* CLEAN LOGO STYLING - NO NAVBAR-BRAND */
.logo-img {
    height: 65px !important;
    width: auto !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10 !important;
    position: relative !important;
    cursor: pointer !important;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.5)) brightness(1.1) !important;
    transform: scale(1.08) !important;
}
body.security-page {
    background: #101828;
    color: #f1f5f9;
}

/* Navbar bez bele linije */
.navbar, .navbar-header {
    border-bottom: none !important;
    background: #101828 !important;
}

/* Svetlo plavo Log In dugme */
.btn-primary {
    background: #38bdf8 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none;
}
.btn-primary:hover {
    background: #0ea5e9 !important;
    color: #fff !important;
}

/* Force remove any Bootstrap background on navbar elements */

/* Icon Colors Fix */
.feature-icon .fas,
.feature-icon i {
    color: white !important;
}

.slider-btn .fas,
.slider-btn i {
    color: var(--accent-color) !important;
}

.hero-actions .fas,
.hero-actions i {
    color: white !important;
}

/* Ensure primary colored icons stay primary */
.text-primary.fas,
.text-primary i,
i.text-primary {
    color: var(--accent-color) !important;
}

/* Fix all FontAwesome icons without explicit color */
.fas:not(.text-primary):not(.text-success):not(.text-warning):not(.text-white):not(.text-danger) {
    color: var(--accent-color) !important;
}

/* Testimonial Cards */
.testimonial-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    height: 100% !important;
}

.testimonial-card blockquote {
    color: #374151 !important;
    font-style: italic !important;
    margin-bottom: 1.5rem !important;
}

.testimonial-card cite {
    color: #1f2937 !important;
}

.testimonial-card cite strong {
    color: #111827 !important;
}

.testimonial-card .text-muted {
    color: #6b7280 !important;
}

/* Contact Form Enhancements */
.contact-page .contact-form-card {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 2px solid rgba(14, 165, 233, 0.4) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.contact-page .form-control,
.contact-page .form-select {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.4) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
    background: rgba(15, 23, 42, 1) !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.3) !important;
}

.contact-page .form-label {
    color: #e2e8f0 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

/* Contact Highlights Box */
.contact-highlights-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1)) !important;
    border: 1px solid rgba(14, 165, 233, 0.4) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
}

.contact-highlights-box .text-primary {
    color: #38bdf8 !important;
    font-size: 0.9rem !important;
}

/* Footer Styling */
.footer a.text-light {
    color: #e2e8f0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer a.text-light:hover {
    color: #38bdf8 !important;
    text-decoration: none !important;
}

.footer .text-light {
    color: #e2e8f0 !important;
}

.footer .social-links a:hover {
    color: #38bdf8 !important;
    transform: translateY(-2px) !important;
}

/* Fallback CSS Hexagon Logo (if image not available) */
.logo-container {
    display: flex !important;
    align-items: center !important;
    height: 45px !important;
}

.logo-hexagon {
    position: relative !important;
    width: 40px !important;
    height: 35px !important;
    background: linear-gradient(135deg, #1e40af, #0ea5e9) !important;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.4) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.logo-hexagon:hover {
    transform: scale(1.1) rotate(3deg) !important;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.6) !important;
    background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
}

.logo-text {
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
    font-family: 'Inter', sans-serif !important;
}

.navbar-brand:hover .logo-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6) !important;
}

/* Executive Black Theme for Home Page */
.home-page {
    --primary-color: #0f172a !important;  /* Deep black */
    --primary-dark: #020617 !important;   /* Deeper black */  
    --secondary-color: #0ea5e9 !important; /* Premium blue */
    --secondary-dark: #0284c7 !important;  /* Darker blue */
    --accent-color: #38bdf8 !important;    /* Light blue accent */
    --text-primary: #ffffff !important;    /* Pure white text */
    --text-secondary: #cbd5e1 !important;  /* Light gray text */
    --body-bg: #0f172a !important;        /* Deep black background */
    --border-color: #334155 !important;    /* Dark gray borders */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

/* Base Styles */
body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--body-bg);
	
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.display-4, .display-5 {
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.brand-text {
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    padding-top: 80px; /* Account for fixed navbar */
}

/* Compact Hero Section with Slider */
.hero-section-compact {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Executive Black Hero Section */
.home-page .hero-section-compact {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(15, 23, 42, 0.95) 100%) !important;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
     height: calc(100vh - 56px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
}

/* Executive Black Enhanced Slides - Darker for Text Readability */
.home-page .slide {
    filter: brightness(0.5) contrast(1.3) saturate(1.2) !important;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.75) 0%,
        rgba(29, 78, 216, 0.85) 50%,
        rgba(15, 23, 42, 0.80) 100%
    );
}

/* Executive Black Slide Overlay - Darker for Better Text Contrast */
.home-page .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 25%,
        rgba(14, 165, 233, 0.15) 50%,
        rgba(30, 41, 59, 0.9) 75%,
        rgba(15, 23, 42, 0.98) 100%
    ) !important;
    backdrop-filter: blur(2px) !important;
}

/* Slide Animation Enhancement */
.home-page .slide.active {
    animation: slideZoom 8s ease-in-out infinite alternate !important;
}

@keyframes slideZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Executive Black Hero Content - Enhanced Text Readability */
.home-page .hero-content-overlay {
    color: #ffffff !important;
}

.home-page .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.home-page .title-highlight {
    color: #38bdf8 !important;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.6), 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.home-page .hero-subtitle {
    color: #f1f5f9 !important;
    font-size: 1.25rem !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500 !important;
}

/* Executive Black Text Improvements */
.home-page h1, 
.home-page h2, 
.home-page h3, 
.home-page h4, 
.home-page h5, 
.home-page h6 {
    color: #ffffff !important;
}

.home-page p {
    color: #e2e8f0 !important;
}

.home-page .text-muted {
    color: #cbd5e1 !important;
}

/* Stats Bar Executive Black */
.home-page .stats-bar {
    background: rgba(30, 41, 59, 0.8) !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.home-page .stat-number-compact {
    color: #38bdf8 !important;
}

.home-page .stat-label-compact {
    color: #e2e8f0 !important;
}

/* Executive Black Main Sections */
.home-page .section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.home-page .card {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    color: #ffffff !important;
}

.home-page .card-body {
    color: #e2e8f0 !important;
}

.home-page .card-title {
    color: #ffffff !important;
}

.home-page .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
}

.home-page .btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    transform: translateY(-2px) !important;
}

/* Executive Black - All Sections */
.home-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

/* Alternating Dark Sections for Visual Interest */
.home-page .trusted-by-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%) !important;
}

.home-page .features-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.home-page .how-it-works-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
}

.home-page .bg-light {
    background: linear-gradient(135deg, #334155 0%, #1e293b 50%, #334155 100%) !important;
}

/* Executive Black - Feature Cards */
.home-page .feature-card,
.home-page .work-step {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    border-radius: 12px !important;
}

.home-page .feature-card:hover,
.home-page .work-step:hover {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(14, 165, 233, 0.4) !important;
    transform: translateY(-5px) !important;
}

/* Executive Black - Icons */
.home-page .feature-icon,
.home-page .step-number {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    color: #ffffff !important;
}

/* Executive Black - Company Logos */
.home-page .trusted-logos img {
    filter: brightness(0) invert(1) opacity(0.7) !important;
    transition: all 0.3s ease !important;
}

.home-page .trusted-logos img:hover {
    opacity: 1 !important;
}

/* Executive Black - CTA Section */
.home-page .cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

/* Executive Black - Footer */
.home-page footer {
    background: #020617 !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.home-page footer * {
    color: #cbd5e1 !important;
}

.home-page footer a {
    color: #38bdf8 !important;
}

.home-page footer a:hover {
    color: #ffffff !important;
}

/* Executive Black - Section Borders for Definition */
.home-page section {
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
}

.home-page section:last-child {
    border-bottom: none !important;
}

/* Executive Black - Subtle Shadows */
.home-page .container {
    position: relative !important;
}

.home-page .row {
    position: relative !important;
}

/* Executive Black Theme for About Page */
.about-page {
    --primary-color: #0f172a !important;
    --primary-dark: #020617 !important;  
    --secondary-color: #0ea5e9 !important;
    --secondary-dark: #0284c7 !important;
    --accent-color: #38bdf8 !important;
    --text-primary: #ffffff !important;
    --text-secondary: #cbd5e1 !important;
    --body-bg: #0f172a !important;
    --border-color: #334155 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.about-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.about-page .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
}

.about-page .nav-link:hover,
.about-page .nav-link.active {
    color: #38bdf8 !important;
}

.about-page h1, 
.about-page h2, 
.about-page h3, 
.about-page h4, 
.about-page h5, 
.about-page h6 {
    color: #ffffff !important;
}

.about-page p {
    color: #e2e8f0 !important;
}

.about-page .hero-section,
.about-page .about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.about-page section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
}

.about-page .card {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    color: #ffffff !important;
}

.about-page .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
}

.about-page footer {
    background: #020617 !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.about-page .feature-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.about-page .feature-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-5px) !important;
}

.about-page .team-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
}

.about-page .result-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.about-page .result-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-3px) !important;
}

.about-page .stat-item h2 {
    color: #38bdf8 !important;
}

.about-page .cta-section {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
}

/* Executive Black Theme for Pricing Page */
.pricing-page {
    --primary-color: #0f172a !important;
    --primary-dark: #020617 !important;  
    --secondary-color: #0ea5e9 !important;
    --secondary-dark: #0284c7 !important;
    --accent-color: #38bdf8 !important;
    --text-primary: #ffffff !important;
    --text-secondary: #cbd5e1 !important;
    --body-bg: #0f172a !important;
    --border-color: #334155 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.pricing-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.pricing-page .navbar-brand {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.pricing-page .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
}

.pricing-page .nav-link:hover,
.pricing-page .nav-link.active {
    color: #38bdf8 !important;
}

.pricing-page h1, 
.pricing-page h2, 
.pricing-page h3, 
.pricing-page h4, 
.pricing-page h5, 
.pricing-page h6 {
    color: #ffffff !important;
}

.pricing-page p {
    color: #e2e8f0 !important;
}

.pricing-page .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.pricing-page section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
}

.pricing-page .card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.pricing-page .card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-5px) !important;
}

.pricing-page .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
}

.pricing-page .btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
}

.pricing-page footer {
    background: #020617 !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.pricing-page .pricing-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.pricing-page .pricing-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-8px) !important;
}

.pricing-page .pricing-card.featured {
    border: 2px solid #38bdf8 !important;
    background: rgba(56, 189, 248, 0.1) !important;
}

.pricing-page .price {
    color: #38bdf8 !important;
}

.pricing-page .price .currency,
.pricing-page .price .amount {
    color: #38bdf8 !important;
}

.pricing-page .feature-list li {
    color: #e2e8f0 !important;
}

.pricing-page .feature-list .fas {
    color: #10b981 !important;
}

.pricing-page .result-metric {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.pricing-page .result-metric:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-3px) !important;
}

/* Fix pricing cards alignment */
.pricing-page .pricing-card {
    min-height: 550px !important;
    display: flex !important;
    flex-direction: column !important;
}

.pricing-page .feature-list {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.pricing-page .pricing-card .text-center:last-child {
    margin-top: auto !important;
    padding-top: 1rem !important;
}

/* Executive Black Theme for Case Studies Page */
.case-studies-page {
    --primary-color: #0f172a !important;
    --primary-dark: #020617 !important;  
    --secondary-color: #0ea5e9 !important;
    --secondary-dark: #0284c7 !important;
    --accent-color: #38bdf8 !important;
    --text-primary: #ffffff !important;
    --text-secondary: #cbd5e1 !important;
    --body-bg: #0f172a !important;
    --border-color: #334155 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.case-studies-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.case-studies-page .navbar-brand {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.case-studies-page .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
}

.case-studies-page .nav-link:hover,
.case-studies-page .nav-link.active {
    color: #38bdf8 !important;
}

.case-studies-page h1, 
.case-studies-page h2, 
.case-studies-page h3, 
.case-studies-page h4, 
.case-studies-page h5, 
.case-studies-page h6 {
    color: #ffffff !important;
}

.case-studies-page p {
    color: #e2e8f0 !important;
}

.case-studies-page .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.case-studies-page section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
}

.case-studies-page .card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.case-studies-page .card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-5px) !important;
}

.case-studies-page .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
}

.case-studies-page .btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
}

.case-studies-page footer {
    background: #020617 !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.case-studies-page .case-study-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.case-studies-page .case-study-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-8px) !important;
}

.case-studies-page .stat-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.case-studies-page .stat-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-3px) !important;
}

.case-studies-page .stat-number {
    color: #38bdf8 !important;
}

/* Executive Black Theme for Contact Page */
.contact-page {
    --primary-color: #0f172a !important;
    --primary-dark: #020617 !important;  
    --secondary-color: #0ea5e9 !important;
    --secondary-dark: #0284c7 !important;
    --accent-color: #38bdf8 !important;
    --text-primary: #ffffff !important;
    --text-secondary: #cbd5e1 !important;
    --body-bg: #0f172a !important;
    --border-color: #334155 !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.contact-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.contact-page .navbar-brand {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.contact-page .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
}

.contact-page .nav-link:hover,
.contact-page .nav-link.active {
    color: #38bdf8 !important;
}

.contact-page h1, 
.contact-page h2, 
.contact-page h3, 
.contact-page h4, 
.contact-page h5, 
.contact-page h6 {
    color: #ffffff !important;
}

.contact-page p {
    color: #e2e8f0 !important;
}
section.py-5.hero-section {
    padding-top: 70px !important;
}

.contact-page .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.contact-page section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
}

.contact-page .card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    color: #ffffff !important;
}

.contact-page .form-control {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.contact-page .form-control:focus {
    background: rgba(30, 41, 59, 1) !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.25) !important;
}

.contact-page .form-control::placeholder {
    color: #94a3b8 !important;
}

.contact-page .form-select {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.contact-page .form-select:focus {
    background: rgba(30, 41, 59, 1) !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.25) !important;
}

.contact-page .form-select option {
    background: #1e293b !important;
    color: #ffffff !important;
}

.contact-page .invalid-feedback {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
}

.contact-page .btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.contact-page .btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    transform: translateY(-2px) !important;
}

.contact-page .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
}

.contact-page .btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
}

.contact-page footer {
    background: #020617 !important;
    border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.contact-page .contact-info-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.contact-page .contact-info-card:hover {
    background: rgba(30, 41, 59, 1) !important;
    border-color: rgba(14, 165, 233, 0.5) !important;
    transform: translateY(-5px) !important;
}

.contact-page .form-label {
    color: #e2e8f0 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

.contact-page .focused .form-label {
    color: #38bdf8 !important;
}

.contact-page .was-validated .form-control:valid {
    border-color: #10b981 !important;
}

.contact-page .was-validated .form-control:invalid {
    border-color: #ef4444 !important;
}

.contact-page .was-validated .form-select:valid {
    border-color: #10b981 !important;
}

.contact-page .was-validated .form-select:invalid {
    border-color: #ef4444 !important;
}

.contact-page .contact-form-card {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.contact-page .contact-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    margin: 0 auto 1.5rem !important;
}

.hero-content {
    color: white;
    animation: heroFadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, #60a5fa, #34d399, #fbbf24);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(37, 99, 235, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    outline: none !important;
}

/* Executive Black Slider Controls */
.home-page .slider-btn {
    background: rgba(14, 165, 233, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.slider-btn:hover {
    background: rgba(37, 99, 235, 1) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.home-page .slider-btn:hover {
    background: rgba(14, 165, 233, 1) !important;
    border-color: rgba(56, 189, 248, 1) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4) !important;
}

.prev-btn {
    left: 20px !important;
}

.next-btn {
    right: 20px !important;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item-compact {
    padding: 0.5rem;
}

.stat-number-compact {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #60a5fa;
}

.stat-label-compact {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive Design for Compact Hero */
@media (max-width: 768px) {
    .hero-section-compact {
        max-height: 500px;
        padding: 2rem 0;
    }
    
    .hero-section-compact .container {
        padding: 0 1rem;
    }
    
    .hero-section-compact h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-section-compact p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .stats-bar .row > div {
        margin-bottom: 1rem;
    }
    
    .stat-number-compact {
        font-size: 1.5rem;
    }
    
    .stat-label-compact {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section-compact {
        max-height: 450px;
    }
    
    .hero-section-compact h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-section-compact p {
        font-size: 0.9rem;
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Executive Black Hero Buttons - Enhanced Visibility */
.home-page .btn-hero-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.home-page .btn-hero-primary:hover {
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.6) !important;
    transform: translateY(-3px) !important;
}

.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-hero-primary:hover .btn-shine {
    left: 100%;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Executive Black Hero Secondary Button - Enhanced Visibility */
.home-page .btn-hero-secondary {
    background: rgba(14, 165, 233, 0.15) !important;
    border: 2px solid rgba(14, 165, 233, 0.5) !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    font-weight: 600 !important;
}

.home-page .btn-hero-secondary:hover {
    background: rgba(14, 165, 233, 0.3) !important;
    border-color: rgba(14, 165, 233, 0.8) !important;
    color: #ffffff !important;
}

/* Executive Black Navigation */
.home-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.home-page .navbar-brand {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.home-page .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.home-page .nav-link:hover,
.home-page .nav-link.active {
    color: #38bdf8 !important;
}

.home-page .navbar-toggler {
    border-color: rgba(14, 165, 233, 0.3) !important;
}

.home-page .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 189, 248, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Executive Black Sign Up Button */
.home-page .btn-primary,
.home-page .navbar .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.home-page .btn-primary:hover,
.home-page .navbar .btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3) !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: floatUp 2s ease-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Trusted By Section */
.trusted-by-section {
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.client-logo {
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(1);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.client-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--light-color);
}

.step-card {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h5 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 5rem 0;
}

.cta-section h2,
.cta-section p {
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--text-secondary);
}

.footer h5 {
    color: white;
    font-weight: 600;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Utility Classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero-section-modern {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 200px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 250px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}