/* Main Styles - Военная мрачная стилистика */

/* Typography - Мрачные военные цвета */
.text-red {
    color: #FF0000; /* Яркий красный */
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.text-blue {
    color: #1a1a2e; /* Темно-синий, почти черный */
}

/* Buttons - Агрессивные военные кнопки */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: #ffffff !important;
    background-color: #1a1a1a;
    border-color: #FF0000; /* Яркий красный */
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    color: #ffffff !important;
    background-color: #FF0000; /* Яркий красный */
    border-color: #FF3333;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.9), inset 0 0 30px rgba(255, 51, 51, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    color: #ffffff;
    background-color: #0d0d0d;
    border-color: #FF0000;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #FF0000;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
}

/* Cover Section */
.cover {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    z-index: 1;
    filter: grayscale(40%) contrast(1.3) brightness(0.6);
}

.cover__filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    z-index: 2;
}

.cover__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cover__subtitle {
    font-size: 24px; /* Увеличено в 1.5 раза (16 * 1.5 = 24) */
    color: #cccccc;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.cover__main-title {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 56px;
    line-height: 1.2;
    margin: 20px 0;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.6);
}

.cover__title-red {
    color: #ffffff;
    display: block;
    position: relative;
}

.cover__address,
.cover__phone {
    font-size: 28px; /* Увеличенный шрифт для телефонов */
    margin: 10px 0;
    text-align: center;
}

.cover__phone a {
    color: #0066FF; /* Яркий синий */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    transition: all 0.2s ease;
}

.cover__phone a:hover {
    color: #0080FF;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.9);
    text-decoration: none;
}

.cover__buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cover__arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.cover__arrow-svg {
    fill: #FF0000;
    width: 38px;
    height: 19px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.9));
}

/* Section - Мрачные фоны с градиентами */
.section {
    padding: 75px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    color: #e0e0e0;
}

.section-about {
    padding: 180px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 3px solid #FF0000;
    border-bottom: 3px solid #FF0000;
}

.section-service {
    padding: 165px 0 120px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.section-benefits {
    padding: 0 0 90px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
}

.section-benefits-social {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.section-benefits-service {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.section-cta {
    padding: 75px 0 180px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 3px solid #FF0000;
}

.section-steps {
    padding: 180px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.section-contact {
    padding: 0 0 150px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 3px solid #FF0000;
}

.section-contact .container {
    background-color: transparent;
    padding: 60px 20px;
}

/* About Section */
.about__image {
    height: 560px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    border: 2px solid #FF0000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    filter: grayscale(30%) contrast(1.2) brightness(0.7);
}

.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 560px;
    text-align: center;
}

.about__title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.about__title-centered {
    text-align: center;
}

.divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF0000, transparent);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

/* Service Section */
.service__title {
    font-size: 52px;
    text-align: center;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Benefit Salary Section */
.benefit-salary {
    padding: 60px 0;
    text-align: center;
    background: transparent;
}

.benefit-salary-with-sides {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    padding: 60px 0;
}

.benefit-salary-with-sides .container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(255, 0, 0, 0.3) 100%);
    padding: 60px 40px;
    border: 2px solid #FF0000;
}

.benefit-salary-gray {
    background: transparent;
}

.benefit-salary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.benefit-salary__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-salary__icon svg {
    width: 100%;
    height: 100%;
}

.benefit-salary__text {
    font-size: 22px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    max-width: 300px;
    font-weight: 600;
}

.benefit-salary__text strong {
    font-weight: 700;
    font-size: 28px;
}

.benefit-salary__heading {
    font-size: 22px;
    font-weight: 700;
    color: #FF0000;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-salary__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 300px;
}

.benefit-salary__list li {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.benefit-salary__list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    color: #FF0000;
    font-size: 12px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.9);
}

/* Benefit Cards */
.benefit-card {
    margin-bottom: 0;
}

.benefit-card__image {
    height: 100%;
    min-height: 400px;
}

.benefit-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card__content {
    background-color: #0d0d0d;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    min-height: 400px;
    border: 2px solid #FF0000;
}

.benefit-card__title {
    font-size: 32px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card__subtitle {
    font-size: 22px;
    color: #cccccc;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.benefit-card__amount {
    font-size: 28px;
    font-weight: 700;
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

.benefit-list {
    margin-top: 20px;
    padding-left: 0;
}

.benefit-list li {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #cccccc;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.benefit-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #FF0000;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.9);
}

/* CTA Section */
.cta__text {
    font-size: 30px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Steps Section */
.steps__title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 105px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.5);
}

.step-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #1a1a1a;
    border: 2px solid #FF0000;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.step-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(16%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.step-card:hover .step-card__icon {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(16%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(120%) contrast(120%);
}

