/* Nova Göç Danışmanlık - 2025 Modern CSS Stilleri */

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #818cf8;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 40px rgba(99, 102, 241, 0.25);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(79, 70, 229, 0.9) 50%, rgba(124, 58, 237, 0.85) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    --border-radius: 20px;
    --border-radius-small: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Genel Stiller */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 140px; /* Modern header için padding */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

/* Typography */
.display-4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 2.25rem;
    font-weight: 400;
}

/* Modern Header Styles */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.header-modern.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

/* Modern Top Bar */
.top-bar-modern {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e293b 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.15) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar-info-modern {
    display: flex;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    transition: var(--transition);
    position: relative;
}

.info-item:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.info-item i {
    font-size: 12px;
    opacity: 0.8;
}

.top-bar-social-modern {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Modern Navigation */
.nav-modern {
    padding: 15px 0;
    position: relative;
}

.nav-wrapper-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Modern Logo */
.nav-logo-modern {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.logo-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.logo-link:hover .logo-icon-modern {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-strong);
}

.logo-link:hover .logo-icon-modern::before {
    transform: translateX(100%);
}

.logo-text-modern {
    display: flex;
    flex-direction: column;
}

.logo-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-subtitle-modern {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Modern Navigation Menu */
.nav-menu-modern {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-small);
    opacity: 0;
    transition: var(--transition);
}

.nav-link-modern:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link-modern:hover::before {
    opacity: 1;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition);
}

.nav-link-modern:hover .nav-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.nav-text {
    position: relative;
    z-index: 1;
}

/* Modern Dropdown */
.dropdown-modern {
    position: relative;
}

.dropdown-toggle-modern {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.dropdown-modern:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-modern:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    position: relative;
}

.dropdown-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.dropdown-item-modern:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item-modern:hover::before {
    width: 4px;
}

.dropdown-item-modern i {
    font-size: 16px;
    opacity: 0.7;
    transition: var(--transition);
}

.dropdown-item-modern:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Modern Action Buttons */
.nav-actions-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.btn-call-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.btn-call-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.btn-call-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.35);
}

.btn-call-modern:hover .btn-call-ripple {
    width: 300px;
    height: 300px;
}

/* Modern Mobile Menu Toggle */
.mobile-menu-toggle-modern {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle-modern.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle-modern.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-modern.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    #anasayfa i.fas.fa-passport {
        display:none;
    }
    .about-image{
        display:none;
    }
    .lead {
        font-size:14px!important;
    }
    #anasayfa .d-flex.gap-3 {
        display:flex;
        justify-content:center;
    }

    .nav-menu-modern {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-soft);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu-modern.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list-modern {
        flex-direction: column;
        gap: 0;
    }

    .nav-item-modern {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-item-modern:last-child {
        border-bottom: none;
    }

    .nav-link-modern {
        padding: 16px 0;
        justify-content: space-between;
    }

    .dropdown-menu-modern {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin-top: 10px;
        background: transparent;
        border: none;
    }

    .mobile-menu-toggle-modern {
        display: block;
    }

    .btn-call-modern span {
        display: none;
    }

    .btn-call-modern {
        padding: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    .top-bar-modern {
        display: none;
    }

    .nav-modern {
        padding: 10px 0;
    }

    .logo-title-modern {
        font-size: 20px;
    }

    .logo-subtitle-modern {
        font-size: 10px;
    }

    .logo-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav-wrapper-modern {
        gap: 15px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(10px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover::before {
    transform: scale(1);
}

.whatsapp-btn i {
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero),
        url('https://images.unsplash.com/photo-1576185850227-1f72b7f8d483?q=80&w=1551&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -140px;
    padding-top: 140px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    opacity: 0.6;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-section .btn-light:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.min-vh-90 {
    min-height: 90vh;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-image-wrap {
        margin-bottom: 1.5rem;
    }
    
    .hero-card {
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 15px;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 20px;
    align-items: end;
}

.hero-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
    max-width: 360px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius-small);
    font-weight: 600;
    padding: 12px 30px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Cards */
.service-card {
    transition: var(--transition);
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto;
    transition: var(--transition);
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.1);
}

/* Stats Section */
.stats-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* About Section */
.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.about-image {
    position: relative;
}

/* Mission Vision Cards */
.mission-card, .vision-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto;
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

/* Process Section */
.process-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-right: 15px;
}

.author-info h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Regions Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.region-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.region-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.region-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.form-control {
    border-radius: var(--border-radius-small);
    border: 2px solid #e5e7eb;
    padding: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .region-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .service-detail-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .process-card {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .service-detail-card {
        padding: 20px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(99, 102, 241, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 