/* Bootstrap Integration & Custom Overrides */
:root {
    --bs-primary: #1E40AF;
    --bs-primary-rgb: 30, 64, 175;
    --bs-secondary: #3B82F6;
    --bs-success: #10B981;
    --bs-info: #06B6D4;
    --bs-warning: #F59E0B;
    --bs-danger: #EF4444;
    --bs-light: #F8FAFC;
    --bs-dark: #1F2937;
}


/* Professional Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    margin-left: 0.5rem;
}

.brand-name {
    font-size: 1.4rem;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    color: var(--neutral-700) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    display: none; /* Desktop'ta gizle */
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 64, 175, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* WhatsApp Button Enhancement - Desktop */
.navbar-nav .btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.3);
    margin-left: 0.5rem;
    margin-top: 0.23rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.navbar-nav .btn-primary:hover {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.navbar-nav .btn-primary i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Responsive Header */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link i {
        display: inline-block; /* Mobilde göster */
        margin-right: 0.5rem;
    }
    
    .btn-primary {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        height: 48px;
    }
    
    /* Header container padding fix */
    .navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .logo-container i {
        font-size: 1.5rem;
    }
}

/* Custom Bootstrap Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
}

.btn-outline-primary {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

/* Custom Card Styles */
.card {
      border-radius: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.service-card:hover {
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--bs-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

/* Custom Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--bs-dark) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

/* Custom Typography */
.display-3 {
    font-weight: 800;
    line-height: 1.2;
}

.display-4 {
    font-weight: 700;
    line-height: 1.3;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Custom Spacing */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Custom Badge Styles */
.badge {
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Custom Form Styles */
.form-control {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

/* Custom Animation Overrides */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Hero Section Mobile Fix */
    .hero-modern {
        padding: 70px 0 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .hero-trust {
        margin-bottom: 1.5rem;
    }
    
    .financial-dashboard {
        margin-top: 1.5rem;
        max-width: 90%;
        height: 220px;
    }
    
    .dashboard-container {
        padding: 0.8rem;
    }
    
    .chart-visual {
        height: 35px;
    }
    
    .bar {
        width: 5px;
    }
    
    .metric-icon {
        width: 18px;
        height: 18px;
    }
    
    .metric-value {
        font-size: 0.75rem;
    }
    
    .metric-label {
        font-size: 0.6rem;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin: 0;
        width: 100%;
    }
    
    .col-md-6,
    .col-lg-6,
    .col-lg-4,
    .col-lg-3 {
        padding: 0 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Performance Optimizations */
html {
    scroll-behavior: smooth;
    font-display: swap;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-900);
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical CSS - Above the fold */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Reduce Motion for Performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Corporate Color Palette */
:root {
    --primary-color: #1e40af;      /* Deep Blue - Trust & Professionalism */
    --secondary-color: #059669;     /* Green - Growth & Success */
    --accent-color: #dc2626;       /* Red - Urgency & Attention */
    --primary-light: #3b82f6;      /* Light Blue */
    --secondary-light: #10b981;    /* Light Green */
    --accent-light: #ef4444;      /* Light Red */
    --neutral-900: #111827;       /* Dark Gray */
    --neutral-700: #374151;        /* Medium Gray */
    --neutral-500: #6b7280;        /* Light Gray */
    --neutral-100: #f3f4f6;        /* Very Light Gray */
    --neutral-50: #f9fafb;         /* Extra Light Gray */
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles - Optimized */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: var(--white);
    font-display: swap;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-100);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.logo {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo {
    transform: rotate(5deg);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: var(--neutral-100);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-700);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Modern Hero Section */
.hero-modern {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Badge */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.badge-modern:hover {
    background: rgba(30, 64, 175, 0.15);
    transform: translateY(-2px);
}

.badge-modern i {
    color: #fbbf24;
}

/* Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

/* Description */
.hero-description {
    font-size: 1.25rem;
    color: var(--neutral-600);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Stats - Header WhatsApp Button Style */
.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.3);
    margin-left: 0.5rem;
    margin-top: 0.23rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.stat-item:hover {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

/* Buttons - Header WhatsApp Button Style */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.3);
    margin-left: 0.5rem;
    margin-top: 0.23rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    color: white;
    text-decoration: none;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--bs-primary);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.2);
    margin-left: 0.5rem;
    margin-top: 0.23rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    color: var(--bs-primary);
    text-decoration: none;
}

.btn-outline-modern:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

/* Trust Elements */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
}

/* Visual Section */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

/* Financial Dashboard */
.financial-dashboard {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
    animation: pulse 3s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.dashboard-title i {
    font-size: 1.2rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--bs-success);
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-success);
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.active {
    background: var(--bs-success);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Chart Card */
.chart-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0;
}

.chart-header i {
    font-size: 1.2rem;
}

.chart-visual {
    height: 80px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.3rem;
    height: 100%;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, var(--bs-primary), var(--bs-secondary));
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    animation: float 3s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }
.bar:nth-child(5) { animation-delay: 0.8s; }
.bar:nth-child(6) { animation-delay: 1s; }

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

.chart-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.chart-change {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-success);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.metric-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    color: white;
    font-size: 0.9rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-dark);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    font-weight: 500;
    margin-top: 0.1rem;
}


/* Animations */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.5; 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-modern {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .financial-dashboard {
        max-width: 80%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .dashboard-container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .dashboard-header {
        margin-bottom: 1.2rem;
    }
    
    .dashboard-title {
        font-size: 1rem;
    }
    
    .chart-visual {
        height: 50px;
    }
    
    .bar {
        width: 8px;
    }
    
    .chart-value {
        font-size: 0.9rem;
    }
    
    .metrics-grid {
        gap: 0.5rem;
    }
    
    .metric-card {
        padding: 0.5rem;
    }
    
    .metric-icon {
        width: 25px;
        height: 25px;
    }
    
    .metric-icon i {
        font-size: 0.7rem;
    }
    
    .metric-value {
        font-size: 0.8rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .hero-modern {
        padding: 60px 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-trust {
        margin-bottom: 1rem;
    }
    
    .financial-dashboard {
        margin-top: 1rem;
        max-width: 95%;
        height: 200px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-container {
        padding: 0.6rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .chart-visual {
        height: 30px;
    }
    
    .bar {
        width: 4px;
    }
    
    .metric-icon {
        width: 16px;
        height: 16px;
    }
    
    .metric-value {
        font-size: 0.7rem;
    }
    
    .metric-label {
        font-size: 0.55rem;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin: 0;
        width: 100%;
    }
    
    .col-md-6,
    .col-lg-6,
    .col-lg-4,
    .col-lg-3 {
        padding: 0 5px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
}
    
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .financial-dashboard {
        max-width: 85%;
        height: 250px;
        margin-top: 2rem;
    }
    
    .dashboard-container {
        padding: 0.8rem;
    }
    
    .dashboard-header {
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .dashboard-title {
        font-size: 0.9rem;
    }
    
    .chart-visual {
        height: 40px;
    }
    
    .bar {
        width: 6px;
    }
    
    .chart-value {
        font-size: 0.8rem;
    }
    
    .chart-change {
        font-size: 0.7rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .metric-card {
        padding: 0.4rem;
    }
    
    .metric-icon {
        width: 20px;
        height: 20px;
    }
    
    .metric-icon i {
        font-size: 0.6rem;
    }
    
    .metric-value {
        font-size: 0.7rem;
    }
    
    .metric-label {
        font-size: 0.6rem;
    }
    
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.8);
      border-radius: 1px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Trust Items */
.hero-trust {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    font-size: 1rem;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: inline-block;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    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: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-500);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
      border-radius: 1px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-100);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

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

.service-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.6rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--neutral-500);
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    z-index: 1;
}

.pricing::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 30%;
    height: 160%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

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

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

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-title {
    font-size: 1.7rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--neutral-700);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.check-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-title {
    font-size: 2.8rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-500);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-100);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon {
    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;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.contact-text h4 {
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--neutral-500);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
      border-radius: 1px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--neutral-100);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--neutral-900) 0%, #0f172a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.footer-logo-img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: rotate(5deg);
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--neutral-500);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.footer-info p:first-child {
    color: var(--neutral-300);
    font-weight: 500;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-visual {
        margin-top: 3rem;
    }
    
    .vision-mission-item {
        padding: 30px;
        margin-bottom: 2rem;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
    }
    
    .vm-icon img {
        width: 30px;
        height: 30px;
    }
    
    .vision-mission-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-visual {
        margin-top: 2rem;
    }
    
    .vision-mission-item {
        padding: 25px;
    }
    
    .vm-icon {
        width: 50px;
        height: 50px;
    }
    
    .vm-icon img {
        width: 25px;
        height: 25px;
    }
    
    .vision-mission-item h3 {
        font-size: 1.2rem;
    }
    
    .vision-mission-item p {
        font-size: 0.9rem;
    }
    
    /* Detailed Services Mobile */
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #eff6ff;
        color: #2563eb;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        transition: transform 0.3s ease;
    }
    
    .nav-toggle:hover {
        transform: scale(1.1);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

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

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

.animate-slide-in-down {
    animation: slideInDown 0.8s ease-out;
}

.animate-bounce {
    animation: bounce 1s ease-in-out;
}

/* Hover Animations */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured {
    animation: float 4s ease-in-out infinite;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #dbeafe;
}

/* Loading Animations */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Micro-interactions and Enhanced Hover Effects */
.service-card {
    cursor: pointer;
}

.service-card:hover .service-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-card:hover .service-description {
    color: var(--neutral-700);
}

.pricing-card {
    cursor: pointer;
}

.pricing-card:hover .pricing-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pricing-card:hover .amount {
    color: var(--primary-light);
    transform: scale(1.05);
}

.contact-item {
    cursor: pointer;
}

.contact-item:hover .contact-text h4 {
    color: var(--primary-color);
}

.contact-item:hover .contact-text p {
    color: var(--neutral-700);
}

/* Enhanced Button Interactions */
.btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary:active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-secondary:active {
    background-color: var(--primary-light);
    color: var(--white);
}

.btn-outline:active {
    background-color: var(--secondary-light);
    color: var(--white);
}

/* Loading States */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Enhancements */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--secondary-color);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neutral-100);
    z-index: 9999;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: var(--scroll-width, 0%);
    transition: width 0.1s ease;
}

/* Enhanced Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, select, textarea, .service-card, .pricing-card, .contact-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-description {
    font-size: 1.2rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.vision-mission-item {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
    transition: all 0.3s ease;
    height: 100%;
}

.vision-mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.vision-mission-item h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision-mission-item p {
    color: var(--neutral-500);
    line-height: 1.7;
}

/* Detailed Services Section */
.detailed-services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
      border-radius: 1px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--neutral-100);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-detail-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--neutral-700);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: testimonialScroll 60s linear infinite;
    width: calc(400px * 20 + 30px * 19); /* 20 cards with gaps */
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 10 - 30px * 9)); /* Half of total width */
    }
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
      border-radius: 1px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    min-width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--neutral-700);
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--neutral-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* FAQ Section - Clean and Simple */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border: none;
    width: 100%;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--neutral-900);
    font-weight: 600;
    margin: 0;
    text-align: left;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--neutral-700);
    line-height: 1.7;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
      border-radius: 1px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-100);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: var(--neutral-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.blog-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-light);
}

