@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #1f78e6;
    --dark-blue: #1a66cc;
    --darker-blue: #1554b3;
    --light-blue: #3d8bea;
    --blue-gradient: linear-gradient(135deg, #1f78e6 0%, #1a66cc 100%);
    
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --lightest-gray: #f8f9fa;
    
    --white: #ffffff;
    --off-white: #fafafa;
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 40px rgba(0,0,0,0.2);
    --shadow-blue: 0 4px 15px rgba(31, 120, 230, 0.3);
    --shadow-blue-hover: 0 6px 20px rgba(31, 120, 230, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--medium-gray);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.45rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-menu-header .logo {
    display: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--lightest-gray);
}

.mobile-nav {
    padding: 2rem 0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a:hover {
    background: var(--lightest-gray);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: var(--lightest-gray);
    border-top: 1px solid #e0e0e0;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue-gradient);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-hover);
}

.mobile-language-switcher {
    display: flex;
    background: var(--lightest-gray);
    border-radius: 20px;
    padding: 4px;
    gap: 2px;
    max-width: 100px;
    margin: 0 auto;
}

.mobile-lang-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 40px;
}

.mobile-lang-btn:hover {
    color: var(--primary-blue);
    background: rgba(31, 120, 230, 0.1);
}

.mobile-lang-btn.active {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(31, 120, 230, 0.3);
}

.mobile-lang-btn.active:hover {
    background: var(--blue-gradient);
    color: var(--white);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark-gray);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.logo img {
    width: auto;
    height: 45px;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--blue-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav a:hover::before {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.header-contact:hover::before {
    left: 100%;
}

.header-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-hover);
}

.header-contact i {
    font-size: 1.1rem;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    background: var(--lightest-gray);
    border-radius: 20px;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 40px;
}

.lang-btn:hover {
    color: var(--primary-blue);
    background: rgba(31, 120, 230, 0.1);
}

.lang-btn.active {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(31, 120, 230, 0.3);
}

.lang-btn.active:hover {
    background: var(--blue-gradient);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%),
        url('https://cdn.prod.website-files.com/65ead8176199e4c9a7b5d35a/65eb1edc608ad00563522593_hero_background-image-01.webp') center/cover;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 120, 230, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -15px) rotate(240deg); }
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.hero-text h1::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--blue-gradient);
    border-radius: 4px;
    animation: slideDown 1.2s ease-out 0.5s both;
}

@keyframes slideDown {
    from { height: 0; }
    to { height: 100%; }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(31, 120, 230, 0.1);
    color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(31, 120, 230, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(31, 120, 230, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 120, 230, 0.2);
}

.badge:nth-child(1) { animation-delay: 0.3s; }
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 0.7s; }

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

.cta-button {
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a66cc 0%, #1554b3 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-hover);
}

