/* CSS Variables */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #0b85cb;
    --secondary: #0c8fda;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    
    /* Custom Background Colors */
    --bg-dark: #002b32;
    --bg-light: #e8e8e8;
    --bg-white: #ffffff;
    --bg-footer: #000000;
    
    /* Gradient Backgrounds */
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e8e8e8 100%);
    --gradient-dark: linear-gradient(135deg, #1a2d3a 0%, #2a3d4a 100%);
    --gradient-white: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-footer: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    
    /* Additional Accent Colors */
    --accent-1: #0c8fda;
    --accent-2: #0e2e57;
    --accent-3: #0b85cb;
    --accent-4: #15355c;
}

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

body {
    font-family: var(--font-family-sans-serif);
    line-height: 1.6;
    color: var(--white);
    background-image: url('static/img/hero3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sticky header effect when scrolled */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header {
    background: rgba(52, 58, 64, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

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


.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions i {
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-actions i:hover {
    color: var(--accent-1);
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}
h2.section-title {
    text-transform: uppercase;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('static/img/hero1.jpg');
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 3s ease-in-out;
}


.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 43, 50, 0.7) 0%, rgba(0, 61, 71, 0.7) 50%, rgba(0, 77, 90, 0.7) 100%);
    z-index: 1;
}

.hero-background::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23C0CF13" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.hero-title-blue {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(12, 143, 218, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-3) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(12, 143, 218, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-1);
}

.btn-secondary:hover {
    background: var(--accent-1);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--bg-dark);
}


