:root {
    --primary-color: #fa8d00;
}

body {
    font-family: 'Jost', Arial, sans-serif;
    overflow-x: hidden;
}
h2{
    font-family: 'Jost', Arial, sans-serif;
}
/* Header & Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: auto;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1100px; /* Фиксированная минимальная ширина */
}

.navbar-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 10px 0;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(250, 141, 0, 0.1);
    color: var(--primary-color);
}

.phone-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.phone-btn:hover {
    background-color: #e07e00;
    transform: translateY(-2px);
}

.vk-icon {
    font-size: 24px;
    color: #000;
    transition: color 0.3s;
    white-space: nowrap;
}

.vk-icon:hover {
    color: var(--primary-color);
}

/* Mobile menu */
.navbar-toggler {
    border: none;
    padding: 5px 10px;
    font-size: 0.9rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-navbar {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2px 15px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: auto;
    position: fixed;
    left: 70%;
    right: 15px !important;
    z-index: 1030;
}

.mobile-navbar .navbar-brand img {
    height: 35px;
}

.offcanvas {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 0;
}

.offcanvas-header {
    padding: 20px;
}

.offcanvas-body .nav-link {
    color: #000;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.offcanvas-body .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 80vh; /* Исправлено на 80vh */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Jost', Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    background-color: white;
    color: #000;
    transform: translateY(-3px);
}

/* Video gradient overlay */
.video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 0;
}

/* Logo Marquee */
.logo-marquee {
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {

    flex-shrink: 0;
    margin: 0 40px;
    display: flex;
    align-items: center;
}

.marquee-item img {
    height: 30vh;
    filter: brightness(0) invert(1);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-350%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content sections */
.content-section {
    padding: 100px 0;
    background-color: #000;
    color: white;
}

/* Hide/show navbar on scroll */
.navbar-hidden {
    transform: translate(-50%, -100%);
    opacity: 0;
}

.mobile-navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .navbar {
        min-width: 200px;
    }

    .phone-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .navbar-nav .nav-link {
        margin: 0 8px;
        font-size: 0.95rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        display: none;
    }

    .mobile-navbar {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}
.features-section {
    background-color: #000;
    color: white;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fa8d00, #ffad33);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(250, 141, 0, 0.2);
    border-color: #fa8d00;
}

.feature-icon {
    font-size: 3rem;
    color: #fa8d00;
    line-height: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

.feature-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }
}


.show-programs {
    background-color: #000;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.program-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 300px;
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 19, 117, 0.7);
}

.program-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.8) 100%
    );
    transition: all 0.4s ease;
}

