/**
 * FreelanceHub - Modern UI Design
 * Freelance Services Platform
 */

/* Root Variables */
:root {
    --primary-color: #1e3a8a; /* Deep dark blue */
    --primary-dark: #1e40af; /* Slightly lighter dark blue */
    --primary-light: #3b82f6; /* Light blue for accents */
    --secondary-color: #475569; /* Charcoal gray */
    --success-color: #059669;
    --info-color: #0891b2;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --light-color: #f0f9ff; /* Very light pale blue */
    --dark-color: #374151; /* Dark charcoal gray */
    --white: #ffffff;
    --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;
    
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --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 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Container */
.container {
    position: relative;
}

/* Section Spacing */
.section-padding {
    padding: 6rem 0;
}

.section-padding-sm {
    padding: 4rem 0;
}

/* Background Patterns */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

.bg-pattern-dots {
    background-image: radial-gradient(circle, rgba(30, 58, 138, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.nav-link {
    font-weight: 600;
    color: var(--gray-700) !important;
    transition: var(--transition);
    padding: 0.75rem 1.25rem !important;
    border-radius: var(--border-radius);
    margin: 0 0.25rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.nav-link i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--gray-50);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
    color: var(--gray-500);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    background: var(--white);
    position: relative;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* Enhanced Card Variants */
.card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
}

.card-featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.1);
}

.card-featured::before {
    background: var(--primary-color);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-bottom: none;
    font-weight: 700;
    padding: 1.5rem;
    font-size: 1.125rem;
}

.card-body {
    padding: 2rem;
}

.card-img-top {
    transition: var(--transition);
    height: 200px;
    object-fit: cover;
}

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

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

/* Enhanced Button Variants */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-soft {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn-soft:hover {
    background: var(--gray-200);
    color: var(--gray-800);
    transform: translateY(-1px);
}

.btn::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: var(--transition);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn-light {
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--box-shadow);
}

.btn-light:hover {
    background: var(--gray-50);
    color: var(--gray-900);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
    background: var(--white);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
    transform: translateY(-1px);
    background: var(--white);
}

/* Enhanced Form Styles */
.form-floating {
    position: relative;
}

.form-floating .form-control {
    height: 3.5rem;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating .form-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: var(--gray-600);
}

.form-floating .form-control:focus ~ .form-label,
.form-floating .form-control:not(:placeholder-shown) ~ .form-label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: block;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-600);
    text-align: center;
    white-space: nowrap;
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
}

.form-select {
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
    background: var(--white);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.875rem;
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.25rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-dark) 25%, 
        var(--primary-light) 50%, 
        var(--primary-color) 75%, 
        var(--primary-dark) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 58, 138, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--light-color) 0%, transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

/* SVG Background Elements */
.hero-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-svg-bg .floating-shape {
    animation: float 6s ease-in-out infinite;
}

.hero-svg-bg .floating-shape:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.hero-svg-bg .floating-shape:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 10s;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

/* Hero Content Enhancements */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-badge i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

/* Hero Stats */
.hero-stats {
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--box-shadow-lg);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Button Styles */
.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 600;
}

.hero-cta .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    font-weight: 600;
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
}

/* Responsive Hero Stats */
@media (max-width: 768px) {
    .hero-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    z-index: 2;
}

.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Service Cards */
.service-card {
    transition: var(--transition);
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* Service Card Enhancements */
.service-card-premium {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.1);
}