/* Content Blocks */
.content-blocks {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.content-block {
    background: var(--gradient-white);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.content-block h3 {
    color: var(--bg-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-block p {
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-dark), var(--dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-thumbnail::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"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C0CF13" stroke-width="2" opacity="0.3"/><path d="M35 30 L35 70 L65 50 Z" fill="%23C0CF13"/></svg>');
    background-size: 60px 60px;
    background-position: center;
    background-repeat: no-repeat;
}

.video-thumbnail i {
    font-size: 3rem;
    color: var(--accent-1);
    z-index: 1;
}

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

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
    text-align: center;
    position: relative;
}

.company-overview::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 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23C0CF13" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.company-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.company-description {
    font-size: 1.2rem;
    color: var(--light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Company Facts */
.company-facts {
    padding: 40px 0;
    background: var(--gradient-white);
}

.company-facts .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.company-facts .stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(12, 143, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.company-facts .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.company-facts .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 143, 218, 0.2);
    border-color: var(--accent-1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.company-facts .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(12, 143, 218, 0.1);
}

.company-facts .stat-label {
    font-size: 1.1rem;
    color: var(--bg-dark);
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
}

/* Our Guarantees */
.guarantees-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.guarantee-card {
    background: var(--gradient-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.guarantee-icon i {
    font-size: 2rem;
    color: var(--dark);
}

.guarantee-card h3 {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.guarantee-card p {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--gradient-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.why-item h3 {
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-item p {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* How to Find Work */
.how-to-work-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gradient-white);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-right: 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

.cta-container {
    text-align: center;
}

/* Six Facts About Company */
.six-facts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.six-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fact-card {
    background: var(--gradient-white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.fact-card .fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 20px;
    display: block;
}

.fact-card h3 {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.fact-card p {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.trusted-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trusted-logos {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 40px;
    align-items: center;
    width: calc(200% + 40px); /* Double width to accommodate duplicates */
}

.trusted-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-white);
    border-radius: 10px;
    border: 1px solid transparent;
}

.logo-placeholder {
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--gray-dark), var(--dark));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
}


/* Vacancies Section */
.vacancies-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vacancy-card {
    background: var(--gradient-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 15px;
}

.vacancy-card h3 {
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-name {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.location {
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.salary {
    color: var(--accent-1);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: var(--gradient-white);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    margin: 0 auto 20px;
    position: relative;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
}

.team-member h3 {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--gradient-white);
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-item h3 {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px 15px;
    cursor: pointer;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-1);
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item p {
    color: var(--bg-dark);
    padding: 0 30px 25px;
    line-height: 1.6;
    display: none;
    opacity: 0.8;
}

.faq-item.active p {
    display: block;
}

.faq-item.active h3::after {
    content: '−';
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #002b3285;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gradient-white);
    border-radius: 10px;
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--accent-1);
}

.contact-item i {
    color: var(--accent-1);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: var(--bg-dark);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-footer);
    padding: 50px 0 20px;
    border-top: 1px solid transparent;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-contacts {
    flex: 1;
    max-width: 400px;
}

.footer-company {
    flex: 1;
    max-width: 400px;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contacts .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
    background: transparent;
    border: none;
}


.footer-contacts .contact-item i {
    color: var(--white);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contacts .contact-item span {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
}

.footer-company .license-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-company p {
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(192, 207, 19, 0.3);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--white);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Sticky header for mobile */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
    }
    
    header.scrolled {
        background: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title-white,
    .hero-title-blue {
        display: block;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-title {
        font-size: 2rem;
    }
    
    .blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .vacancies-grid {
        grid-template-columns: 1fr;
    }
    

    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }
    
    .footer-contacts,
    .footer-company {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        width: calc(50% - 15px);
        min-width: 150px;
    }
    
    .btn {
        padding: 17px 25px;
        font-size: 15px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* Section Title Colors */
.guarantees-section .section-title,
.how-to-work-section .section-title,
.trusted-by-section .section-title,
.team-section .section-title,
.contact-section .section-title {
    color: var(--white);
}

.content-blocks .section-title,
.company-facts .section-title,
.why-choose-section .section-title,
.six-facts-section .section-title,
.vacancies-section .section-title,
.faq-section .section-title {
    color: var(--bg-dark);
}

/* Additional Styles for New Structure */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile-menu-toggle {
    display: none;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-icon span {
    width: 25px;
    height: 3px;
    background: var(--accent-4);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: #15355c;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--accent-1);
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    /* background: var(--bg-dark); */
    z-index: 1003;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
    background: var(--gradient-white);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    /* border-bottom: 1px solid rgba(192, 207, 19, 0.2); */
}

.mobile-menu-close {
    font-size: 24px;
    color: var(--bg-dark);
    cursor: pointer;
}

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

.mobile-logo img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    /* border-bottom: 1px solid rgba(192, 207, 19, 0.1); */
    transition: background 0.3s ease;
}

.mobile-menu-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-item a {
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    flex: 1;
}

.mobile-menu-item i {
    color: var(--accent-4);
    font-size: 14px;
}

/* Facts Section */
.facts {
    padding: 80px 0;
    background: var(--gradient-white);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(12, 143, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 143, 218, 0.2);
    border-color: var(--accent-1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

.fact-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(12, 143, 218, 0.1);
}

.fact-text {
    font-size: 1.1rem;
    color: var(--bg-dark);
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
}

/* Guarantees Section */
.guarantees {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.guarantees .section-title {
    color: var(--white);
}

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

.guarantee-card {
    background: var(--gradient-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

.guarantee-title {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.guarantee-text {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--gradient-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--gradient-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-text {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* How to Work Section */
.how-to-work {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.how-to-work .section-title {
    color: var(--white);
}

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

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gradient-white);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-right: 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.step-content {
    flex: 1;
}

.step-title {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

.how-to-work-cta {
    text-align: center;
}

/* Facts 6 Section */
.facts-6 {
    padding: 80px 0;
    background: var(--gradient-light);
}

.facts-6-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fact-6-card {
    background: var(--gradient-white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-6-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.fact-6-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.fact-6-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 20px;
    display: block;
}

.fact-6-title {
    color: var(--bg-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.fact-6-text {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
}

.facts-6-cta {
    text-align: center;
}

/* Vacancies Section */
.vacancies {
    padding: 80px 0;
    background: var(--gradient-light);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.vacancy-card {
    background: var(--gradient-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-1);
    margin-bottom: 15px;
}

.vacancy-card h3 {
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-name {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.location {
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.salary {
    color: var(--accent-1);
    font-size: 1.1rem;
    font-weight: 600;
}

.vacancies-cta {
    text-align: center;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.team .section-title {
    color: var(--white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--gradient-white);
    /* padding: 30px 20px; */
    border-radius: 15px;
    /* border: 1px solid transparent; */
    transition: all 0.3s ease;
    width: calc(25% - 22.5px);
    min-width: 200px;
    max-width: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-1);
}

.team-photo {
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.photo-placeholder {
    /* width: 60px;
    height: 60px; */
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder i {
    color: var(--accent-1);
    font-size: 2rem;
}

.team-name {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 600;
    /* margin-bottom: 5px; */
    margin: 10px;
}

.team-position {
    color: var(--primary);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--gradient-light);
}

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

.faq-item {
    background: var(--gradient-white);
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px 15px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question i {
    color: var(--accent-1);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--bg-dark);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.trust .section-title {
    color: var(--white);
}

.trust-carousel {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 40px;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.trust-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.trust-card {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-white);
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 10px;
}

.trust-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1.1rem;
}


/* Footer */
footer {
    background: var(--gradient-footer);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column {
    flex: 1;
    max-width: 400px;
}

.footer-section-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
    background: transparent;
    border: none;
}


.contact-item i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a,
.contact-item span {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}

.contact-item a:hover {
    color: #007bff;
}

.company-info {
    margin-top: 20px;
}

.license-text {
    margin-bottom: 15px;
}

.license-text a {
    color: #007bff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.license-text a:hover {
    color: #ffffff;
}

.company-description {
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.footer-divider {
    display: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--gradient-white);
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 2001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 0;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    color: var(--bg-dark);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-1);
}

.modal-form {
    padding: 20px 40px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: var(--gradient-white);
    color: var(--bg-dark);
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.manager-info {
    padding: 40px;
    text-align: center;
}

.manager-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.manager-text {
    margin-bottom: 30px;
}

.manager-subtitle {
    color: var(--bg-dark);
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.manager-name {
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.manager-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-telegram:hover {
    background: #006ba3;
    transform: translateY(-2px);
}

/* Additional Responsive Styles for New Sections */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        width: 90%;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-6-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .trust-carousel {
        gap: 20px;
    }
    
    .trust-card {
        width: 120px;
        height: 60px;
    }
    

    
    .footer-content {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }
    
    .footer-column {
        max-width: 100%;
    }
    
    .manager-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 90%;
        margin: 20px;
    }
    
    .manager-info {
        padding: 40px 30px;
    }
    
    .manager-photo {
        width: 140px;
        height: 140px;
        margin-bottom: 30px;
    }
    
    .manager-name {
        font-size: 1.6rem;
    }
    
    .btn-whatsapp,
    .btn-telegram {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .guarantee-card,
    .why-item,
    .fact-card {
        padding: 20px;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
    }
    
    .guarantee-icon i {
        font-size: 1.5rem;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-icon i {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
}

/* Vacancy Card Styles with Logos */
.vacancy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-white);
    border-radius: 8px;
    border: 1px solid #00000025;
    flex-shrink: 0;
}

.company-logo img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.vacancy-content {
    margin-top: 15px;
}

.vacancy-title {
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vacancy-location {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.vacancy-salary {
    color: var(--accent-1);
    font-size: 16px;
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--gradient-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(12, 143, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 0;
}


.contact-form .form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-family-sans-serif);
    transition: all 0.3s ease;
    background: var(--gradient-white);
    color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.contact-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(12, 143, 218, 0.1);
    transform: translateY(-2px);
}


.contact-form .form-group input::placeholder {
    color: #999;
    font-style: italic;
    transition: color 0.3s ease;
}

.contact-form .form-group input:focus::placeholder {
    color: var(--accent-1);
    opacity: 0.7;
}

.contact-form .btn {
    margin-top: 20px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(12, 143, 218, 0.3);
}

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

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

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(12, 143, 218, 0.4);
}

.contact-form .btn:active {
    transform: translateY(-1px);
}


/* Form Success and Error Icons */
.form-success i,
.form-error i {
    margin-right: 10px;
    font-size: 1.2em;
}

.form-success i {
    animation: bounce 0.6s ease-in-out;
}

.form-error i {
    animation: shake 0.6s ease-in-out;
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}


/* Form Animation */
.contact-form .form-group {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.contact-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.contact-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.contact-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.contact-form .btn { animation-delay: 0.4s; }

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

/* Success Message */
.form-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
    animation: slideInDown 0.5s ease-out;
}

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

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

/* Error Message */
.form-error {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
    animation: slideInDown 0.5s ease-out;
}

.form-error.show {
    display: block;
}


/* Additional mobile styles for modal */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 15px;
    }
    
    .manager-info {
        padding: 30px 20px;
    }
    
    .manager-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }
    
    .manager-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .manager-name {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .btn-whatsapp,
    .btn-telegram {
        padding: 15px 25px;
        font-size: 16px;
        min-width: 140px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .contact-form .form-group input {
        padding: 15px 18px;
        font-size: 16px;
    }
    
    .contact-form .btn {
        padding: 15px 30px;
        font-size: 15px;
    }
}
