/* Marketing Page Styles */
:root {
    --primary-color: #3bbbe0;
    --primary-dark: #2a9ac4;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #3bbbe0 0%, #2a9ac4 100%);
    --gradient-secondary: linear-gradient(135deg, #1a8db5 0%, #0f4c75 100%);
    --shadow-light: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-medium: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Professional Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
}

/* Override any dark navbar classes */
.navbar-dark {
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-dark.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Brand Styling */
.navbar-brand {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.navbar-brand:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(59, 187, 224, 0.1);
    transform: translateY(-1px);
}

/* Ensure navbar text stays dark on all states */
.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link,
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--dark-color) !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-dark .navbar-brand,
.navbar-light .navbar-brand,
.navbar.scrolled .navbar-brand {
    color: var(--dark-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Professional Button Styling */
.navbar .btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    border-width: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.navbar .btn-outline-light {
    color: var(--dark-color) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    background: transparent;
}

.navbar .btn-outline-light:hover {
    color: var(--dark-color) !important;
    border-color: var(--primary-color) !important;
    background: rgba(59, 187, 224, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 187, 224, 0.3);
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 187, 224, 0.4);
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a7ba0 100%);
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 187, 224, 0.6);
}

.navbar .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;
}

.navbar .btn-primary:hover::before {
    left: 100%;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(59, 187, 224, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(59, 187, 224, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(33, 37, 41, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/></svg>") !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Lighter diagonal lines */
        url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M0,16 L16,0" stroke="%23ffffff" stroke-width="0.8" opacity="0.15"/><path d="M4,16 L16,4" stroke="%23ffffff" stroke-width="0.6" opacity="0.12"/><path d="M8,16 L16,8" stroke="%23ffffff" stroke-width="0.4" opacity="0.09"/><path d="M12,16 L16,12" stroke="%23ffffff" stroke-width="0.4" opacity="0.09"/></svg>'),
        /* Enhanced dot pattern */
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="5" cy="5" r="2"/><circle cx="35" cy="35" r="2"/><circle cx="20" cy="20" r="1"/></g></svg>'),
        /* Subtle gradient overlay */
        radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0f4c75;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(15, 76, 117, 0.7);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 76, 117, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(15, 76, 117, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 76, 117, 0); }
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Dashboard Preview */
.dashboard-preview {
    perspective: 1000px;
}

.preview-window {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.preview-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.window-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.control.red { background: #ff5f56; animation-delay: 0s; }
.control.yellow { background: #ffbd2e; animation-delay: 1s; }
.control.green { background: #27ca3f; animation-delay: 2s; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.window-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.window-content {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    font-size: 0.75rem;
}

/* Live Stats Cards */
.dashboard-header {
    margin-bottom: 15px;
}

.live-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease forwards;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    animation: shimmer 2s infinite;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.stat-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    animation: countUp 2s ease forwards;
}

.stat-label {
    font-size: 0.6rem;
    color: #666;
    margin-top: 2px;
}

.stat-trend {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.55rem;
    color: #28a745;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Interactive Chart */
.chart-container {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-header h6 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.chart-period {
    display: flex;
    gap: 4px;
}

.period-btn {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.55rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
}

.period-btn.active {
    background: var(--primary-color);
    color: white;
}

.animated-chart {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 100%;
    gap: 3px;
    padding: 5px 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-dark));
    border-radius: 2px 2px 0 0;
    animation: growUp 1.5s ease forwards;
    transform-origin: bottom;
    opacity: 0.8;
}

.chart-bar:nth-child(odd) {
    animation-delay: 0.1s;
}

.chart-bar:nth-child(even) {
    animation-delay: 0.3s;
}

@keyframes growUp {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}


/* Ensure chart container has proper aspect ratio */
.animated-chart {
    height: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

/* Activity Feed */
.activity-feed {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);
}

.activity-item:nth-child(1) { --delay: 1; }
.activity-item:nth-child(2) { --delay: 2; }
.activity-item:nth-child(3) { --delay: 3; }

@keyframes slideInRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.activity-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-text {
    font-size: 0.65rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-time {
    font-size: 0.55rem;
    color: #666;
}

/* Floating Notification */
.notification-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: notificationSlide 4s ease infinite;
    opacity: 0;
    transform: translateX(100%);
    max-width: 140px;
}

@keyframes notificationSlide {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(100%);
    }
    10%, 80% {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-icon {
    width: 16px;
    height: 16px;
    background: var(--warning-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: white;
    animation: bounce 1s infinite;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 0.6rem;
    font-weight: 600;
    color: #333;
}

.notification-message {
    font-size: 0.55rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-close {
    font-size: 0.5rem;
    color: #999;
    cursor: pointer;
    padding: 2px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Light Section Background */
.bg-light {
    background: #f8f9fa !important;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    margin-top: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-tags {
    margin-top: 1rem;
}

.tag {
    background: var(--light-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

/* Mini Features */
.additional-features {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.mini-feature {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-feature:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.mini-feature i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Comparison Table */
.comparison-table {
    background: 
        /* Light diagonal lines */
        url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 L30,0" stroke="%23000000" stroke-width="0.2" opacity="0.03"/><path d="M8,30 L30,8" stroke="%23000000" stroke-width="0.2" opacity="0.025"/><path d="M15,30 L30,15" stroke="%23000000" stroke-width="0.2" opacity="0.02"/></svg>'),
        white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.comparison-table table {
    margin: 0;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    border: none;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

/* Testimonials */
.testimonial-card {
    background: 
        /* Light diagonal lines */
        url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 L30,0" stroke="%23000000" stroke-width="0.2" opacity="0.03"/><path d="M8,30 L30,8" stroke="%23000000" stroke-width="0.2" opacity="0.025"/><path d="M15,30 L30,15" stroke="%23000000" stroke-width="0.2" opacity="0.02"/></svg>'),
        white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Pricing Cards */
.pricing-card {
    background: 
        /* Light diagonal lines */
        url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 L30,0" stroke="%23000000" stroke-width="0.2" opacity="0.03"/><path d="M8,30 L30,8" stroke="%23000000" stroke-width="0.2" opacity="0.025"/><path d="M15,30 L30,15" stroke="%23000000" stroke-width="0.2" opacity="0.02"/></svg>'),
        white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.btn-block {
    width: 100%;
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-primary:focus,
.btn-primary.focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(59, 187, 224, 0.5);
}

.btn-primary:active,
.btn-primary.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Link Colors */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

/* Background Color Overrides */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Footer Styling */
footer .text-muted {
    color: #adb5bd !important;
}

footer .text-muted:hover {
    color: #ffffff !important;
}

/* Hero Section Button Override */
.hero-section .btn-primary {
    background-color: #0f4c75;
    border-color: #0f4c75;
    color: white;
}

.hero-section .btn-primary:hover {
    background-color: #0a3555;
    border-color: #0a3555;
    color: white;
}

.hero-section .btn-primary:focus,
.hero-section .btn-primary.focus {
    background-color: #0a3555;
    border-color: #0a3555;
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 117, 0.5);
}

/* Enhanced Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(20px);
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.25rem !important;
        margin: 0.25rem 0;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .navbar .d-flex {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        gap: 0.75rem;
    }
    
    .navbar .btn {
        flex: 1;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .navbar-brand img {
        height: 26px !important;
    }
    
    .hero-section {
        padding-top: 120px;
        min-height: calc(100vh - 60px);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
} 