/* ==========================================
   Start Solution Pro - Custom Styles
   ========================================== */

/* Root Variables */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-family-primary: 'Cairo', sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --box-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --box-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-transform: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-opacity: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 70px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Navigation Styles */
.navbar {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-all);
    padding: 1rem 0;
    box-shadow: var(--box-shadow-md);
}

    .navbar.navbar-scrolled {
        background: rgba(30, 64, 175, 0.98);
        padding: 0.5rem 0;
        box-shadow: var(--box-shadow-lg);
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    transition: var(--transition-all);
}

    .navbar-brand:hover {
        color: var(--accent-color) !important;
        transform: scale(1.05);
    }

.navbar-nav .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transition-all);
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    margin: 0 0.25rem;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent-color) !important;
        background-color: rgba(245, 158, 11, 0.1);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link i {
        margin-left: 0.5rem;
    }

/* Button Styles */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-all);
    border: none;
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--box-shadow-lg);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1e40af, #2563eb);
        color: white;
    }

.btn-warning {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: white;
}

    .btn-warning:hover {
        background: linear-gradient(135deg, #d97706, var(--accent-color));
        color: white;
    }

.btn-outline-warning {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

    .btn-outline-warning:hover {
        background: var(--accent-color);
        color: white;
        border-color: var(--accent-color);
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
        animation: movePattern 20s linear infinite;
    }

@keyframes movePattern {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(60px) translateY(60px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--box-shadow-xl);
    animation: float 6s ease-in-out infinite;
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
        position: relative;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), #fbbf24);
            border-radius: 2px;
        }

    .section-title p {
        font-size: 1.125rem;
        color: var(--gray-600);
        max-width: 600px;
        margin: 0 auto;
    }

/* Card Styles */
.card-custom {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow);
    transition: var(--transition-all);
    border: none;
    overflow: hidden;
}

    .card-custom:hover {
        transform: translateY(-10px);
        box-shadow: var(--box-shadow-xl);
    }

.service-card {
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-transform);
}

    .service-icon:hover {
        transform: scale(1.1) rotate(5deg);
    }

    .service-icon i {
        font-size: 2rem;
        color: white;
    }

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Form Styles */
.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-all);
    background-color: white;
}

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
        outline: none;
    }

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer Styles - FIXED */
.footer {
    background: var(--dark-color) !important;
    color: white !important;
}

    .footer * {
        color: white !important;
    }

    .footer h5,
    .footer h6 {
        color: var(--accent-color) !important;
        font-weight: 600;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .footer a {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none;
        transition: var(--transition-all);
    }

        .footer a:hover {
            color: white !important;
            transform: translateX(5px);
        }

    .footer .text-muted {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .footer .text-light {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .footer .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--gray-700) !important;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        transition: var(--transition-all);
        color: white !important;
    }

        .footer .social-links a:hover {
            background: var(--accent-color) !important;
            transform: translateY(-3px) scale(1.1);
            color: white !important;
        }

    .footer .contact-info .text-muted {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .footer .border-secondary {
        border-color: var(--gray-600) !important;
    }

/* Scroll to Top Button */
.btn-floating {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    box-shadow: var(--box-shadow-lg);
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 1
