/**
 * Стили страницы "Зарубежные туры" - Premium Landing
 */

html {
    scroll-behavior: smooth;
}

.vt-outbound {
    overflow: hidden;
}

/* ===== Hero - Full Screen ===== */
.vt-outbound__hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vt-outbound__hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.vt-outbound__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Заглушка для фото */
.vt-outbound__hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vt-outbound__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.vt-outbound__hero .vt-container {
    position: relative;
    z-index: 3;
}

.vt-outbound__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px;
}

.vt-outbound__hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.vt-outbound__hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 48px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vt-outbound__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Кнопки */
.vt-outbound__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.vt-outbound__btn--primary {
    background: #fff;
    color: #1a1a1a;
}

.vt-outbound__btn--primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vt-outbound__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.vt-outbound__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Скролл индикатор */
.vt-outbound__hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    animation: bounce 2s infinite;
}

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

/* ===== Search Section ===== */
.vt-outbound__search {
    padding: 100px 0;
    background: #f8f9fa;
}

.vt-outbound__section-header {
    text-align: center;
    margin-bottom: 48px;
}

.vt-outbound__section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.vt-outbound__section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vt-outbound__search-widget {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ===== About Section ===== */
.vt-outbound__about {
    padding: 100px 0;
    background: #fff;
}

.vt-outbound__about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vt-outbound__about-image {
    position: relative;
}

.vt-outbound__about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vt-outbound__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1976d2;
    margin-bottom: 8px;
}

.vt-outbound__about-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.vt-outbound__about-lead {
    font-size: 20px;
    line-height: 1.5;
    color: #1976d2;
    font-weight: 500;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.vt-outbound__about-text {
    margin-bottom: 32px;
}

.vt-outbound__about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 16px;
}

.vt-outbound__about-text p:last-child {
    margin-bottom: 0;
}

.vt-outbound__about-text strong {
    color: #1a1a1a;
}

.vt-outbound__about-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-outbound__about-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.vt-outbound__about-address svg {
    color: #1976d2;
    flex-shrink: 0;
}

.vt-outbound__about-registry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1976d2;
    text-decoration: none;
    transition: all 0.2s;
}

.vt-outbound__about-registry:hover {
    color: #1565c0;
    text-decoration: underline;
}

.vt-outbound__about-registry svg {
    color: #4caf50;
}

/* ===== Stats ===== */
.vt-outbound__stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.vt-outbound__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vt-outbound__stat {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.vt-outbound__stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.15);
}

.vt-outbound__stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #1976d2;
    line-height: 1;
    margin-bottom: 8px;
}

.vt-outbound__stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.vt-outbound__stat-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* ===== Why Choose Us ===== */
.vt-outbound__why {
    padding: 100px 0;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

.vt-outbound__why .vt-outbound__section-title {
    color: #fff;
}

.vt-outbound__why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vt-outbound__why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-outbound__why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vt-outbound__why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    transition: all 0.3s;
}

.vt-outbound__why-card:hover .vt-outbound__why-icon {
    background: #fff;
    color: #1976d2;
    transform: scale(1.1);
}

.vt-outbound__why-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
}

.vt-outbound__why-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== Gallery Slider ===== */
.vt-outbound__gallery {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.vt-outbound__slider-wrapper {
    margin: 0 -20px;
    padding: 20px 0;
}

.vt-outbound__slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    cursor: grab;
    padding: 0 40px;
}

.vt-outbound__slider:active {
    cursor: grabbing;
}

.vt-outbound__slide {
    flex: 0 0 auto;
    width: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.vt-outbound__slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vt-outbound__slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.vt-outbound__slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.vt-outbound__slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.vt-outbound__slider-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    border: 2px solid #1976d2;
    background: #fff;
    color: #1976d2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.vt-outbound__slider-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vt-outbound__slider-btn:hover {
    background: #1976d2;
    color: #fff;
}

/* ===== Lightbox ===== */
.vt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.vt-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.vt-lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.vt-lightbox__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.vt-lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.vt-lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vt-lightbox__caption {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
}

.vt-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vt-lightbox__prev,
.vt-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.vt-lightbox__prev svg,
.vt-lightbox__next svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.vt-lightbox__prev {
    left: 30px;
}

