/* ============ CSS Variables ============ */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --accent: #fbbf24;
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --light: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --text: #1e293b;
    --text-light: #64748b;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-3: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Reset & Base ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
}

/* ============ Preloader ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 20px;
}

.preloader-logo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    margin: 20px auto;
    position: relative;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preloader-text {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============ Top Bar ============ */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 101;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

.contact-info-top {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

    .top-bar-link:hover {
        color: var(--accent);
    }

.top-bar-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition);
}

.top-bar-link:hover .top-bar-icon {
    background: var(--gradient-2);
    color: white;
}

.top-bar-text {
    font-size: 13px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
}

.social-icon-link {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    transition: var(--transition);
}

    .social-icon-link:hover {
        background: var(--gradient-2);
        transform: translateY(-3px);
        color: white;
    }

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

    .lang-dropdown-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFadeIn 0.3s ease;
}

    .lang-dropdown-content.show {
        display: block;
    }

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

    .lang-option:hover {
        background: var(--gray-50);
        color: var(--primary);
    }

    .lang-option.active {
        background: #eff6ff;
        color: var(--primary);
        font-weight: 600;
    }

    .lang-option i {
        margin-left: auto;
        font-size: 12px;
        opacity: 0;
        transition: var(--transition);
        color: #10b981;
    }

    .lang-option.active i {
        opacity: 1;
    }

/* ============ Header ============ */
.header {
    background: white;
    position: relative;
    transition: var(--transition);
    z-index: 100;
}

    .header.scrolled {
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon-wrapper {
    position: relative;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    letter-spacing: -1px;
}

.logo-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: var(--gradient-1);
    border-radius: 18px;
    opacity: 0.3;
    filter: blur(15px);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px;
    position: relative;
    z-index: 101;
}

.menu-toggle-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-1);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
        border-radius: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: white;
    }

        .nav-link:hover::before,
        .nav-link.active::before {
            opacity: 1;
        }

.nav-icon {
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover .nav-icon {
    transform: scale(1.15);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link.active .nav-indicator {
    width: 25px;
}

/* Scroll Progress */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-2);
    width: 0%;
    transition: width 0.1s linear;
    z-index: 10;
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: none;
    padding: 15px 0;
}

    .mobile-contact-btn .btn {
        border-radius: 12px;
        font-weight: 600;
    }

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* ============ Hero Slider ============ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 40%, rgba(37, 99, 235, 0.6) 70%, rgba(59, 130, 246, 0.3) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.min-vh-80 {
    min-height: 80vh;
}

.slide-content {
    color: white;
    padding: 50px 0;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease;
}

.slide-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.text-highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.92;
    animation: fadeInUp 1.2s ease;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-2);
    border: none;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        background: var(--gradient-2);
        color: white;
    }

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

    .btn-outline-light:hover {
        background: white;
        color: var(--primary);
        border-color: white;
    }

.btn-rounded {
    border-radius: 50px;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 16px;
}

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
}

/* Slide Features */
.slide-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

    .feature-tag:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .feature-tag i {
        color: var(--accent);
        font-size: 12px;
    }

/* Slide Image Wrapper */
.slide-image-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 22px;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
    z-index: 3;
}

    .floating-card i {
        font-size: 22px;
        color: var(--accent);
    }

.card-1 {
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    left: 3%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 12%;
    right: 10%;
    animation-delay: 1s;
}

.main-image-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.main-icon {
    font-size: 220px;
    color: rgba(255, 255, 255, 0.08);
}

/* Experience Showcase */
.experience-showcase {
    display: flex;
    align-items: center;
    gap: 25px;
}

.exp-circle {
    width: 160px;
    height: 160px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

.exp-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exp-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .exp-detail-item i {
        color: #10b981;
        font-size: 16px;
    }

/* Tech Showcase */
.tech-showcase {
    position: relative;
    width: 350px;
    height: 350px;
}

.tech-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: white;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

.tech-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.5);
    animation: techPulse 2s infinite;
}