.step-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-card__title {
    font-size: 24px;
    line-height: 1.4;
    color: #e0e0e0;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Foreign Citizens Section */
.section-foreign {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.section__title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.5);
}

.section__text {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cccccc;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Conditions Section */
.section-conditions {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

/* Payments Section */
.section-payments {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
    border-top: 2px solid #FF0000;
    border-bottom: 2px solid #FF0000;
}

.conditions-row {
    margin-bottom: 30px;
}

.conditions-row:last-child {
    margin-bottom: 0;
}

.conditions-row .specialty-card {
    margin-bottom: 0;
}

.conditions-row-center {
    justify-content: center;
}

.condition-card {
    background-color: #0d0d0d;
    padding: 40px 30px;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    text-align: center;
    border: 2px solid #FF0000;
    border-top: 4px solid #FF0000;
    position: relative;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7), inset 0 0 40px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
    border-top-color: #ff0000;
}

.condition-card__number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #FF0000;
    border-radius: 0;
    border: 2px solid #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.7), inset 0 0 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
}

.condition-card:hover .condition-card__number {
    background-color: #FF0000;
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 1);
}

.condition-card__title {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.4;
    margin-top: 20px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.condition-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
    font-style: italic;
    margin-top: 10px;
}

.condition-card__text-large {
    font-size: 24px;
    font-style: normal;
    color: #ffffff;
    margin-top: 15px;
    font-weight: 700;
}

/* Specialties Section */
.section-specialties {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(255, 0, 0, 0.4) 100%);
}

.specialty-card {
    background-color: #0d0d0d;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 2px solid #FF0000;
}

.specialty-card:last-child {
    margin-bottom: 0;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7), inset 0 0 40px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.specialty-card__title {
    font-size: 24px;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.specialty-card__title.text-blue {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.specialty-card__title-red {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    font-weight: 900;
}

.specialty-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* Contact Section */
.contact__content {
    text-align: center;
    background-color: #0d0d0d;
    padding: 40px;
    border-radius: 0;
    border: 2px solid #FF0000;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.contact__content-centered {
    margin: 0 auto;
    max-width: 600px;
}

.contact__title {
    font-size: 42px; /* Увеличенный шрифт */
    margin-bottom: 30px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.contact__phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.contact__title a {
    color: #0066FF; /* Яркий синий */
    font-weight: 700;
    font-size: 32px; /* Увеличенный шрифт для телефонов */
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    transition: all 0.2s ease;
}

.contact__title a:hover {
    color: #0080FF;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.9);
}

.btn-call {
    font-size: 14px;
    padding: 10px 20px;
    margin: 0;
}

.contact__address {
    font-size: 24px;
    line-height: 1.6;
    color: #cccccc;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    border: 2px solid #FF0000;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.7), inset 0 0 20px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.scroll-to-top:hover {
    background-color: #FF0000;
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 1);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 960px) {
    .cover__main-title {
        font-size: 36px;
    }
    
    .service__title {
        font-size: 36px;
    }
    
    .about__title {
        font-size: 24px;
    }
    
    .benefit-card__title {
        font-size: 24px;
    }
    
    .benefit-card__subtitle,
    .benefit-list li {
        font-size: 18px;
    }
    
    .benefit-salary__text {
        font-size: 16px;
    }
    
    .benefit-salary__text strong {
        font-size: 18px;
    }
    
    .benefit-salary__heading {
        font-size: 20px;
    }
    
    .benefit-salary__list li {
        font-size: 14px;
    }
    
    .cta__text {
        font-size: 24px;
    }
    
    .steps__title,
    .section__title {
        font-size: 36px;
        margin-bottom: 45px;
    }
    
    .section__text {
        font-size: 18px;
    }
    
    .specialty-card__title {
        font-size: 20px;
    }
    
    .specialty-card__text {
        font-size: 14px;
    }
    
    .section-about,
    .section-steps,
    .section-foreign,
    .section-specialties,
    .section-conditions {
        padding: 90px 0;
    }
    
    .condition-card__title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cover__main-title {
        font-size: 28px;
    }
    
    .service__title {
        font-size: 28px;
    }
    
    .benefit-card__content {
        padding: 40px 20px;
    }
    
    .cta__text {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact__title {
        font-size: 24px;
    }
    
    .contact__phone-item {
        flex-direction: column;
        gap: 10px;
    }
}