.vt-lightbox__next {
    right: 30px;
}

.vt-lightbox__prev:hover,
.vt-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

/* ===== Awards Slider ===== */
.vt-outbound__awards {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.vt-outbound__slide--award {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vt-outbound__slide--award:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vt-outbound__slide--award img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== Partners ===== */
.vt-outbound__partners {
    padding: 80px 0;
    background: #fff;
}

.vt-outbound__partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.vt-outbound__partner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s;
    min-height: 100px;
}

.vt-outbound__partner:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.vt-outbound__partner img,
.vt-outbound__partner svg {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== CTA Form ===== */
.vt-outbound__cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
}

.vt-outbound__cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.vt-outbound__cta-info {
    color: #fff;
}

.vt-outbound__cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.vt-outbound__cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

.vt-outbound__cta-contact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
}

.vt-outbound__cta-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.vt-outbound__cta-manager {
    display: flex;
    gap: 16px;
    align-items: center;
}

.vt-outbound__cta-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vt-outbound__cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-outbound__cta-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.vt-outbound__cta-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.vt-outbound__cta-phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vt-outbound__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.vt-outbound__cta-phone:hover {
    color: rgba(255, 255, 255, 0.8);
}

.vt-outbound__cta-phone--wa {
    color: #25d366;
}

.vt-outbound__cta-phone--wa:hover {
    color: #1fb855;
}

.vt-outbound__cta-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.vt-outbound__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-outbound__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vt-outbound__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vt-outbound__form-group--full {
    grid-column: 1 / -1;
}

.vt-outbound__form-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.vt-outbound__form-input,
.vt-outbound__form-select,
.vt-outbound__form-textarea {
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: #fff;
    color: #1a1a1a;
}

.vt-outbound__form-input:focus,
.vt-outbound__form-select:focus,
.vt-outbound__form-textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.1);
}

.vt-outbound__form-input::placeholder,
.vt-outbound__form-textarea::placeholder {
    color: #aaa;
}

.vt-outbound__form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 52px;
    line-height: 1.5;
    height: auto;
}

.vt-outbound__form-textarea {
    resize: vertical;
    min-height: 80px;
}

.vt-outbound__form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.vt-outbound__form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.4);
}

.vt-outbound__form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.vt-outbound__form-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin: 8px 0 0;
}

.vt-outbound__form-note a {
    color: #1976d2;
    text-decoration: none;
}

.vt-outbound__form-note a:hover {
    text-decoration: underline;
}

/* Сообщения формы */
.vt-outbound__form-message {
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
}