.service-card-premium::before {
    content: '⭐ Premium';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-card-new {
    border: 2px solid var(--success-color);
}

.service-card-new::before {
    content: '🆕 New';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.service-meta i {
    margin-right: 0.25rem;
}

/* Statistics Cards */
.stat-card {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* Enhanced Stat Cards */
/* .stat-card-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-left: none;
}

.stat-card-featured .stat-number {
    color: var(--white);
}

.stat-card-featured .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.stat-card-featured p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.stat-card-featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid var(--primary-color);
} */

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

/* Enhanced Footer */
.enhanced-footer {
    position: relative;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 50%, var(--gray-800) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    overflow: hidden;
}

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

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.footer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.footer-content {
    position: relative;
    z-index: 3;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.brand-name {
    color: var(--white);
    font-weight: 800;
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: var(--primary-color);
}

/* Footer Headings */
.footer-heading {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 50px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 3;
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-credits {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-credits a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-credits a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .enhanced-footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-credits {
        text-align: center;
        margin-top: 1rem;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .enhanced-footer {
        padding: 2rem 0 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 5rem 0;
        min-height: 70vh;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

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

.shadow-glow {
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) 1;
}

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

/* Enhanced Utility Classes */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-glass-dark {
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Spacing Utilities */
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Animation Utilities */
.animate-fade-in {
    animation: fadeInUp 0.6s ease both;
}

.animate-fade-in-delay-1 {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Border Utilities */
.border-primary-light {
    border-color: var(--primary-light);
}

.border-success-light {
    border-color: var(--success-color);
}

/* Opacity Utilities */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Image Hover Effects */
.img-hover {
    transition: var(--transition);
    overflow: hidden;
    border-radius: var(--border-radius);
}

.img-hover img {
    transition: var(--transition);
}

.img-hover:hover img {
    transform: scale(1.1);
}

/* Profile Image */
.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--box-shadow-lg);
    border-radius: 50%;
}

/* Service Tags */
.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.service-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 0.75rem 1rem;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(30, 58, 138, 0.05);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

/* Modern Search Bar Design */
/* Authentication Pages */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow-x: hidden;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.auth-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.auth-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: authGlow 10s ease-in-out infinite alternate;
}

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

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.auth-header {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}

.auth-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.auth-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.auth-body {
    padding: 2rem;
}

.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.auth-alert-danger {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.auth-alert-success {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.2);
    color: #059669;
}

.auth-alert i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.alert-content strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group .form-label i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.auth-input {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
    outline: none;
}

.auth-input::placeholder {
    color: var(--gray-500);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
}

.auth-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
}

.auth-btn-success {
    background: linear-gradient(135deg, var(--success-color), #10b981);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.auth-footer {
    text-align: center;
}

.auth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-link-text {
    margin-bottom: 0;
    color: var(--gray-600);
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.auth-link-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-link-back:hover {
    color: var(--primary-color);
    transform: translateX(-2px);
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .auth-card {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .auth-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .auth-body {
        padding: 1.5rem;
    }
    
    .auth-btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .auth-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-body {
        padding: 1rem;
    }
    
    .auth-input {
        padding: 0.75rem 0.875rem;
    }
}

/* Enhanced Search Section */
.search-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
}

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

.search-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 58, 138, 0.01) 0%, transparent 50%);
    opacity: 0.4;
}

.search-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: searchGlow 8s ease-in-out infinite alternate;
}

@keyframes searchGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.search-badge i {
    font-size: 0.75rem;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.enhanced-search-bar {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 72px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input-wrapper:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.search-input-wrapper:focus-within {
    box-shadow: 
        0 12px 40px rgba(30, 58, 138, 0.2),
        0 4px 12px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}



.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800);
    background: transparent;
    transition: all 0.3s ease;
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
}

.search-input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
    transition: all 0.3s ease;
}

.search-input:focus::placeholder {
    color: var(--gray-400);
    transform: translateX(4px);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.search-input-wrapper:focus-within .search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(59, 130, 246, 0.05);
}

.suggestion-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.suggestion-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.search-button {
    position: relative;
    margin-right: 0.5rem;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    font-size: 1rem;
    font-weight: 600;
    z-index: 3;
    overflow: hidden;
    min-width: 120px;
    height: 60px;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
}

.search-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-button:hover .button-glow {
    opacity: 1;
}

.search-button i {
    transition: transform 0.3s ease;
}

.search-button:hover i {
    transform: translateX(2px);
}

.search-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.search-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.search-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.search-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive Enhanced Search Bar */
@media (max-width: 768px) {
    .enhanced-search-bar {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .search-input-wrapper {
        height: 64px;
        border-radius: 18px;
    }
    

    
    .search-input {
        font-size: 1rem;
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    }
    
    .search-button {
        min-width: 100px;
        height: 52px;
        font-size: 0.875rem;
    }
    
    .search-title {
        font-size: 2rem;
    }
    
    .search-stats {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .search-input-wrapper {
        height: 60px;
        border-radius: 16px;
    }
    

    
    .search-input {
        font-size: 0.95rem;
        padding: 1rem 1rem 1rem 1rem;
    }
    
    .search-button {
        min-width: 80px;
        height: 48px;
        font-size: 0.8rem;
    }
    
    .search-title {
        font-size: 1.75rem;
    }
    
    .search-stats {
        gap: 1.5rem;
    }
    
    .search-stats .stat-number {
        font-size: 1.25rem;
    }
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--box-shadow-xl);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 800;
    opacity: 0.2;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

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

/* Testimonial Header */
.testimonial-header {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.testimonial-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--warning-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-title {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -15px;
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    z-index: 2;
    position: relative;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
    color: #f59e0b;
}

.rating-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

/* Enhanced Call to Action Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
    color: var(--white);
}

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

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.1s both;
}

.cta-badge i {
    color: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    min-width: 120px;
    transition: var(--transition);
}

.cta-stat:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--box-shadow-lg);
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.cta-btn::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.6s ease;
}

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

.cta-btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--white);
}

.cta-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-btn span {
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
}

.cta-btn small {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-footer {
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-guarantee i {
    color: #10b981;
    font-size: 1rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .cta-stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .cta-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-stats {
        gap: 1rem;
    }
    
    .cta-stat {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .cta-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .cta-btn {
        min-width: 200px;
        padding: 1.25rem 1.5rem;
    }
}

/* Enhanced Search Interface */
.enhanced-search-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.enhanced-search-card:hover {
    box-shadow: var(--box-shadow-xl);
    transform: translateY(-2px);
}

.search-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.search-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.search-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.search-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    font-size: 1rem;
    color: #e2e8f0;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-body {
    padding: 2.5rem;
    background: var(--white);
}

.search-form {
    width: 100%;
}

.search-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1.5rem;
    align-items: end;
}

.search-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.field-label i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.search-input,
.search-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-800);
}

.search-input:focus,
.search-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

.search-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    min-width: 120px;
    justify-content: center;
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.search-submit-btn:active {
    transform: translateY(0);
}

.search-submit-btn i {
    font-size: 1rem;
}

.search-submit-btn span {
    font-weight: 600;
}

/* Responsive Search */
@media (max-width: 1200px) {
    .search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .search-button-group {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .search-header {
        padding: 1.5rem;
    }
    
    .search-header-content {
        text-align: center;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
    
    .search-body {
        padding: 1.5rem;
    }
    
    .search-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-button-group {
        grid-column: span 1;
    }
    
    .search-submit-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .search-header {
        padding: 1rem;
    }
    
    .search-body {
        padding: 1rem;
    }
    
    .search-title {
        font-size: 1.25rem;
    }
    
    .search-subtitle {
        font-size: 0.9rem;
    }
}

/* About Page Styles */
.mission-content {
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.section-header.text-start h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header.text-start .lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-stat {
    text-align: center;
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-stat:hover::before {
    transform: scaleX(1);
}

.mission-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.mission-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.mission-stat .stat-label {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.05));
    border-radius: var(--border-radius-xl);
    border: 2px dashed rgba(59, 130, 246, 0.2);
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-card:hover::before {
    opacity: 0.05;
}

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

.floating-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.floating-card span {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.floating-card:hover span {
    color: var(--primary-color);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    animation: float 6s ease-in-out infinite 4s;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(15deg);
}

.value-card:hover .value-icon::before {
    transform: scale(1);
}

.value-card h4 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Story Cards */
.story-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(147, 197, 253, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.story-year {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.story-card:hover .story-year {
    transform: scale(1.1);
}

.story-card h4 {
    color: var(--gray-900);
    margin: 1.5rem 0 1rem 0;
    font-weight: 800;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.story-card:hover h4 {
    color: var(--primary-color);
}

.story-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.contact-form-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.contact-form-card .card-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-form-card .card-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-form-card .card-body {
    padding: 2.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-details small {
    color: var(--gray-500);
    font-size: 0.875rem;
}

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

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: var(--gray-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.quick-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links i {
    color: var(--primary-color);
    width: 16px;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive About & Contact */
@media (max-width: 768px) {
    .mission-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-stat {
        padding: 1.25rem;
    }
    
    .mission-stat .stat-number {
        font-size: 2rem;
    }
    
    .mission-image {
        height: auto;
        min-height: 400px;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 2rem;
    }
    
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none;
        padding: 1.5rem;
        min-width: 200px;
        width: 100%;
        max-width: 250px;
        margin: 0.5rem 0;
    }
    
    .floating-card i {
        font-size: 2rem;
    }
    
    .floating-card span {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1.1rem;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
    }
    
    .story-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-form-card .card-body {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mission-image {
        min-height: 350px;
        margin-top: 1.5rem;
    }
    
    .image-container {
        min-height: 350px;
        padding: 1.5rem;
        gap: 0.75rem;
    }
    
    .floating-card {
        padding: 1.25rem;
        min-width: 180px;
        max-width: 220px;
        margin: 0.25rem 0;
    }
    
    .floating-card i {
        font-size: 1.75rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-year {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .contact-form-card .card-header {
        padding: 1.5rem;
    }
    
    .contact-form-card .card-body {
        padding: 1rem;
    }
}

/* Manage Services Page Styles */
.services-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-header h2 i {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.services-header .btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.services-header .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--primary-color);
}

.service-card .card-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-status.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-status.inactive {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: var(--white);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.service-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-actions .btn-outline-warning {
    border: 2px solid #f59e0b;
    color: #f59e0b;
    background: transparent;
}

.service-actions .btn-outline-warning:hover {
    background: #f59e0b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.service-actions .btn-outline-danger {
    border: 2px solid #ef4444;
    color: #ef4444;
    background: transparent;
}

.service-actions .btn-outline-danger:hover {
    background: #ef4444;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 2px dashed var(--gray-300);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.empty-state .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Responsive Service Cards */
@media (max-width: 768px) {
    .services-header {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .services-header h2 i {
        padding: 0.75rem;
        font-size: 1.25rem;
    }
    
    .service-card .card-body {
        padding: 1.25rem;
    }
    
    .service-card .card-title {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
    
    .service-meta {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-actions .btn {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card .card-img-top {
        height: 180px;
    }
    
    .service-card .card-body {
        padding: 1rem;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Freelancer Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

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

.dashboard-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-header h2 i {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.dashboard-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0 0;
}

/* Dashboard Stats Cards */
.dashboard-stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-stat-card.primary::before {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.dashboard-stat-card.success::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.dashboard-stat-card.info::before {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.dashboard-stat-card.warning::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.dashboard-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-xl);
}

.dashboard-stat-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.dashboard-stat-card.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.dashboard-stat-card.info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: var(--white);
}

.dashboard-stat-card.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
}

.dashboard-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
}

.dashboard-stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.dashboard-stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.dashboard-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Quick Actions Section */
.quick-actions-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.quick-actions-header {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.quick-actions-header h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-actions-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.quick-actions-body {
    padding: 2rem;
}

.quick-action-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.quick-action-btn:hover::before {
    opacity: 0.05;
}

.quick-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.quick-action-btn:hover i {
    transform: scale(1.2);
}

.quick-action-btn span {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Dashboard Content Cards */
.dashboard-content-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
}

.dashboard-content-header {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: between;
    align-items: center;
}

.dashboard-content-header h5 {
    color: var(--gray-900);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-content-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.dashboard-content-header .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.dashboard-content-body {
    padding: 1.5rem;
}

/* Service/Inquiry Items */
.dashboard-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.3s ease;
}

.dashboard-item:last-child {
    border-bottom: none;
}

.dashboard-item:hover {
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.dashboard-item-content h6 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.dashboard-item-meta {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dashboard-item-meta i {
    color: var(--primary-color);
    width: 14px;
}

.dashboard-item-actions .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius);
}

/* Status Badges */
.dashboard-status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-status-badge.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.dashboard-status-badge.inactive {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: var(--white);
}

.dashboard-status-badge.new {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
}

.dashboard-status-badge.read {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: var(--white);
}

.dashboard-status-badge.replied {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

/* Empty States */
.dashboard-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-600);
}

.dashboard-empty-state i {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.dashboard-empty-state p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.dashboard-empty-state a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.dashboard-empty-state a:hover {
    text-decoration: underline;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .dashboard-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .dashboard-header h2 i {
        padding: 0.75rem;
        font-size: 1.25rem;
    }
    
    .dashboard-stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .dashboard-stat-card .stat-number {
        font-size: 2rem;
    }
    
    .dashboard-stat-card .stat-icon {
        font-size: 2rem;
    }
    
    .quick-actions-body {
        padding: 1.5rem;
    }
    
    .quick-action-btn {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .quick-action-btn i {
        font-size: 1.75rem;
    }
    
    .dashboard-content-body {
        padding: 1.25rem;
    }
    
    .dashboard-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-item-actions {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .dashboard-header h2 {
        font-size: 1.75rem;
    }
    
    .dashboard-stat-card {
        padding: 1.25rem;
    }
    
    .dashboard-stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .quick-actions-body {
        padding: 1rem;
    }
    
    .dashboard-content-body {
        padding: 1rem;
    }
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-800);
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category-card h6 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card small {
    margin-top: auto;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --gray-50: #1f2937;
        --gray-100: #374151;
        --gray-200: #4b5563;
        --gray-300: #6b7280;
        --gray-400: #9ca3af;
        --gray-500: #d1d5db;
        --gray-600: #e5e7eb;
        --gray-700: #f3f4f6;
        --gray-800: #f9fafb;
        --gray-900: #ffffff;
    }
    
    body {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
        color: var(--gray-800);
    }
    
    .card {
        background-color: var(--gray-50);
        color: var(--gray-800);
        border: 1px solid var(--gray-200);
    }
    
    .form-control {
        background-color: var(--gray-50);
        border-color: var(--gray-200);
        color: var(--gray-800);
    }
    
    .navbar {
        background: rgba(31, 41, 55, 0.95) !important;
        border-bottom: 1px solid var(--gray-200);
    }
}

/* Add Service Page Styles */
.add-service-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.add-service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.add-service-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.add-service-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.add-service-header h1 i {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.add-service-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.add-service-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.add-service-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.add-service-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.add-service-step i {
    font-size: 1.25rem;
    color: var(--white);
}

.add-service-step span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Add Service Form Card */
.add-service-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.add-service-form-header {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.add-service-form-header h3 {
    color: var(--gray-900);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.add-service-form-header h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.add-service-form-header p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
}

.add-service-form-body {
    padding: 2.5rem;
}

/* Form Enhancements */
.add-service-form .form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.add-service-form .form-control,
.add-service-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.add-service-form .form-control:focus,
.add-service-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.add-service-form .form-text {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.add-service-form .input-group-text {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
    color: var(--gray-700);
    font-weight: 600;
}

.add-service-form .input-group .form-control {
    border-left: none;
}

.add-service-form .input-group .form-control:focus {
    border-left: none;
}

/* Action Buttons */
.add-service-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.add-service-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.add-service-actions .btn-secondary {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.add-service-actions .btn-secondary:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.add-service-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

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

.add-service-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* Responsive Add Service */
@media (max-width: 768px) {
    .add-service-header {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .add-service-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .add-service-header h1 i {
        padding: 0.75rem;
        font-size: 1.25rem;
    }
    
    .add-service-steps {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .add-service-step {
        padding: 0.5rem 1rem;
    }
    
    .add-service-step i {
        font-size: 1rem;
    }
    
    .add-service-step span {
        font-size: 0.8rem;
    }
    
    .add-service-form-header {
        padding: 1.5rem;
    }
    
    .add-service-form-body {
        padding: 1.5rem;
    }
    
    .add-service-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .add-service-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .add-service-header h1 {
        font-size: 1.75rem;
    }
    
    .add-service-header p {
        font-size: 1rem;
    }
    
    .add-service-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .add-service-form-header {
        padding: 1.25rem;
    }
    
    .add-service-form-body {
        padding: 1.25rem;
    }
}