.blog-link:hover::after {
    transform: translateX(3px);
}

/* Blog Post Detail Pages */
.blog-post {
    padding: 100px 0;
    background: var(--white);
}

.blog-post .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
}

.blog-post-content {
    background: var(--white);
      border-radius: 1px;
    overflow: hidden;
}

.blog-post-header {
    padding: 2rem 0;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-post-date {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.blog-post-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-image {
    margin: 2rem 0;
    text-align: center;
}

.blog-post-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.blog-post-body {
    padding: 0 2rem 2rem;
    line-height: 1.8;
}

.blog-post-body h2 {
    font-size: 1.8rem;
    color: var(--neutral-900);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.blog-post-body h3 {
    font-size: 1.4rem;
    color: var(--neutral-800);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.blog-post-body h4 {
    font-size: 1.2rem;
    color: var(--neutral-800);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.blog-post-body p {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-body li {
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.blog-post-body strong {
    color: var(--neutral-900);
    font-weight: 600;
}

/* Alert Boxes */
.alert {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #92400e;
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
    color: #991b1b;
}

.alert-success {
    background: rgba(5, 150, 105, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.alert h4 {
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert li {
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    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-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--neutral-600);
    margin: 0;
}

/* Tables */
.sgk-table,
.cost-table,
.kobi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sgk-table th,
.cost-table th,
.kobi-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.sgk-table td,
.cost-table td,
.kobi-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--neutral-100);
    color: var(--neutral-700);
}

.sgk-table tr:hover,
.cost-table tr:hover,
.kobi-table tr:hover {
    background: var(--neutral-50);
}

/* Incentive List */
.incentive-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.incentive-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--neutral-100);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.incentive-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.incentive-item h4 {
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.incentive-item p {
    color: var(--neutral-600);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 2.5rem;
      border-radius: 1px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: var(--white);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--white);
}

/* Blog Post Footer */
.blog-post-footer {
    padding: 2rem;
    border-top: 1px solid var(--neutral-100);
    background: var(--neutral-50);
}

.blog-post-tags {
    margin-bottom: 2rem;
}

.tag {
    display: inline-block;
    background: var(--neutral-200);
    color: var(--neutral-700);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0 0.5rem 0.5rem 0;
    transition: all 0.3s ease;
}

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

.blog-post-share h4 {
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.share-btn.twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-btn.linkedin {
    background: #0077b5;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
      border-radius: 1px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-100);
}

.sidebar-widget h3 {
    color: var(--neutral-900);
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: block;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.recent-post h4 {
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recent-post:hover h4 {
     color: rgba(7, 4, 4, 0.8);
}

.recent-post-date {
    color: var(--neutral-500);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.recent-post:hover .recent-post-date {
    color: rgba(7, 4, 4, 0.8);
}

.categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--neutral-50);
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-widget .btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-widget .btn:hover {
    background: transparent;
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-post .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-body {
        padding: 0 1rem 1rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .sgk-table,
    .cost-table,
    .kobi-table {
        font-size: 0.85rem;
    }
    
    .sgk-table th,
    .cost-table th,
    .kobi-table th,
    .sgk-table td,
    .cost-table td,
    .kobi-table td {
        padding: 0.5rem;
    }
}

/* WhatsApp Button Styles */
.whatsapp-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
      border-radius: 1px;
    text-align: center;
    color: var(--white);
}

.whatsapp-section h3 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.whatsapp-section p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: #25d366;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f0f0f0;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.whatsapp-fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* File Upload Styles */
.file-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--neutral-50);
    border: 2px dashed var(--neutral-300);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--neutral-700);
    font-weight: 500;
}

.file-label:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.file-label svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

#documents {
    display: none;
}

.file-info {
    margin-top: 0.5rem;
}

.file-info small {
    color: var(--neutral-500);
    font-size: 0.85rem;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Button Loading State */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

/* Form Message Styles */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--neutral-900);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice-text {
    flex: 1;
}

.cookie-notice-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--neutral-300);
}

.cookie-notice-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--neutral-300);
    border: 1px solid var(--neutral-600);
}

