/* Reset and Base Styles */
@font-face {
    font-family: 'Roboto Condensed';
    src: url('https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Roboto Condensed', 'Arial', sans-serif;
    background-color: #000;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    min-width: 350px;
}
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/bg.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    opacity: 0.4; /* Настройте под ваш вкус */
    z-index: -1;
}

/* Header Styles */
.header {
    background-color: #000;
    width: 100%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.social-bar {
    background-color: #FFD700;
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 10000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.main-header {
    background-color: #000;
    padding: 15px 0;
    position: relative;
    z-index: 10000;
}

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

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

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

.logo-image {
    width: 50px;
    height: 60px;
    object-fit: contain;
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-toggle {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.navigation {
    background-color: #000;
    /* border-top: 1px solid #333; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-logo .logo-image {
    width: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 0;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #FFD700;
}

/* Main Content Container */
.main-content-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* Main Content */
.main-content {
    background-color: transparent;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 20px;
    background-image: url('/static/img/hero.webp');
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-banner {
    border-radius: 15px;
    padding: 50px 30px;
    position: relative;
    margin-bottom: 20px;
    /* border: 1px solid rgba(255, 215, 0, 0.2); */
}

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


.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.btn-primary {
    background-color: #FFD700;
    color: #000;
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-2px);
}



/* About Section */
.about-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.about-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.features-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.1);
    /* border-radius: 15px; */
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

/* Vacancies Section */
.vacancies-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.vacancies-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.vacancy-card {
    background: rgba(255, 215, 0, 0.1);
    /* border-radius: 15px; */
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon {
    font-weight: bold;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}

.vacancy-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.location i {
    color: #FFD700;
    font-size: 16px;
}

.salary {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
}

.vacancy-btn {
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #000;
    border: none;
    /* border-radius: 8px; */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vacancy-btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

/* Services Section */
.services-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.services-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.service-item {
    background: rgba(255, 215, 0, 0.1);
    /* border-radius: 15px; */
    padding: 40px 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Specialists Section */
.specialists-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.specialists-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.specialist-card {
    background: rgba(255, 215, 0, 0.1);
    /* border-radius: 15px; */
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-photo {
    margin-bottom: 20px;
    text-align: center;
}

.specialist-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    /* border-radius: 10px; */
    /* border: 3px solid #FFD700; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.specialist-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.specialist-position {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.specialist-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    /* border-radius: 8px; */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialist-btn:hover {
    background-color: #FFD700;
    color: #000;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.reviews-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.review-card {
    background: rgba(255, 215, 0, 0.1);
    /* border-radius: 15px; */
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.reviewer-info h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.review-text {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.reviews-footer {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.reviews-footer .btn-secondary {
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-footer .btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Contact Manager Section */
.contact-manager-section {
    padding: 60px 0;

    margin-bottom: 40px;
}

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

.contact-manager-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-manager-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-manager-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    padding: 20px;
}

.contact-manager-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-manager-info {
    display: flex;
    justify-content: center;
}

.manager-card {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manager-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.manager-avatar {
    margin-bottom: 20px;
}

.manager-card .avatar-placeholder {
    width: 100px;
    height: 100px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto;
}

.manager-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.manager-position {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.manager-contacts {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link.whatsapp {
    background-color: #25D366;
    color: #fff;
}

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

.contact-link.telegram {
    background-color: #0088cc;
    color: #fff;
}

.contact-link.telegram:hover {
    background-color: #006699;
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav-menu li a {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .nav-logo .logo-image {
        width: 60px;
    }
    
    /* Hero Section */
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Sections */
    .about-container h2,
    .features-container h2,
    .vacancies-container h2,
    .services-container h2,
    .specialists-container h2,
    .reviews-container h2,
    .contact-manager-container h2,
    .brands-container h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    /* About Section */
    .about-text {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Vacancies Grid - Keep grid layout for tablets */
    .vacancies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vacancy-card {
        padding: 20px;
    }
    
    .company-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .job-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .vacancy-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .salary {
        font-size: 18px;
        align-self: flex-end;
    }
    
    .vacancy-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Specialists Grid - Keep grid layout for tablets */
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .specialist-image {
        width: 150px;
        height: 180px;
    }
    
    /* Reviews Grid */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Manager */
    .contact-manager-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-manager-text p {
        font-size: 16px;
    }
    
    .contact-manager-button {
        margin-top: 20px;
    }
    
    .manager-contacts {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-link {
        justify-content: center;
        font-size: 13px;
    }
    
    .footer-address p {
        font-size: 12px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .hero-text h1 {
        font-size: 24px;
    }
    
    /* Specialists Grid - Horizontal scroll handled by main mobile styles */
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu li a {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-address p {
        font-size: 11px;
    }
    
    .about-container h2,
    .features-container h2,
    .vacancies-container h2,
    .services-container h2,
    .specialists-container h2,
    .reviews-container h2,
    .contact-manager-container h2,
    .brands-container h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .about-text p,
    .contact-manager-text p {
        font-size: 14px;
    }
    
    .contact-manager-button {
        margin-top: 15px;
    }
    
    .feature-item,
    .vacancy-card,
    .service-item,
    .specialist-card,
    .review-card {
        padding: 20px 15px;
    }
    
    .company-logo {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .job-title {
        font-size: 15px;
    }
    
    .salary {
        font-size: 16px;
    }
    
    .vacancy-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .manager-card {
        padding: 30px 20px;
    }
}







/* Footer */
.footer {
    background-color: #000;
    padding: 40px 20px 20px;
    border-top: 2px solid #FFD700;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

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


.footer-center {
    flex: 1;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #ccc;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-link.whatsapp:hover {
    color: #25D366;
}

.footer-link.telegram:hover {
    color: #0088cc;
}

.footer-link.email:hover {
    color: #EA4335;
}

.footer-link.license:hover {
    color: #FFD700;
}

.footer-address {
    margin-top: 15px;
}

.footer-address p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FFD700;
}


.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #ccc;
    font-size: 12px;
}

/* Mobile Menu Styles */
.navigation {
    transition: all 0.2s ease;
}

.navigation.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    animation: fadeIn 0.15s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.navigation.active .nav-logo {
    display: none;
}

.navigation.active .nav-menu {
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.navigation.active .nav-menu li {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.3s ease forwards;
}

.navigation.active .nav-menu li:nth-child(1) { animation-delay: 0.05s; }
.navigation.active .nav-menu li:nth-child(2) { animation-delay: 0.1s; }
.navigation.active .nav-menu li:nth-child(3) { animation-delay: 0.15s; }
.navigation.active .nav-menu li:nth-child(4) { animation-delay: 0.2s; }
.navigation.active .nav-menu li:nth-child(5) { animation-delay: 0.25s; }
.navigation.active .nav-menu li:nth-child(6) { animation-delay: 0.3s; }

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

.navigation.active .nav-menu li a {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    display: block;
    min-width: 220px;
}

.navigation.active .nav-menu li a:hover {
    color: #FFD700;
    border-color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.menu-toggle {
    position: relative;
    z-index: 10000;
    transition: all 0.2s ease;
}

.menu-toggle i {
    transition: all 0.2s ease;
    font-size: 24px;
    display: inline-block;
}

.menu-toggle i::before {
    transition: all 0.2s ease;
}

.menu-toggle:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

.menu-toggle.active {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
}

.menu-toggle.active i::before {
    content: '\f00d';
    animation: rotateIn 0.2s ease;
}

@keyframes rotateIn {
    from {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.menu-toggle.active i {
    color: #FFD700;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navigation {
        display: none;
    }
    
    .nav-logo {
        display: none;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }

    .hero-banner {
        padding: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
}

@media (max-height: 600px) {
    .navigation.active {
        padding: 5px 0;
    }
    
    .navigation.active .nav-menu {
        gap: 8px;
    }
    
    .navigation.active .nav-menu li a {
        font-size: 16px;
        padding: 10px 20px;
        min-width: 180px;
    }
}

/* Brand Logos Section */
.brands-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
}

.brands-container {
    position: relative;
    overflow: hidden;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.brands-container h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scrollLogos 40s linear infinite;
    width: fit-content;
    padding: 0 4rem;
}

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

.brand-logos img {
    height: 100px;
    opacity: 0.6;
    flex-shrink: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.brand-logos img:hover {
    opacity: 1;
}

/* Horizontal Scroll for Mobile */
@media (max-width: 768px) {
    .vacancies-grid,
    .specialists-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 20px;
        padding: 0 20px;
        margin: 0 -20px;
    }
    
    .vacancies-grid::-webkit-scrollbar,
    .specialists-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .vacancy-card,
    .specialist-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    /* Vacancies Footer Button - Mobile */
    .vacancies-footer {
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .vacancies-footer .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: bold;
        background-color: #FFD700;
        color: #000;
        border: none;
        /* border-radius: 8px; */
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .vacancies-footer .btn-primary:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 2.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #FFD700;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
    color: #fff;
}

.modal-form input {
    width: 100%;
    padding: 0.875rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    /* border-radius: 4px; */
    transition: border-color 0.3s;
}

.modal-form input:focus {
    outline: none;
    /* border-color: #dc2626; */
}

.modal-submit {
    background: #000;
    color: #fff;
    padding: 0.875rem 2rem;
    border: 2px solid #fff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.modal-submit:hover {
    background: #fff;
    color: #000;
}

.contact-modal-content {
    text-align: center;
}

.contact-modal-avatar {
    width: 150px;
    height: 150px;
    /* border-radius: 50%; */
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.contact-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-modal-subtitle {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-modal-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn-whatsapp:hover {
    background: #128C7E;
}

.contact-btn-telegram {
    background: #0088cc;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn-telegram:hover {
    background: #006699;
}