.program-card:hover .program-overlay {
    background: linear-gradient(
            to bottom,
            rgba(0, 19, 117, 0.3) 0%,
            rgba(0, 0, 0, 0.9) 100%
    );
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.program-arrow {
    font-size: 2rem;
    font-weight: 700;
    color: #fa8d00;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.program-card:hover .program-arrow {
    transform: translateX(10px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .program-card {
        height: 250px;
    }

    .program-content {
        padding: 20px;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .program-arrow {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .program-card {
        height: 200px;
    }

    .program-content {
        padding: 15px;
    }

    .program-title {
        font-size: 0.9rem;
    }
}

.custom-program-section {
    height: 100vh;
    background-image: url('/img/photo.jpg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            #000 0%,
            transparent 30%,
            transparent 70%,
            #000 100%
    );
    z-index: 1;
}

.custom-program-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.custom-program-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.custom-program-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.custom-program-btn {
    background-color: #fa8d00;
    border: none;
    border-radius: 50px;
    color: white;
    padding: 16px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-program-btn:hover {
    background-color: #e07e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 141, 0, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .custom-program-title {
        font-size: 2.5rem;
    }

    .custom-program-subtitle {
        font-size: 1.3rem;
    }

    .custom-program-btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .custom-program-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .custom-program-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .custom-program-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.marquee-section-footer {
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.marquee-container-footer {
    width: 100%;
    overflow: hidden;
}

.marquee-track-footer {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item-footer {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.marquee-logo-footer {
    height: 20vh;
    width: auto;
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

.marquee-text-footer {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .marquee-text-footer {
        font-size: 1.2rem;
    }

    .marquee-item-footer {
        padding: 0 25px;
    }

    .marquee-logo-footer {
        height: 25px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .marquee-text-footer {
        font-size: 1rem;
    }

    .marquee-item-footer {
        padding: 0 20px;
    }

    .marquee-logo-footer {
        height: 20px;
        margin-right: 8px;
    }
}


/* forms */
.cooperation-form {
    background-color: #000;
}

.form-container {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid #333;
    text-align: center;
    box-shadow: 0 20px 50px rgba(250, 141, 0, 0.1);
}

.form-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.form-subtitle {
    color: #fa8d00;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.4;
}

.cooperation-form-content {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    background: #000;
    border: 2px solid white;
    border-radius: 50px;
    padding: 16px 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    border-color: #fa8d00;
    box-shadow: 0 0 0 3px rgba(250, 141, 0, 0.2);
    background: #111;
}

.form-input:hover {
    border-color: #fa8d00;
}

.submit-btn {
    width: 100%;
    background: #fa8d00;
    border: none;
    border-radius: 50px;
    padding: 16px 25px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: #e07e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 141, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-agreement {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.agreement-link {
    color: #fa8d00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.agreement-link:hover {
    color: #ffad33;
    text-decoration: underline;
}

/* Анимация появления */
.form-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-container {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-subtitle {
        font-size: 1.1rem;
    }

    .form-input {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .form-input {
        padding: 12px 18px;
    }

    .submit-btn {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .form-agreement {
        font-size: 0.8rem;
    }
}

/* Кастомные стили для квиза */
.modal-quiz {
    max-width: 1200px;
    margin: 1.75rem auto;
}

.quiz-modal-content {
    background: #000;
    color: white;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
}

.quiz-container {
    height: 700px;
    display: flex;
    flex-direction: column;
}

.quiz-progress {
    padding: 25px 40px 15px;
    border-bottom: 1px solid #333;
}

.quiz-progress-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fa8d00, #ffad33);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.quiz-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.quiz-progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
    transform: translateY(-50%);
    z-index: 1;
}

.quiz-step-indicator {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.quiz-step-indicator.active {
    background: #fa8d00;
    border-color: #fa8d00;
    color: white;
}

.quiz-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.quiz-step {
    display: none;
    height: 100%;
}

.quiz-step.active {
    display: block;
}

.quiz-step-row {
    display: flex;
    height: 100%;
    gap: 40px;
}

.quiz-step-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quiz-image-col {
    flex: 1;
    display: flex;
}

.quiz-image-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.quiz-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-question {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: white;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.quiz-option:hover {
    border-color: #fa8d00;
    background: rgba(250, 141, 0, 0.1);
}

.quiz-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.quiz-option-text {
    font-size: 1.1rem;
    color: white;
    flex: 1;
}

.quiz-option input[type="radio"]:checked + .quiz-option-text {
    color: #fa8d00;
    font-weight: 500;
}

.quiz-input-group {
    margin-bottom: 20px;
}

.quiz-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quiz-input:focus {
    border-color: #fa8d00;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.quiz-input::placeholder {
    color: #888;
}

.quiz-contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.quiz-contact-subtitle {
    color: #ccc;
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.quiz-agreement {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
    cursor: pointer;
    text-align: left;
}

.quiz-agreement input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    transform: scale(1.2);
}

.quiz-agreement-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.quiz-navigation {
    padding: 25px 40px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.quiz-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz-btn-prev {
    background: transparent;
    border-color: #666;
    color: #666;
}

.quiz-btn-prev:hover:not(:disabled) {
    background: #666;
    color: white;
}

.quiz-btn-next,
.quiz-btn-submit {
    background: linear-gradient(135deg, #fa8d00, #ffad33);
    border-color: #fa8d00;
    color: white;
}

.quiz-btn-next:hover,
.quiz-btn-submit:hover {
    background: linear-gradient(135deg, #e07e00, #ff9d00);
    transform: translateY(-2px);
}

.quiz-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.quiz-btn-submit {
    display: none;
}

/* Скрываем стандартные радио-кнопки и чекбоксы */
.quiz-option input[type="radio"],
.quiz-agreement input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.quiz-option input[type="radio"] + .quiz-option-text::before,
.quiz-agreement input[type="checkbox"] + .quiz-agreement-text::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.quiz-agreement input[type="checkbox"] + .quiz-agreement-text::before {
    border-radius: 4px;
}

.quiz-option input[type="radio"]:checked + .quiz-option-text::before,
.quiz-agreement input[type="checkbox"]:checked + .quiz-agreement-text::before {
    background: #fa8d00;
    border-color: #fa8d00;
}

.quiz-option input[type="radio"]:checked + .quiz-option-text::before {
    box-shadow: inset 0 0 0 4px #000;
}

.quiz-agreement input[type="checkbox"]:checked + .quiz-agreement-text::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .modal-quiz {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }

    .quiz-modal-content {
        height: 100%;
        border-radius: 0;
    }

    .quiz-container {
        height: 100vh;
    }

    .quiz-progress {
        padding: 20px 25px 15px;
    }

    .quiz-content {
        padding: 25px;
    }

    .quiz-step-row {
        flex-direction: column;
        gap: 25px;
    }

    .quiz-image-col {
        display: none;
    }

    .quiz-question {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .quiz-navigation {
        padding: 20px 25px;
    }

    .quiz-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .quiz-contact-form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .quiz-step-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .quiz-question {
        font-size: 1.3rem;
    }

    .quiz-option-text {
        font-size: 1rem;
    }

    .quiz-option {
        padding: 14px 16px;
    }

    .quiz-input {
        padding: 14px 16px;
    }
}





/* Кастомные стили для модального окна заказа */
.modal-fullscreen .order-modal-content {
    background: #000;
    border: none;
    border-radius: 0;
}

.order-close-btn {
    position: absolute;
    top: 0;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.order-close-btn:hover {
    background: #fa8d00;
    border-color: #fa8d00;
    transform: scale(1.1);
}

.order-container {
    display: flex;
    height: 100vh;
}

.order-form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #000;
}

.order-form-content {
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.order-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.order-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.5;
}

.order-form {
    width: 100%;
}

.order-input-group {
    margin-bottom: 25px;
}

.order-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 18px 25px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.order-input::placeholder {
    color: #888;
}

.order-input:focus {
    border-color: #fa8d00;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(250, 141, 0, 0.2);
}

.order-input:hover {
    border-color: #fa8d00;
}

.order-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #fa8d00, #ffad33);
    border: none;
    border-radius: 15px;
    padding: 18px 25px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.order-submit-btn:hover {
    background: linear-gradient(135deg, #e07e00, #ff9d00);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 141, 0, 0.4);
}

.order-submit-btn:active {
    transform: translateY(0);
}

.order-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.order-agreement {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.order-agreement-link {
    color: #fa8d00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-agreement-link:hover {
    color: #ffad33;
    text-decoration: underline;
}

.order-image-section {
    flex: 1;
    position: relative;
    display: block;
}

.order-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(250, 141, 0, 0.3));
}

/* Стили для спиннера загрузки */
.order-spinner {
    animation: orderSpin 1s linear infinite;
    margin-right: 10px;
}

@keyframes orderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .order-container {
        flex-direction: column;
    }

    .order-form-wrapper {
        flex: none;
        height: 60vh;
        padding: 20px;
    }

    .order-image-section {
        flex: none;
        height: 40vh;
    }

    .order-close-btn {
        top: 0;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .order-title {
        font-size: 2.2rem;
    }

    .order-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .order-input {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .order-submit-btn {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .order-form-content {
        max-width: 100%;
    }

    .order-title {
        font-size: 1.8rem;
    }

    .order-subtitle {
        font-size: 1rem;
    }

    .order-close-btn {
        top: 0;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Полупрозрачный черный фон */
    z-index: 0;
}