.cookie-btn-decline:hover {
    background: var(--neutral-700);
    color: var(--white);
}

.cookie-btn-settings {
    background: var(--secondary-color);
    color: var(--white);
}

.cookie-btn-settings:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
      border-radius: 1px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    margin-bottom: 20px;
}

.cookie-modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
}

.cookie-modal-header p {
    margin: 0;
    color: var(--neutral-600);
    font-size: 14px;
}

.cookie-settings {
    margin-bottom: 30px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--neutral-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: var(--primary-color);
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(26px);
}

.cookie-category-description {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-modal-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.cookie-modal-btn-secondary {
    background: transparent;
    color: var(--neutral-600);
    border: 1px solid var(--neutral-300);
}

.cookie-modal-btn-secondary:hover {
    background: var(--neutral-100);
}

/* Legal Page Styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--neutral-200);
}

.legal-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.legal-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 14px;
    color: var(--neutral-500);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
      border-radius: 1px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--neutral-900);
    font-weight: 600;
}

.contact-info {
    background: var(--neutral-50);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--neutral-200);
    text-align: center;
}

.legal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .legal-subtitle {
        font-size: 18px;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
}
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-fixed-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-fixed-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-section {
        padding: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
}

/* Modern Professional Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
    max-width: 1500px;
    margin: 0 auto;
}

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

/* Column 1: Company Info */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

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

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
}