.vt-outbound__form-message--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.vt-outbound__form-message--error {
    background: #ffebee;
    color: #c62828;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vt-outbound__hero-title {
        font-size: 52px;
    }

    .vt-outbound__hero-subtitle {
        font-size: 20px;
    }

    .vt-outbound__why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-outbound__cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vt-outbound__cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .vt-outbound__hero {
        min-height: 100svh;
    }

    .vt-outbound__hero-content {
        padding: 100px 20px;
    }

    .vt-outbound__hero-title {
        font-size: 36px;
    }

    .vt-outbound__hero-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .vt-outbound__hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .vt-outbound__btn {
        width: 100%;
        padding: 16px 32px;
    }

    .vt-outbound__hero-scroll {
        bottom: 24px;
    }

    .vt-outbound__search {
        padding: 60px 0;
    }

    .vt-outbound__section-title {
        font-size: 28px;
    }

    .vt-outbound__section-subtitle {
        font-size: 16px;
    }

    .vt-outbound__search-widget {
        padding: 20px;
        border-radius: 16px;
    }

    .vt-outbound__about {
        padding: 60px 0;
    }

    .vt-outbound__about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vt-outbound__about-image img {
        border-radius: 16px;
    }

    .vt-outbound__about-title {
        font-size: 32px;
    }

    .vt-outbound__about-lead {
        font-size: 17px;
    }

    .vt-outbound__stats {
        padding: 60px 0;
    }

    .vt-outbound__stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vt-outbound__stat {
        padding: 32px 24px;
    }

    .vt-outbound__stat-number {
        font-size: 48px;
    }

    .vt-outbound__why {
        padding: 60px 0;
    }

    .vt-outbound__why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vt-outbound__why-card {
        padding: 24px;
    }

    .vt-outbound__gallery {
        padding: 60px 0;
    }

    .vt-outbound__slide {
        width: 300px;
    }

    .vt-outbound__slide img {
        height: 220px;
    }

    .vt-outbound__slider {
        padding: 0 20px;
        gap: 16px;
    }

    .vt-outbound__slider-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .vt-lightbox__container {
        padding: 60px 20px;
    }

    .vt-lightbox__prev,
    .vt-lightbox__next {
        width: 48px;
        height: 48px;
    }

    .vt-lightbox__prev svg,
    .vt-lightbox__next svg {
        width: 24px;
        height: 24px;
    }

    .vt-lightbox__prev {
        left: 10px;
    }

    .vt-lightbox__next {
        right: 10px;
    }

    .vt-lightbox__caption {
        font-size: 13px;
        padding: 8px 16px;
        top: 12px;
    }

    .vt-outbound__awards {
        padding: 60px 0;
    }

    .vt-outbound__slide--award {
        width: 240px;
        padding: 12px;
    }

    .vt-outbound__slide--award img {
        height: 300px;
    }

    .vt-outbound__partners {
        padding: 60px 0;
    }

    .vt-outbound__partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vt-outbound__partner {
        padding: 16px;
        min-height: 80px;
    }

    .vt-outbound__partner img,
    .vt-outbound__partner svg {
        max-width: 120px;
        max-height: 50px;
    }

    .vt-outbound__cta {
        padding: 60px 0;
    }

    .vt-outbound__cta-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vt-outbound__cta-title {
        font-size: 26px;
    }

    .vt-outbound__cta-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .vt-outbound__cta-contact {
        padding: 20px;
    }

    .vt-outbound__cta-manager {
        flex-direction: column;
        text-align: center;
    }

    .vt-outbound__cta-phones {
        align-items: center;
    }

    .vt-outbound__cta-form-wrap {
        padding: 24px;
        border-radius: 20px;
    }

    .vt-outbound__form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vt-outbound__form-input,
    .vt-outbound__form-select,
    .vt-outbound__form-textarea {
        padding: 12px 14px;
    }

    .vt-outbound__form-submit {
        padding: 16px 24px;
    }
}

/* ==========================================
   Отзывы клиентов - полноразмерные фото
   ========================================== */
#reviewsSlider .vt-outbound__slide img {
    height: 600px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    #reviewsSlider .vt-outbound__slide img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    #reviewsSlider .vt-outbound__slide img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #reviewsSlider .vt-outbound__slide img {
        height: 350px;
    }
}

/* ==========================================
   Sticky навигация
   ========================================== */
.vt-outbound__sticky-nav {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vt-outbound__sticky-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vt-outbound__sticky-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.vt-outbound__sticky-menu::-webkit-scrollbar {
    display: none;
}

.vt-outbound__sticky-link {
    display: block;
    padding: 10px 20px;
    color: #1a365d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.vt-outbound__sticky-link:hover {
    background: #f0f4f8;
    color: #1976d2;
}

.vt-outbound__sticky-link.active {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

@media (max-width: 768px) {
    .vt-outbound__sticky-menu {
        justify-content: flex-start;
        gap: 6px;
        padding: 12px 0;
    }

    .vt-outbound__sticky-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vt-outbound__sticky-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ==========================================
   Tourvisor виджеты
   ========================================== */
.vt-outbound__tourvisor {
    padding: 80px 0;
    background: #fff;
}

.vt-outbound__tourvisor:nth-of-type(even) {
    background: #f8f9fa;
}

.vt-outbound__tourvisor .vt-outbound__section-header {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .vt-outbound__tourvisor {
        padding: 60px 0;
    }

    .vt-outbound__tourvisor .vt-outbound__section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .vt-outbound__tourvisor {
        padding: 48px 0;
    }

    .vt-outbound__tourvisor .vt-outbound__section-header {
        margin-bottom: 24px;
    }
}