.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tech-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: orbitFloat 3s ease-in-out infinite;
}

.icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.icon-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

    .dot.active {
        background: white;
        border-color: var(--accent);
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-2);
    width: 0%;
    transition: width 0.1s linear;
}

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 13px;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Header Modern */
.section-header-modern {
    margin-bottom: 50px;
}

.section-icon-circle {
    display: inline-flex;
    width: 65px;
    height: 65px;
    background: var(--gradient-1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
    margin: 15px auto;
}

/* ============ Service Cards ============ */
.services-section {
    background: white;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-1);
        opacity: 0;
        transition: var(--transition);
        z-index: 0;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
        border-top-color: var(--secondary);
    }

        .service-card:hover * {
            position: relative;
            z-index: 1;
        }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.feature-tag-small {
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

/* Service Card Detailed */
.service-card-detailed {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

    .service-card-detailed:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
        border-bottom-color: var(--primary);
    }

.service-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-emoji-large {
    display: inline-block;
    animation: bounce 2s infinite;
}

.service-card-detailed h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-detailed p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

    .service-features-list .feature-tag {
        background: var(--gray-50);
        padding: 8px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

        .service-features-list .feature-tag i {
            color: #10b981;
            font-size: 12px;
        }

.service-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ Statistics ============ */
.statistics-section {
    background: var(--gradient-1);
    color: white;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-card h3 {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* ============ Why Us ============ */
.why-us-section {
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    transition: var(--transition);
    border-radius: var(--radius-xl);
}

    .feature-box:hover {
        background: var(--gray-50);
        transform: translateY(-5px);
    }

    .feature-box i {
        font-size: 48px;
        color: var(--primary);
        margin-bottom: 20px;
        transition: var(--transition);
    }

    .feature-box:hover i {
        color: var(--secondary);
        transform: scale(1.1);
    }

    .feature-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .feature-box p {
        color: var(--gray-600);
        font-size: 14px;
    }

/* ============ CTA ============ */
.cta-section {
    background: var(--gradient-1);
    color: white;
    padding: 70px 0;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ Page Headers Advanced ============ */
.page-header-advanced {
    position: relative;
    overflow: hidden;
    color: white;
}

.header-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: shapeFloat 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 8%;
    animation-delay: 5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 35%;
    left: -50px;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -40px) rotate(90deg);
    }

    50% {
        transform: translate(0, -80px) rotate(180deg);
    }

    75% {
        transform: translate(-40px, -40px) rotate(270deg);
    }
}

.header-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(37, 99, 235, 0.5) 100%);
    z-index: 1;
}

.min-vh-40 {
    min-height: 40vh;
    padding: 80px 0 160px;
}

.min-vh-30 {
    min-height: 30vh;
    padding: 60px 0 130px;
}

.contact-header {
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
}

.about-header {
    background: linear-gradient(135deg, #1e293b 0%, #1d4ed8 100%);
}

.services-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.projects-header {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
}

.partners-header {
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
}

.privacy-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.page-header-advanced .container {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

    .header-badge i {
        color: var(--accent);
    }

.header-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.header-description {
    font-size: 18px;
    opacity: 0.92;
    max-width: 600px;
}

.breadcrumb-advanced {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 15px;
    display: inline-block;
}

    .breadcrumb-advanced .breadcrumb {
        margin: 0;
        background: transparent;
    }

    .breadcrumb-advanced .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.85);
    }

    .breadcrumb-advanced .breadcrumb-item.active {
        color: var(--accent);
    }

.header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

    .header-wave svg {
        display: block;
    }

/* ============ About Page Styles ============ */
.our-story-section {
    background: white;
}

.story-content .lead {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 15px;
    font-weight: 500;
}

.story-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 15px;
    transition: var(--transition);
}

    .highlight-item:hover {
        background: #eff6ff;
    }

    .highlight-item i {
        color: #10b981;
        font-size: 20px;
        margin-top: 3px;
    }

    .highlight-item h5 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .highlight-item p {
        font-size: 13px;
        color: var(--gray-500);
        margin: 0;
    }