.contact-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Column Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: rgb(0, 0, 0);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

/* Recent Posts */
.footer-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.recent-post {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.recent-post:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.recent-post h5 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.post-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.post-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Social Media */
.social-media-section {
    margin-top: 30px;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.facebook:hover::before {
    background: #1877f2;
}

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer Bottom */
.footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-left: 20px;
    margin-right: 20px;
    margin: 0 auto;
}

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

.copyright {
    margin: 0;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: var(--primary-light);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-column:nth-child(1) {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo-section {
        align-items: center;
    }
    
    .footer-contact-quick {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .footer-description {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-column:nth-child(1) {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-contact-quick {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-link:hover {
        padding-left: 0;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        padding: 30px 15px 20px;
        gap: 25px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-brand {
        font-size: 20px;
    }
    
    .recent-post {
        padding: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
/* WhatsApp Fixed Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.whatsapp-fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-fixed-btn {
        width: 50px;
        height: 50px;
    }
}
}/ *   S o c i a l   S h a r e   B u t t o n s   * / 
 
 .blog-post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
}

.blog-post-share h4 {
    color: var(--neutral-800);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.blog-post-share h4::before {
    content: '\f1e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--bs-primary);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.share-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.5s;
}

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

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    border-color: #1877f2;
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #166fe5, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
    color: white;
    border-color: #1da1f2;
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #42a5f5);
    color: white;
    border-color: #0077b5;
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #005885, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

/* Share Success Messages */
.share-success-message,
.copy-success-message,
.copy-error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Share Buttons */
@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .blog-post-share {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .share-success-message,
    .copy-success-message,
    .copy-error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Header Container Fix */
.navbar .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 991.98px) {
    .navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* General Mobile Responsive Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin: 0;
        width: 100%;
    }
    
    .col-md-6,
    .col-lg-6,
    .col-lg-4,
    .col-lg-3 {
        padding: 0 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin: 0;
        width: 100%;
    }
    
    .col-md-6,
    .col-lg-6,
    .col-lg-4,
    .col-lg-3 {
        padding: 0 5px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        box-sizing: border-box;
    }
}