/* Section Headers */
h2 {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid rgba(31, 120, 230, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

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

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-card li {
    padding: 8px 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card:hover li {
    color: var(--medium-gray);
}

/* Partners */
.partners {
    padding: 100px 0;
    background: var(--white);
}

.partners h2 {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 15px;
}

.partners h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.partner-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    margin: 0 10px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .partners-logos {
        max-width: 800px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .partner-logo {
        height: 45px;
        max-width: 140px;
        flex: none;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .partners-logos {
        flex-direction: column;
        gap: 2rem;
        max-width: none;
    }
    
    .partner-logo {
        height: 40px;
        max-width: 120px;
        margin: 0;
    }
}

/* Advantages */
.advantages {
    padding: 100px 0;
    background: var(--lightest-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

.advantage-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 120, 230, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.advantage-content {
    padding: 2.5rem;
    padding-top: 1.5rem;
}

.advantage-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.advantage-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learn-more {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blue-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.learn-more:hover::before {
    left: 0;
}

.learn-more:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--blue-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-text h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
}

.trust-text h2::after {
    background: var(--white);
    left: 0;
    transform: none;
}

.trust-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.trust-text .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trust-text .cta-button:hover {
    background: var(--off-white);
    color: var(--dark-blue);
}

.trust-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--lightest-gray);
    padding-bottom: 5px;
}

.testimonials-swiper {
    padding: 40px 20px 60px !important;
    margin-bottom: 2rem;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    border-left: 5px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-left-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(31, 120, 230, 0.1);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.05rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--lighter-gray);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 120, 230, 0.2);
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 6px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(31, 120, 230, 0.2);
}
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-member {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    height: 320px;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2.5rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.team-member:hover .team-overlay {
    transform: translateY(0);
}

.team-overlay h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.modal[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    min-height: auto;
    max-height: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.modal-info {
    padding: 2.5rem;
}

.modal-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.modal-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.modal-info p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Modal List Styling */
.modal-info ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.modal-info li::before {
    content: "✅";
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 1.5rem 0 1rem 0;
}

.close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
}

.close:hover {
}

.close svg {
    width: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.close:hover svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.close:hover svg {
}
/* Consultation Modal Styles */
.consultation-modal {
    max-width: 500px;
    padding: 0;
    background: var(--white);
}

.consultation-header {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.consultation-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.consultation-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.consultation-form {
    padding: 2.5rem 2rem 2rem;
}

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

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(31, 120, 230, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #999;
    font-style: italic;
}

.consultation-submit {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 18px;
}

.consultation-benefits {
    background: var(--lightest-gray);
    padding: 1.5rem 2rem 2rem;
    border-radius: 0 0 16px 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

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

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-message h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive Design for Team */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-content img {
        height: 300px;
    }
    
    .modal-info {
        padding: 2rem;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
}

/* Services List */
.services-list {
    padding: 100px 0;
    background: var(--lightest-gray);
}

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

.services-column h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.services-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.services-column ul {
    list-style: none;
}

.services-column li {
    padding: 10px 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.services-column li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.services-column li:hover {
    color: var(--medium-gray);
    padding-left: 30px;
}

.services-column li:hover:before {
    transform: translateX(5px);
}

.services-list .cta-button {
    display: block;
    margin: 0 auto;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-content p {
    color: var(--light-gray);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content h2::after {
    background: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 20px 45px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background: var(--off-white);
    color: var(--dark-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
       width: 140px;
    height: 35px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-section a:hover {
    color: var(--primary-blue);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #1a66cc 0%, #1554b3 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-hover);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: none;
    padding: 0;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
    background: var(--primary-blue);
    transform: scale(1.1);

.contact-info i {
    color: var(--primary-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .header-content {
        padding: 1rem 0;
    }
    
    .nav {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 30px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text h1::before {
        display: none;
    }
    
    .hero-text h1 br {
        display: none;
    }
    
    .advantages h2 br {
        display: none;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badges {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    /* Services Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    /* Partners Mobile */
    .partners {
        padding: 60px 0;
    }
    
    /* Advantages Mobile */
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Trust Section Mobile */
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .trust-text h2 {
        text-align: center;
    }
    
    .trust-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .trust-image {
        display: none;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-swiper {
        padding: 20px 0 50px;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        height: 280px;
    }
    
    /* Mobile team overlay always visible */
    .team-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.85)) !important;
    }
    
    /* Services List Mobile */
    .services-list {
        padding: 60px 0;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* News Section Mobile */
    .news-section {
        padding: 60px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-content img {
        height: 250px;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.4rem;
    }
    
    /* Consultation Modal Mobile */
    
    .consultation-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .consultation-header h3 {
        font-size: 1.5rem;
    }
    
    .consultation-form {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .consultation-benefits {
        padding: 1.5rem;
    }
    
    /* Typography Mobile */
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .consultation-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .consultation-form {
        padding: 1.5rem 1rem;
    }
    
    .consultation-benefits {
        padding: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}