.story-images-wrapper {
    position: relative;
    padding: 20px;
}

.story-main-image {
    position: relative;
    z-index: 2;
}

.story-secondary-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.experience-badge-large {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 3;
    background: var(--gradient-2);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
}

.years {
    font-size: 36px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.text {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.9;
}

/* MVV Cards */
.mvv-section {
    background: var(--gray-50);
}

.mvv-card {
    perspective: 1000px;
    height: 280px;
}

.mvv-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.mvv-card:hover .mvv-card-inner {
    transform: rotateY(180deg);
}

.mvv-card-front,
.mvv-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-card .mvv-card-front {
    background: var(--gradient-1);
    color: white;
}

.vision-card .mvv-card-front {
    background: var(--gradient-2);
    color: white;
}

.values-card .mvv-card-front {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.mvv-card-back {
    background: white;
    transform: rotateY(180deg);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    font-size: 45px;
    margin-bottom: 18px;
}

.flip-hint {
    margin-top: 15px;
    font-size: 11px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.mvv-card-back h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.mvv-card-back p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.mvv-card-back ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card-back li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

    .mvv-card-back li i {
        color: #10b981;
    }

/* Timeline Advanced */
.timeline-section {
    background: white;
}

.timeline-advanced {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item-advanced {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

    .timeline-item-advanced.left {
        margin-right: auto;
        padding-right: 50px;
    }

    .timeline-item-advanced.right {
        margin-left: auto;
        padding-left: 50px;
    }

.timeline-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .timeline-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

.timeline-year-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.timeline-card-image {
    height: 180px;
    overflow: hidden;
    background: var(--gray-200);
}

    .timeline-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.timeline-card:hover .timeline-card-image img {
    transform: scale(1.1);
}

.timeline-card-content {
    padding: 25px;
}

    .timeline-card-content h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .timeline-card-content p {
        font-size: 14px;
        color: var(--gray-600);
        line-height: 1.6;
    }

.timeline-tags {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

    .timeline-tags span {
        background: var(--gray-100);
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        color: var(--gray-600);
    }

/* Team Cards */
.team-section {
    background: var(--gray-50);
}

.team-card-advanced {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .team-card-advanced:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.team-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--gray-200);
}

    .team-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.team-card-advanced:hover .team-social-overlay {
    bottom: 0;
}

.team-social-overlay a {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

    .team-social-overlay a:hover {
        background: var(--gradient-2);
        color: white;
        transform: translateY(-5px);
    }

.team-info-advanced {
    padding: 25px;
    text-align: center;
}

    .team-info-advanced h4 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 5px;
    }

.position-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info-advanced p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Certifications */
.certifications-section {
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.certificate-card-advanced {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .certificate-card-advanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .certificate-card-advanced:hover::before {
        transform: scaleX(1);
    }

    .certificate-card-advanced:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.cert-icon-wrapper {
    width: 75px;
    height: 75px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
}

.certificate-card-advanced h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.certificate-card-advanced p {
    font-size: 13px;
    color: var(--gray-500);
}

.cert-date {
    display: inline-block;
    background: var(--gray-100);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
    color: var(--gray-600);
}

/* ============ Services Page Styles ============ */
.services-detailed {
    background: #f8fafc;
}

.process-section {
    background: white;
}

.process-steps-advanced {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step-modern {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 180px;
    max-width: 250px;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    align-self: center;
    margin-top: -80px;
    border-radius: 2px;
}

.process-step-modern h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step-modern p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============ Projects Page Styles ============ */
.filter-section {
    background: #f8fafc;
}

.filter-wrapper-modern {
    background: white;
    padding: 25px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.filter-pills-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-pill {
    background: var(--gray-100);
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gray-700);
}

    .filter-pill i {
        font-size: 14px;
    }

    .filter-pill.active,
    .filter-pill:hover {
        background: var(--gradient-1);
        color: white;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }

.projects-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.counter-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

/* Project Card Premium */
.projects-grid-section {
    background: white;
}

.project-card-premium {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .project-card-premium:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
    }

.project-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--gray-200);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-premium:hover .project-img {
    transform: scale(1.12);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-card-premium:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
}

.project-category-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.overlay-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-desc {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    flex-wrap: wrap;
}

    .project-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .project-meta i {
        color: var(--accent);
    }

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.btn-view-details {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

    .btn-view-details:hover {
        background: white;
        color: var(--primary);
    }

/* Project Modal */
.project-modal-premium .modal-content {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: none;
}

.modal-header-premium {
    background: var(--gradient-1);
    color: white;
    padding: 25px 30px;
    position: relative;
}

    .modal-header-premium .modal-category {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .modal-header-premium h3 {
        margin: 0;
        font-weight: 700;
        font-size: 24px;
    }

.btn-close-white {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-close-white:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: rotate(90deg);
    }

.project-details-premium {
    padding: 20px;
}

    .project-details-premium h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
    }

.detail-list {
    margin: 20px 0;
}

.detail-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 10px;
    margin-bottom: 10px;
}

    .detail-item-modern i {
        color: var(--primary);
        font-size: 16px;
        width: 24px;
        text-align: center;
    }

/* ============ Partners Page Styles ============ */
.partners-stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.stats-row-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stat-item-premium {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .stat-item-premium:last-child {
        border-right: none;
    }

.stat-icon-premium {
    width: 55px;
    height: 55px;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.stat-value-premium {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.stat-label-premium {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
}

/* Partner Card Modern */
.partners-grid-section {
    background: white;
}

.partner-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

    .partner-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.partner-card-front {
    padding: 35px 25px;
    text-align: center;
}

.partner-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo-img {
    max-height: 80px;
    filter: grayscale(30%);
    transition: var(--transition);
}

.partner-card-modern:hover .partner-logo-img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.partner-info-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.partner-rating-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 14px;
}

.partner-years-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

    .partner-years-badge i {
        color: var(--secondary);
    }

.partner-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-card-modern:hover .partner-card-back {
    opacity: 1;
    visibility: visible;
}

.partner-card-back h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.partner-card-back p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-specialties {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.specialty-tag {
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

/* Partnership Types */
.partnership-types-section {
    background: var(--gray-50);
}

.type-card-premium {
    background: white;
    padding: 40px 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

    .type-card-premium:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.type-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin: 0 auto 25px;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: iconGlow 2s infinite;
}

@keyframes iconGlow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.type-card-premium h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.type-card-premium p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.type-percentage {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonial-card-premium {
    background: white;
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

    .testimonial-card-premium:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-left-color: var(--primary);
    }

.testimonial-quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

    .testimonial-author-premium img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--gray-200);
        object-fit: cover;
    }

    .testimonial-author-premium h5 {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
    }

    .testimonial-author-premium span {
        font-size: 12px;
        color: var(--gray-500);
    }

/* CTA Premium */
.cta-premium-section {
    background: var(--gradient-1);
}

.cta-premium-wrapper {
    padding: 50px 40px;
    color: white;
}

    .cta-premium-wrapper h2 {
        font-size: 32px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .cta-premium-wrapper p {
        font-size: 16px;
        opacity: 0.9;
        margin: 0;
    }

.btn-rounded-premium {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-light {
    background: white;
    color: var(--primary);
    border: none;
}

    .btn-light:hover {
        background: var(--gradient-2);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

/* ============ Contact Page Styles ============ */
.section {
    padding: 60px 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-card p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control {
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        outline: none;
    }

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    }

/* ============ Privacy Page Styles ============ */
.privacy-content-section {
    background: #f8fafc;
    padding: 60px 0;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.privacy-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin: 0 auto 20px;
}

.privacy-intro .lead {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 15px;
}

.privacy-section-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    border-left: 4px solid transparent;
    transition: var(--transition);
}

    .privacy-section-card:hover {
        border-left-color: var(--primary);
        transform: translateX(-5px);
        box-shadow: var(--shadow-lg);
    }

.privacy-section-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
}

.privacy-section-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.privacy-details h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
    margin-top: 20px;
}

.privacy-details p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-details ul {
    list-style: none;
    padding: 0;
}

    .privacy-details ul li {
        padding: 8px 0;
        color: var(--gray-600);
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid var(--gray-100);
    }

        .privacy-details ul li:last-child {
            border-bottom: none;
        }

        .privacy-details ul li i {
            color: #10b981;
            font-size: 14px;
            flex-shrink: 0;
        }

        .privacy-details ul li strong {
            color: var(--dark);
        }

.highlight-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left-color: var(--primary) !important;
}

.contact-methods {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
}

    .contact-method-item i {
        width: 40px;
        height: 40px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        flex-shrink: 0;
    }

    .contact-method-item strong {
        display: block;
        color: var(--dark);
        margin-bottom: 3px;
    }

    .contact-method-item p {
        margin: 0;
        color: var(--gray-600);
    }

    .contact-method-item a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }

        .contact-method-item a:hover {
            text-decoration: underline;
        }

/* ============ Footer Advanced ============ */
.footer-advanced {
    background: var(--dark);
    color: white;
    position: relative;
}

.footer-wave {
    position: relative;
    margin-top: -1px;
}

    .footer-wave svg {
        display: block;
    }

.footer-main {
    padding: 60px 0 30px;
}

.footer-grid-advanced {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.footer-logo h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 10px;
    opacity: 0.6;
    margin: 0;
}

.footer-about {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    transition: var(--transition);
}

    .social-circle:hover {
        background: var(--gradient-2);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    }

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient-2);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a i {
            font-size: 10px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

            .footer-links a:hover i {
                color: var(--accent);
            }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact-list li {
        margin-bottom: 18px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

.footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

    .footer-contact-link:hover {
        color: var(--accent);
    }

.footer-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-label {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    margin-bottom: 3px;
}

.footer-contact-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom-advanced {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom-content p {
        margin: 0;
        font-size: 14px;
        color: #64748b;
    }

    .footer-bottom-content strong {
        color: white;
    }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: #64748b;
        font-size: 13px;
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-bottom-links a:hover {
            color: var(--accent);
        }

/* ============ Floating Contact ============ */
.floating-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-contact-main {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

    .floating-contact-main:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
    }

    .floating-contact-main.active {
        background: #ef4444;
        transform: rotate(45deg);
    }

        .floating-contact-main.active i {
            transform: rotate(-45deg);
        }

.floating-contact-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    z-index: -1;
    animation: floatingPulse 2.5s ease-out infinite;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.floating-contact-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    z-index: -1;
    animation: floatingRing 3s ease-out infinite;
}

@keyframes floatingRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.floating-contact-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

    .floating-contact-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

.floating-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

    .floating-contact-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        transition: var(--transition);
    }

.phone-item::before {
    background: #3b82f6;
}

.whatsapp-item::before {
    background: #25d366;
}

.email-item::before {
    background: #f59e0b;
}

.callback-item::before {
    background: #8b5cf6;
}

.floating-contact-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.floating-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--transition);
}

.phone-item .floating-item-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.whatsapp-item .floating-item-icon {
    background: #f0fdf4;
    color: #25d366;
}

.email-item .floating-item-icon {
    background: #fffbeb;
    color: #f59e0b;
}

.callback-item .floating-item-icon {
    background: #f5f3ff;
    color: #8b5cf6;
}

.floating-contact-item:hover .floating-item-icon {
    transform: scale(1.1);
}

.phone-item:hover .floating-item-icon {
    background: #3b82f6;
    color: white;
}

.whatsapp-item:hover .floating-item-icon {
    background: #25d366;
    color: white;
}

.email-item:hover .floating-item-icon {
    background: #f59e0b;
    color: white;
}

.callback-item:hover .floating-item-icon {
    background: #8b5cf6;
    color: white;
}

.floating-item-label {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

.floating-item-sub {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
}

.floating-contact-item:nth-child(1) {
    transition-delay: 0.1s;
}

.floating-contact-item:nth-child(2) {
    transition-delay: 0.2s;
}

.floating-contact-item:nth-child(3) {
    transition-delay: 0.3s;
}

.floating-contact-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============ Back to Top ============ */
.back-to-top-advanced {
    position: fixed;
    bottom: 110px;
    right: 37px;
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

    .back-to-top-advanced.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top-advanced:hover {
        background: var(--gradient-1);
        color: white;
        transform: translateY(-5px);
    }

.back-to-top-progress {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 52px;
    height: 52px;
}

    .back-to-top-progress svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }

    .back-to-top-progress path {
        transition: stroke-dashoffset 0.1s linear;
    }

/* ============ Callback Modal ============ */
.callback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .callback-modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.callback-modal {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-xl);
}

.callback-modal-overlay.show .callback-modal {
    transform: translateY(0) scale(1);
}

.callback-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-600);
    transition: var(--transition);
}

    .callback-modal-close:hover {
        background: #ef4444;
        color: white;
        transform: rotate(90deg);
    }

.callback-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.callback-modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.callback-modal-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.callback-modal-header p {
    color: var(--gray-500);
    font-size: 14px;
}

.callback-form-group {
    margin-bottom: 20px;
}

    .callback-form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--dark);
        font-size: 14px;
    }

    .callback-form-group input,
    .callback-form-group select {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid var(--gray-200);
        border-radius: 15px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        transition: var(--transition);
        background: var(--gray-50);
    }

        .callback-form-group input:focus,
        .callback-form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

.callback-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

    .callback-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    }

/* Callback Success */
.callback-success {
    display: none;
    text-align: center;
    padding: 20px;
}

    .callback-success.show {
        display: block;
    }

.callback-success-icon {
    width: 70px;
    height: 70px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* ============ Animations ============ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

@keyframes techPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes orbitFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ Responsive Design ============ */
@media (max-width: 1200px) {
    .footer-grid-advanced {
        grid-template-columns: 1fr 1fr;
    }

    .slide-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 99;
        overflow-y: auto;
    }

        .nav-menu-wrapper.show {
            right: 0;
        }

    .nav-menu {
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        padding: 12px 15px;
        justify-content: flex-start;
    }

    .mobile-contact-btn {
        display: block;
        margin-top: 20px;
    }

    .footer-grid-advanced {
        grid-template-columns: 1fr;
    }

    .slide-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .header-title {
        font-size: 38px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item-advanced {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .stats-row-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item-premium:nth-child(2) {
        border-right: none;
    }

    .process-steps-advanced {
        flex-direction: column;
    }

    .process-connector {
        width: 3px;
        height: 30px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .header-title {
        font-size: 30px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .btn-rounded {
        justify-content: center;
    }

    .slider-dots {
        bottom: 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .floating-contact-wrapper {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-main {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-contact-menu {
        bottom: 65px;
    }

    .floating-contact-item {
        padding: 10px 15px;
    }

    .floating-item-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .floating-item-label {
        font-size: 12px;
    }

    .floating-item-sub {
        display: none;
    }

    .back-to-top-advanced {
        bottom: 80px;
        right: 27px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .stats-row-premium {
        grid-template-columns: 1fr;
    }

    .stat-item-premium {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

        .stat-item-premium:last-child {
            border-bottom: none;
        }

    .filter-pills-modern {
        flex-direction: column;
    }

    .filter-pill {
        justify-content: center;
    }

    .projects-counter {
        justify-content: center;
    }

    .mvv-card {
        height: 240px;
    }

    .callback-modal {
        padding: 25px;
        width: 95%;
    }
}
