/* ============================================
   Visheki Travel - Main Stylesheet
   ============================================ */

/* Local Fonts */
@font-face {
    font-family: 'Cormorant';
    src: url('assets/fonts/cormorant-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('assets/fonts/cormorant-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('assets/fonts/cormorant-mediumitalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/geist-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/geist-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */

:root {
    /* Colors */
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-beige: #F5F0EB;
    --color-beige-dark: #E8E0D8;
    --color-gray: #6B6B6B;
    --color-gray-light: #A0A0A0;
    --color-red: #C4453B;

    /* Gradients */
    --gradient-beige: linear-gradient(180deg, #F5F0EB 0%, #E8E0D8 100%);
    --gradient-black: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
    --gradient-red: linear-gradient(135deg, #C4453B 0%, #A83830 100%);

    /* Typography */
    --font-display: 'Cormorant', Georgia, serif;
    --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    background: #1c1c1c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-fast);
}

a:hover {
    opacity: 0.8;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Typography Classes */
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.btn--primary {
    background: var(--gradient-red);
    color: var(--color-white);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(251, 242, 231, 0.4);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 8px;
    padding: 4px 8px;
    height: 48px;
    position: relative;
}

.header__nav {
    display: flex;
    gap: 16px;
}

/* First nav link gets 8px left padding */
.nav-link--first {
    padding-left: 8px;
}

.header__nav {
    display: flex;
    gap: 16px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #1C1C1C;
    padding: 10px 0;
    transition: opacity var(--transition-fast);
}

.nav-link:hover {
    opacity: 0.7;
}

.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.header__logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__phone-block {
    text-align: right;
}

.header__phone {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #1C1C1C;
}

.header__phone:hover {
    opacity: 0.7;
}

.header__phone-hint {
    font-size: 12px;
    line-height: 16px;
    color: #A4A4A4;
}

/* Burger Menu Button */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: #1C1C1C;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px;
}

.header__burger span {
    display: block;
    width: 16px;
    height: 2px;
    background: #F6DEC3;
    border-radius: 1px;
}

/* Mobile Phone Icon */
.header__phone-icon {
    display: none;
    width: 40px;
    height: 40px;
    background: #910A2C;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.header__phone-icon img {
    width: 16px;
    height: 16px;
}

/* Black Button */
.btn--black {
    background: var(--color-black);
    color: #F6DEC3;
    border-radius: 4px;
}

.btn--black:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   Header Responsive
   ============================================ */

/* Below 1240px: Show burger, hide nav */
@media (max-width: 1239px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        display: none;
    }
}

/* Below 768px: Show phone icon, hide phone block */
@media (max-width: 767px) {
    .header__phone-block {
        display: none;
    }

    .header__phone-icon {
        display: flex;
        position: absolute;
        left: 72px;
        /* Position next to burger (40px burger + 16px padding + 16px gap) */
    }

    .header__logo {
        top: 0;
    }

    .header__container {
        height: 48px;
        padding: 4px 16px;
    }

    .btn--black {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Reorder: burger on left, logo center, contact right */
    .header__burger {
        order: -1;
    }

    .header__nav {
        order: 0;
    }

    .header__contact {
        order: 1;
        gap: 12px;
    }

    /* Hero section - title in 3 lines, closer to header */
    .hero__title {
        font-size: 32px;
        line-height: 36px;
        margin-top: 192px !important;
        margin-bottom: 24px;
    }

    .hero__break {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 917px;
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, transparent, #1C1C1C);
    pointer-events: none;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero__title {
    font-family: var(--font-display);
    /* Fluid typography: 48px at 375px viewport → 80px at 1440px viewport */
    font-size: clamp(48px, 3rem + 3vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.8px;
    color: #F6DEC3;
    text-align: center;
    text-transform: uppercase;
    margin-top: 288px;
    margin-bottom: 69px;
}

.hero__break {
    display: block;
}

/* Search Form - Glassmorphism */
.search-form {
    background: rgba(251, 242, 231, 0.2);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 300px;
}

.search-form__inner {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-form__field {
    flex: 1;
    background: var(--color-white);
    border-radius: 4px;
    padding: 16px 12px;
    padding-right: 20px;
}

.search-form__input-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-form__icon {
    flex-shrink: 0;
    color: #5A81D1;
}

.search-form__input {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-black);
    background: transparent;
}

.search-form__input::placeholder {
    color: var(--color-gray-light);
}

.search-form__swap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.search-form__swap:hover {
    opacity: 0.7;
}

.search-form__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #910A2C;
    border-radius: 4px;
    color: #F6DEC3;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: all var(--transition-fast);
}

.search-form__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   Tours Section
   ============================================ */
.tours {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.tours__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

/* Tour Card - New Overlay Design */
.tour-card {
    position: relative;
    flex: 1 1 280px;
    max-width: 440px;
    aspect-ratio: 381 / 505;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.tour-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.tour-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.tour-card__overlay--gradient {
    background: linear-gradient(180deg, rgba(251, 242, 231, 0) 0%, #FBF2E7 100%);
}

.tour-card__price {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    padding: 6px 10px;
    background: #F6DEC3;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
}

.tour-card__title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #F6DEC3;
    margin: 0;
}

/* More Destinations Card */
.tour-card--more {
    background: linear-gradient(180deg, #F8E3CB 0%, #F5DABB 100%);
    justify-content: center;
    align-items: center;
    gap: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative curved lines */
.tour-card--more::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: -100px;
    right: -200px;
    pointer-events: none;
}

.tour-card--more::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 6px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.tour-card__more-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: var(--color-black);
    margin: 0;
}

.tour-card__more-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #910A2C;
    transition: opacity var(--transition-fast);
}

.tour-card__more-link:hover {
    opacity: 0.8;
}

/* ============================================
   Hot Tours Section
   ============================================ */
.hot-tours {
    padding: 60px 20px;
    background: #1c1c1c;
}

.hot-tours__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    background: linear-gradient(125deg, #323232 8%, #252525 87%);
    border-radius: 8px;
    overflow: hidden;
}

.hot-tours__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.hot-tours__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #F6DEC3;
    margin: 0;
}

.hot-tours__nav {
    display: flex;
    gap: 12px;
}

.hot-tours__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #9F9080;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background var(--transition-fast);
}

.hot-tours__nav-btn:hover {
    background: #B0A090;
}

.hot-tours__scroll {
    position: relative;
}

.hot-tours__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.hot-tours__track::-webkit-scrollbar {
    display: none;
}

.hot-tours__scroll-indicator {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, #252525, transparent);
    pointer-events: none;
}

/* Pagination dots for mobile */
.hot-tours__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hot-tours__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(246, 222, 195, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.hot-tours__dot--active {
    background: #F6DEC3;
}

@media (max-width: 767px) {
    .hot-tours__container {
        padding: 40px 20px !important;
    }

    .hot-tours__dots {
        display: flex;
    }

    .hot-tours__nav {
        display: none;
    }

    /* Show 3 cards between 520-767px */
    .hot-tour-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 519px) {

    /* Show 2 cards below 520px */
    .hot-tour-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Hot Tour Card */
.hot-tour-card {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 24px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.hot-tour-card:hover {
    transform: translateY(-4px);
}

.hot-tour-card__image {
    position: relative;
    width: 100%;
    height: 316px;
    border-radius: 4px;
    overflow: hidden;
}

.hot-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-tour-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    background: #F6DEC3;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    color: #1C1C1C;
}

.hot-tour-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hot-tour-card__country {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #F6DEC3;
}

.hot-tour-card__price {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #F6DEC3;
}

.hot-tour-card__details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #9F9080;
}

.hot-tour-card__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9F9080;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--color-beige);
}

.about__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.about__header {
    text-align: center;
    margin-bottom: 48px;
}

.about__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -2px;
}

.about__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.about__gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about__gallery-item--1 {
    grid-row: span 2;
}

.about__gallery-item--1 img {
    height: 100%;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-black);
    margin-bottom: 8px;
}

.about__stat-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-gray);
}

/* ============================================
   Founders Section
   ============================================ */
.founders {
    padding: 60px 20px 120px;
    background: #1c1c1c;
}

.founders__container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.founders__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.founders__quote-icon {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
    color: #F6DEC3;
}

.founders__quote-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 24px;
    letter-spacing: -0.22px;
    color: #F6DEC3;
    margin: 0 0 12px;
}

.founders__quote-text:last-child {
    margin-bottom: 0;
}

.founders__photo {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.founders__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #F6DEC3;
}

.founders__names {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 24px;
    letter-spacing: -0.22px;
    margin-bottom: 4px;
}

.founders__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.5;
}

/* ============================================
   CTA Form Section
   ============================================ */
.cta-form {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
}

.cta-form__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-form__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(180deg) scaleY(-1);
}

.cta-form__container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-form__box {
    background: #1c1c1c;
    border-radius: 8px;
    padding: 60px;
    overflow: hidden;
}

.cta-form__header {
    text-align: center;
    margin-bottom: 40px;
}

.cta-form__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.56px;
    color: #F6DEC3;
    margin: 0 0 20px;
}

.cta-form__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #9F9080;
    margin: 0;
}

.cta-form__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form__tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-form__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 8px;
    background: #3C3C3C;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #F6DEC3;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cta-form__tab:hover {
    background: #4a4a4a;
}

.cta-form__tab--active {
    background: #910A2C;
}

.cta-form__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #F6DEC3;
    border-radius: 50%;
}

.cta-form__tab-icon svg {
    width: 14px;
    height: 14px;
    color: #910A2C;
}

.cta-form__tab:not(.cta-form__tab--active) .cta-form__tab-icon svg {
    color: #3C3C3C;
}

.cta-form__input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #48433D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white);
    transition: border-color var(--transition-fast);
}

.cta-form__input::placeholder {
    color: #A4A4A4;
}

.cta-form__input:focus {
    outline: none;
    border-bottom-color: #F6DEC3;
}

.cta-form__textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white);
    resize: vertical;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.cta-form__textarea::placeholder {
    color: #6B6B6B;
}

.cta-form__textarea:focus {
    outline: none;
    border-color: #F6DEC3;
}

.cta-form__submit {
    width: 100%;
    padding: 14px 24px;
    background: #910A2C;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #F6DEC3;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.cta-form__submit:hover {
    background: #a80c33;
}

.cta-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0;
}

.cta-form__consent-checkbox {
    display: none;
}

.cta-form__consent-mark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #48433D;
    border-radius: 4px;
    background: transparent;
    position: relative;
    transition: all var(--transition-fast);
}

.cta-form__consent-checkbox:checked+.cta-form__consent-mark {
    background: #F6DEC3;
    border-color: #F6DEC3;
}

.cta-form__consent-checkbox:checked+.cta-form__consent-mark::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 6px;
    height: 11px;
    border: solid #1c1c1c;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cta-form__consent-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #9F9080;
    white-space: nowrap;
}

.cta-form__consent-text a {
    color: #F6DEC3;
    text-decoration: underline;
}

.cta-form__consent-text a:hover {
    text-decoration: none;
}

.cta-form__manager {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form__manager-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cta-form__manager-photo--square {
    width: 87px;
    height: 87px;
    border-radius: 4px;
}

.cta-form__manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-form__manager-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-form__manager-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-form__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C853;
}

.cta-form__manager-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #F6DEC3;
}

.cta-form__manager-role {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #9F9080;
}

/* ============================================
   Awards Section
   ============================================ */
.awards {
    padding: 120px 20px 60px;
    background: #1c1c1c;
}

.awards__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.awards__info {
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.awards__title-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.awards__main-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #F6DEC3;
    margin: 0;
}

.awards__badge {
    background: #3162C5;
    border-radius: 4px;
    padding: 8px 10px;
    width: 100%;
}

.awards__badge-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.56px;
    color: #F6DEC3;
    margin: 0;
}

.awards__description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #9F9080;
    margin: 0;
}

.awards__images {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.awards__quote-icon {
    width: 16px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 6px;
}

.awards__content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.awards__quote-text {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.22px;
    color: #F6DEC3;
}

.awards__quote-text p {
    margin-bottom: 12px;
}

.awards__quote-text p:last-child {
    margin-bottom: 0;
}

.awards__images-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.awards__combined-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.awards__combined-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.awards__image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* ============================================
   Advantages Section
   ============================================ */
.advantages {
    padding: 60px 20px;
    background: #1c1c1c;
    overflow: hidden;
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.advantages__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #F6DEC3;
    text-align: center;
    margin: 0;
}

.advantages__brand {
    text-transform: uppercase;
    letter-spacing: 0;
}

.advantages__grid {
    display: flex;
    gap: 28px;
    width: 100%;
}

/* Columns */
.advantages__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.advantages__column--row {
    flex-direction: row;
}

/* Advantage Card Base */
.advantage-card {
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}

/* Beige Text Card */
.advantage-card--beige {
    background: #F6DEC3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1c1c1c;
    position: relative;
    z-index: 2;
}

/* Equal height cards in left column */
/* First card fixed height, second card (gradient) stretches */
.advantages__column:not(.advantages__column--row)>.advantage-card:first-child {
    flex: none;
    height: 178.5px;
}

.advantages__column:not(.advantages__column--row)>.advantage-card:last-child {
    flex: 1;
}

.advantage-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.56px;
    margin: 0;
}

.advantage-card__title--light {
    color: #F6DEC3;
}

.advantage-card__text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.6;
    margin: 16px 0 0;
}

.advantage-card__text--light {
    color: #F6DEC3;
    opacity: 0.6;
}

.advantage-card__highlight {
    color: #910A2C;
}

.awards__highlight {
    color: #F6DEC3;
}

/* Gradient Card */
.advantage-card--gradient {
    background: linear-gradient(90deg, #910A2C 0%, #2B030D 100%);
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.advantage-card__gradient-content {
    flex: 1;
    max-width: 327px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card__icons {
    width: 259px;
    position: relative;
    overflow: visible;
}

/* Decorative circles */
.advantage-card__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(145, 10, 44, 0.3);
}

.advantage-card__circle--1 {
    width: 363px;
    height: 363px;
    top: -238px;
    left: 16px;
}

.advantage-card__circle--2 {
    width: 363px;
    height: 363px;
    top: -44px;
    left: 136px;
}

/* Icons */
.advantage-card__icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon--ok {
    width: 40px;
    height: 40px;
    top: 29px;
    left: 230px;
    background: #FF9700;
    border-radius: 8px;
}

.advantage-card__icon--vk {
    width: 40px;
    height: 40px;
    top: -4px;
    left: 12px;
    background: #1188FF;
    border-radius: 8px;
}

.advantage-card__icon--whatsapp {
    width: 50px;
    height: 50px;
    top: 56px;
    left: 188px;
    background: #13BF00;
    border-radius: 10px;
}

.advantage-card__icon--telegram {
    width: 50px;
    height: 50px;
    top: 44px;
    left: 32px;
    background: #26A5E5;
    border-radius: 10px;
}

.advantage-card__icon--phone {
    width: 87px;
    height: 87px;
    top: 62px;
    left: 72px;
    background: #26A5E5;
    border-radius: 12px;
    overflow: hidden;
}

.advantage-card__icon--phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Card */
.advantage-card--image {
    flex: 0 0 279px;
    height: 385px;
    position: relative;
    border-radius: 8px;
}

.advantage-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-card__image-content {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 56px);
}

.advantage-card__dot {
    position: absolute;
    left: 181px;
    top: 42px;
    width: 8px;
    height: 8px;
    background-color: #43A047;
    border-radius: 50%;
    z-index: 3;
}

.advantage-card__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: #9F9080;
}

/* Tall Card */
.advantage-card--tall {
    flex: 0 0 279px;
    height: 385px;
    overflow: hidden;
}

/* ============================================
   Reviews Section
   ============================================ */
/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 120px 0;
    background: #1c1c1c;
    color: var(--color-white);
}

.reviews__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #F6DEC3;
    text-align: center;
    margin: 0 0 40px;
}

/* Stats Row */
.reviews__stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stats-card {
    flex: 1;
    background: #F6DEC3;
    border-radius: 8px;
    padding: 28px;
    color: #1c1c1c;
}

.stats-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-card__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-card__icon-wrapper {
    width: 60px;
    height: 60px;
    background: #FF3333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card__icon {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
}

.stats-card__value {
    font-family: var(--font-display);
    /* Fallback if numbers don't look right in Cormorant, but Figma used it or Geist */
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
}

.stats-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
}

.stats-card__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.stats-card__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #910A2C;
    transition: opacity var(--transition-fast);
}

.stats-card__link:hover {
    opacity: 0.8;
}

/* Reviews Grid */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: rgba(43, 43, 43, 0.5);
    /* Slightly lighter than bg for contrast */
    background: #2b2b2b;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #3C3C3C;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #F6DEC3;
    margin: 0;
}

.review-card__role {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #9F9080;
    margin: 0 0 4px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
}

.review-card__body p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #9F9080;
    margin: 0;
}

.review-card__photos {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.review-card__photos img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

/* Responsive */
/* Responsive Reviews */
@media (max-width: 900px) {
    .reviews__stats {
        flex-direction: column;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer Section (New Design)
   ============================================ */
.footer {
    background: #151515;
    padding: 80px 20px 0;
    color: var(--color-white);
    overflow: hidden;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

/* Login Block */
.footer__login-block {
    background: #313131;
    border-radius: 8px;
    padding: 28px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__login-text {
    font-size: 16px;
    line-height: 24px;
    color: #F6DEC3;
}

.footer__login-btn {
    background: #910A2C;
    color: #F6DEC3;
    justify-content: center;
    border-radius: 4px;
    padding: 14px 24px;
    width: fit-content;
}

.footer__login-btn:hover {
    background: #a80c33;
}

/* Nav & Contacts Common */
.footer__nav-title {
    font-family: var(--font-body);
    /* Geist implies body font */
    font-size: 16px;
    line-height: 24px;
    color: #9F9080;
    /* Or similar gray from design */
    margin-bottom: 24px;
    font-weight: 400;
}

/* Navigation */
.footer__nav-block {
    display: flex;
    flex-direction: column;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link {
    font-size: 16px;
    line-height: 24px;
    color: #F6DEC3;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: #fff;
}

/* Contacts */
.footer__contacts-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__phone {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #F6DEC3;
    margin-bottom: 4px;
}

.footer__phone-hint {
    font-size: 12px;
    line-height: 16px;
    color: #6B6B6B;
    margin-bottom: 24px;
}

.footer__email {
    font-size: 16px;
    line-height: 24px;
    color: #F6DEC3;
    margin-bottom: 40px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link svg {
    display: block;
    transition: transform var(--transition-fast);
}

.footer__social-link:hover svg {
    transform: translateY(-2px);
}

/* Bottom Copyright & Dev */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 20px;
    color: #6B6B6B;
    margin-bottom: 40px;
}

.footer__social-link--circle {
    width: 40px;
    height: 40px;
    background: #F6DEC3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Branding */
.footer__branding {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* Break out of container */
    overflow: hidden;
    line-height: 0;
    text-align: center;
    padding-bottom: 0;
}

.footer__branding-text {
    font-family: var(--font-display);
    font-size: 11.5vw;
    /* Fit to screen width safely */
    line-height: 0.8;
    color: #910A2C;
    white-space: nowrap;
    display: block;
    transform: translateY(14%);
    /* Slight alignment tweak */
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer__main {
        flex-direction: column;
        gap: 60px;
    }

    .footer__login-block {
        max-width: 100%;
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   Responsive Design

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    body {
        max-width: 1920px;
        margin: 0 auto;
    }

    .hero__bg {
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
    }
}

/* Tablet (834px - 1239px) */
@media (max-width: 1239px) {
    .header__container {
        padding: 4px 2px;
    }

    .header__nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 13px;
    }

    .tours__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-card--large {
        grid-column: span 2;
    }

    .about__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__gallery-item--1 {
        grid-row: span 1;
    }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .founders__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .advantages__grid {
        flex-direction: column;
    }

    .advantages__column--row {
        flex-direction: column;
    }

    .advantage-card--image {
        min-height: 300px;
    }

    .reviews__track {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__social {
        justify-content: flex-start;
        grid-column: span 2;
    }
}

/* Search Form Mobile (< 992px) - Stack fields in column */
@media (max-width: 991px) {
    .search-form__inner {
        flex-direction: column;
        gap: 0;
    }

    .search-form__field {
        width: 100%;
        border-bottom: 1px solid var(--color-beige-dark);
    }

    .search-form__field:last-of-type {
        border-bottom: none;
    }

    /* Fields 1-2: no gap (merged)
       Fields 2-3, 3-4, 4-5: 8px gap */
    .search-form__field:nth-child(2),
    .search-form__field:nth-child(3),
    .search-form__field:nth-child(4),
    .search-form__field:nth-child(5) {
        margin-top: 8px;
    }

    .search-form__divider {
        display: none;
    }

    .search-form__btn {
        width: 100%;
        margin-top: 8px;
    }
}

/* Mobile (< 834px) */
@media (max-width: 833px) {
    .header {
        padding: 12px;
    }

    .header__container {
        padding: 4px 2px;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .header__contact {
        gap: 16px;
    }

    .tours__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tours__grid {
        grid-template-columns: 1fr;
    }

    .tour-card--large {
        grid-column: span 1;
    }

    .about {
        padding: 80px 0;
    }

    .about__title {
        font-size: 28px;
        line-height: 32px;
    }

    .about__gallery {
        grid-template-columns: 1fr;
    }

    .about__gallery-item img {
        height: 250px;
    }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about__stat-value {
        font-size: 36px;
    }

    .founders,
    .contact,
    .reviews,
    .cta {
        padding: 80px 0;
    }

    .advantages {
        padding: 60px 20px;
    }

    .awards {
        padding: 80px 20px 60px;
    }

    .founders__title,
    .contact__title,
    .reviews__title,
    .cta__title {
        font-size: 28px;
        line-height: 32px;
    }

    .advantages__title {
        font-size: 28px;
        line-height: 32px;
    }

    .advantages__grid {
        flex-direction: column;
    }

    .advantages__column--row {
        flex-direction: column;
    }

    .advantage-card--image {
        min-height: 250px;
    }

    .advantage-card__icons {
        display: none;
    }

    .advantage-card__title {
        font-size: 22px;
        line-height: 28px;
    }

    .awards__main-title {
        font-size: 28px;
        line-height: 32px;
    }

    .awards__badge-text {
        font-size: 22px;
        line-height: 26px;
    }

    .awards__images {
        flex-direction: column;
    }

    .awards__image {
        height: 240px;
    }

    .founders__image img,
    .contact__image img,
    .advantages__image img {
        height: 350px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .reviews__track {
        grid-template-columns: 1fr;
    }

    .cta__title {
        font-size: 32px;
        line-height: 36px;
    }

    .cta__form {
        flex-direction: column;
    }

    .footer {
        padding: 60px 0 32px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer__social {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 374px) {
    .hero__title {
        font-size: 32px;
        line-height: 36px;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .footer__nav {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Telegram Section
   ============================================ */
.telegram {
    padding: 60px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background-color: #1c1c1c;
    /* Fallback */
}

.telegram__container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135.26deg, #323232 8.44%, #252525 87.39%);
    border-radius: 8px;
    padding: 0;
    /* Removed padding to let image touch edges */
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    /* Based on image aspect */
}

/* Image Column */
/* Image Column */
.telegram__image-col {
    position: relative;
    width: 50%;
    /* Ensure it takes full height of the flex container if needed, 
       but container sets min-height: 400px. 
       Let image dictate or cover. */
    display: flex;
    z-index: 1;
}

.telegram__left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Optional: Border radius to match container if needed on left side */
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Content Column */
.telegram__content-col {
    width: 50%;
    /* Add padding here since removed from container */
    padding: 60px 60px 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically */
    z-index: 2;
}

.telegram__content-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    /* Limit width for cleaner look */
}

.telegram__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.telegram__icon {
    width: 32px;
    height: 32px;
    background: #26A5E5;
    border-radius: 4px;
    /* Figma: 2.4px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram__icon svg {
    width: 18px;
    height: 18px;
}

.telegram__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -1px;
    color: #F6DEC3;
    margin: 0 0 24px 0;
    /* Title -> List gap */
}

.telegram__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    /* List -> Button gap */
}

.telegram__list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: #F6DEC3;
    margin-bottom: 8px;
    /* Refined to 8px gap */
    position: relative;
    padding-left: 20px;
}

.telegram__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F6DEC3;
    /* Bullet color */
}

.telegram__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background-color: #910A2C;
    border-radius: 4px;
    color: #F6DEC3;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.telegram__button:hover {
    background-color: #7A0825;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #1C1C1C 0%, #282828 100%);
    padding: 80px 20px;
    color: #F6DEC3;
}

.faq__container {
    max-width: 600px;
    margin: 0 auto;
}

.faq__title {
    font-family: var(--font-display);
    font-size: 36px;
    /* Matches Telegram title size */
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 40px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    /* gap: 0; Items have border bottom, so no gap usually, or gap with border? */
    /* Design shows separators. */
}

.faq__item {
    border-bottom: 1px solid rgba(246, 222, 195, 0.1);
    padding: 24px 0;
}

.faq__item:first-child {
    padding-top: 0;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    /* Hide default marker */
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question span {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.faq__button {
    width: 40px;
    height: 40px;
    background-color: #313131;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

/* Rotate button when open */
details[open] .faq__button {
    transform: rotate(45deg);
}

.faq__answer {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    opacity: 0.6;
    max-width: 90%;
    /* prevent text from hitting button column if needed */
}

/* Reviews Section */
.reviews {
    background-color: #282828;
    padding: 60px 20px 120px 20px;
    color: #F6DEC3;
}

.reviews__container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    color: #F6DEC3;
    margin-bottom: 40px;
}

/* Stats Row */
.reviews__stats {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}

.reviews__stat-card {
    flex: 1;
    background-color: #F6DEC3;
    border-radius: 8px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1C1C1C;
}

.reviews__stat-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__yandex-icon {
    width: 60px;
    height: 60px;
    background-color: #FC3F1D;
    /* Yandex Red */
    color: white;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__stat-rating {
    font-family: var(--font-display);
    /* Using display font for big number? Or sans */
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.reviews__stat-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
}

.reviews__stat-address {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews__stat-link {
    color: #910A2C;
    /* Red link color */
    font-family: var(--font-body);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

/* Reviews Grid */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.reviews__card {
    background-color: #313131;
    /* Dark card bg */
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews__user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.reviews__user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews__user-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #F6DEC3;
    margin: 0;
}

.reviews__user-role {
    font-family: var(--font-body);
    font-size: 14px;
    color: #F6DEC3;
    opacity: 0.6;
    margin: 0;
}

.reviews__stars {
    color: #E6B66C;
    font-size: 14px;
    letter-spacing: 2px;
}

.reviews__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: #F6DEC3;
    opacity: 0.8;
    margin: 0;
}

.reviews__images-grid {
    display: flex;
    gap: 8px;
    margin-top: auto;
    /* Push to bottom */
}

.reviews__image-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-size: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .telegram__container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    /* Reviews Responsive */
    .reviews__stats {
        flex-direction: column;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .telegram__image-col {
        width: 100%;
        margin-bottom: 40px;
    }

    .telegram__content-col {
        width: 100%;
        padding: 0;
    }

    .telegram__header {
        justify-content: center;
    }

    .telegram__list li {
        text-align: left;
        display: inline-block;
        /* Or kept block centered? Better left aligned block in center */
    }

    .telegram__list {
        display: inline-block;
        text-align: left;
    }
}

/* ============================================
   Advantages Section Responsive
   ============================================ */

/* 992px - 1240px: Keep desktop structure, just scale */
@media (min-width: 992px) and (max-width: 1240px) {
    .advantages__grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow: hidden;
    }

    .advantages__column {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .advantages__column--row {
        flex-direction: row;
    }

    .advantages__column--row>.advantage-card {
        flex: 1;
        min-width: 0;
    }

    .advantages__column:not(.advantages__column--row)>.advantage-card:first-child {
        flex: none;
        height: 160px;
    }

    .advantages__column:not(.advantages__column--row)>.advantage-card:last-child {
        flex: 1;
    }
}

/* 768px - 992px: New layout */
@media (min-width: 768px) and (max-width: 991px) {
    .advantages__grid {
        flex-direction: column;
        gap: 28px;
    }

    /* First column: stack vertically (Поддержка + Всегда на связи) */
    .advantages__column:not(.advantages__column--row) {
        flex-direction: column;
        width: 100%;
    }

    .advantages__column:not(.advantages__column--row)>.advantage-card {
        flex: none;
        height: auto;
        min-height: 150px;
        width: 100%;
    }

    .advantages__column:not(.advantages__column--row)>.advantage-card--gradient {
        min-height: 180px;
        overflow: visible;
    }

    /* Adapt icons position for tablet */
    .advantage-card__icons {
        width: 180px;
        transform: scale(0.8);
        transform-origin: top right;
    }

    .advantage-card__circle--1,
    .advantage-card__circle--2 {
        display: none;
    }

    /* Second column: stay in row (Туры онлайн + Надежные партнеры) */
    .advantages__column--row {
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }

    .advantages__column--row .advantage-card {
        flex: 1;
        min-width: 0;
    }

    .advantages__column--row .advantage-card--image {
        flex: 1;
        min-width: 0;
        height: 280px;
    }

    .advantages__column--row .advantage-card--tall {
        flex: 1;
        min-width: 0;
        height: auto;
        padding: 28px;
        border-radius: 8px;
        overflow: hidden;
    }

    /* Hot tours: show 2 cards */
    .hot-tour-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Below 768px: Stack everything */
@media (max-width: 767px) {
    .advantages__grid {
        flex-direction: column;
        gap: 20px;
    }

    .advantages__column {
        flex-direction: column;
        width: 100%;
    }

    .advantages__column--row {
        flex-direction: column;
    }

    .advantages__column:not(.advantages__column--row)>.advantage-card {
        height: auto;
        min-height: 150px;
    }

    .advantages__column--row .advantage-card--image {
        height: 250px;
    }

    .advantages__column--row .advantage-card--tall {
        height: auto;
    }

    /* "Надежные партнеры" - text closer to title */
    .advantage-card--tall .advantage-card__text {
        margin-top: 12px;
    }

    .advantage-card--tall {
        gap: 0;
        justify-content: flex-start;
    }
}

/* ============================================
   Tours & Hot Tours Responsive (520px - 768px)
   ============================================ */
@media (min-width: 520px) and (max-width: 767px) {

    /* Tours grid: 2 columns */
    .tours__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tour-card {
        flex: none;
        max-width: none;
    }

    .tour-card--more {
        grid-column: auto;
    }

    /* Hot tours: hide nav buttons, show wider cards */
    .hot-tours__nav {
        display: none;
    }

    .hot-tour-card {
        flex: 0 0 200px;
    }

    .hot-tours__container {
        padding: 0 20px;
    }
}

/* Below 520px: single column for tours */
@media (max-width: 519px) {
    .tours__grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .tour-card {
        flex: none;
        width: 100%;
        max-width: none;
        height: 380px;
        aspect-ratio: unset;
    }

    .tour-card--more {
        height: 380px;
        aspect-ratio: unset;
    }

    .tour-card__title {
        font-size: 28px;
        line-height: 32px;
    }

    .tour-card__more-title {
        font-size: 24px;
        line-height: 28px;
    }

    .hot-tours__nav {
        display: none;
    }

    .hot-tour-card {
        flex: 0 0 85%;
    }
}

/* ============================================
   CTA Form Responsive
   ============================================ */
@media (max-width: 767px) {
    .cta-form__box {
        padding: 40px 20px;
    }

    .cta-form {
        padding: 60px 16px;
    }

    .cta-form__container {
        padding: 0;
    }

    .cta-form__tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 519px) {
    .cta-form__consent-text {
        white-space: normal;
    }
}

/* ============================================
   Awards Section Responsive
   ============================================ */
@media (max-width: 991px) {
    .awards__container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    /* Top part - centered with badge fitting text */
    .awards__info {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .awards__title-block {
        align-items: center;
    }

    .awards__badge {
        width: auto;
        display: inline-block;
        padding: 8px 16px;
    }

    /* Bottom part - quote icon in its own column */
    .awards__images {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 16px;
        align-items: start;
    }

    .awards__quote-icon {
        grid-row: span 2;
        margin-top: 6px;
    }

    .awards__content-col {
        display: contents;
    }

    .awards__quote-text {
        grid-column: 2;
    }

    .awards__combined-image {
        grid-column: 2;
    }
}

/* ============================================
   Telegram Section Responsive
   ============================================ */
@media (min-width: 992px) and (max-width: 1180px) {
    .telegram__image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .telegram__container {
        flex-direction: column;
        padding: 0;
    }

    .telegram__content-col {
        order: -1;
        width: 100%;
        padding: 40px 20px;
    }

    .telegram__image-col {
        order: 1;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .telegram__image-col img {
        border-radius: 0;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: 100%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.mobile-menu.is-open .mobile-menu__content {
    transform: translateY(0);
}

/* Close button */
.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 222, 195, 0.1);
    border: none;
    border-radius: 50%;
    color: #F6DEC3;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mobile-menu__close:hover {
    background: rgba(246, 222, 195, 0.2);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #F6DEC3;
    text-transform: uppercase;
    transition: opacity var(--transition-fast);
}

.mobile-menu__link:hover {
    opacity: 0.7;
}

.mobile-menu__divider {
    width: 100%;
    height: 1px;
    background: rgba(246, 222, 195, 0.2);
    margin: 40px 0;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-menu__phone {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: #F6DEC3;
    transition: opacity var(--transition-fast);
}

.mobile-menu__phone:hover {
    opacity: 0.7;
}

.mobile-menu__phone-hint {
    font-size: 14px;
    color: rgba(246, 222, 195, 0.6);
}

.mobile-menu__socials {
    display: flex;
    gap: 16px;
}

.mobile-menu__social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(246, 222, 195, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F6DEC3;
    transition: background var(--transition-fast);
}

.mobile-menu__social:hover {
    background: rgba(246, 222, 195, 0.2);
}

/* Burger menu animation */
.header__burger.is-open span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.header__burger.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   Search Form - Dropdowns & Position
   ============================================ */
.search-form__field {
    position: relative;
    cursor: pointer;
}

/* Desktop Dropdowns */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 280px;
    padding: 16px;
}

.dropdown.is-open {
    display: block;
}

.dropdown__header {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
    margin-bottom: 12px;
}

.dropdown__search {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
}

.dropdown__search:focus {
    outline: none;
    border-color: #910A2C;
}

.dropdown__list {
    max-height: 240px;
    overflow-y: auto;
}

.dropdown__item {
    padding: 12px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 4px;
    transition: background 0.15s;
}

.dropdown__item:hover,
.dropdown__item.is-selected {
    background: #FBF2E7;
}

.dropdown__city {
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1C;
}

.dropdown__country {
    font-size: 12px;
    color: #888;
}

.dropdown__apply {
    width: 100%;
    padding: 14px;
    background: #1C1C1C;
    color: #F6DEC3;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: opacity 0.15s;
}

.dropdown__apply:hover {
    opacity: 0.9;
}

/* Calendar Dropdown */
.dropdown--calendar {
    min-width: 560px;
    padding: 20px;
}

.dropdown__calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dropdown__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.dropdown__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #910A2C;
}

/* Calendar */
.calendar {
    position: relative;
}

.calendar__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.calendar__nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.15s;
}

.calendar__nav-btn:hover {
    background: #f5f5f5;
}

.calendar__months {
    display: flex;
    gap: 32px;
}

.calendar__month {
    flex: 1;
}

.calendar__month-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
    margin-bottom: 16px;
    padding-top: 4px;
}

.calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar__weekdays span {
    text-align: center;
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
}

.calendar__weekend {
    color: #910A2C !important;
}

.calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1C1C1C;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
}

.calendar__day:hover {
    background: #FBF2E7;
}

.calendar__day--disabled {
    color: #ccc;
    pointer-events: none;
}

.calendar__day--selected {
    background: #910A2C;
    color: #fff;
}

.calendar__day--range {
    background: #FBF2E7;
    border-radius: 0;
}

.calendar__day--range-start {
    border-radius: 50% 0 0 50%;
}

.calendar__day--range-end {
    border-radius: 0 50% 50% 0;
}

/* Counter Dropdown */
.dropdown--counter {
    min-width: 240px;
}

.counter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.counter__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter__label-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.counter__label {
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1C;
}

.counter__sublabel {
    font-size: 12px;
    color: #888;
}

.counter__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #E5E5E5;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #1C1C1C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.counter__btn:hover {
    border-color: #910A2C;
    color: #910A2C;
}

.counter__btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.counter__value {
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
}

/* ============================================
   Mobile Modals
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    max-height: 85vh;
    overflow-y: auto;
}

.modal__content--calendar {
    max-height: 90vh;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal__title {
    font-size: 18px;
    font-weight: 500;
    color: #1C1C1C;
}

.modal__close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

.modal__search {
    width: 100%;
    padding: 14px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 16px;
}

.modal__list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.modal__item {
    padding: 14px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
    transition: background 0.15s;
}

.modal__item:hover,
.modal__item.is-selected {
    background: #FBF2E7;
}

.modal__city {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
}

.modal__country {
    font-size: 14px;
    color: #888;
}

.modal__apply {
    width: 100%;
    padding: 16px;
    background: #910A2C;
    color: #F6DEC3;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
}

.modal__apply:hover {
    opacity: 0.9;
}

/* Modal Calendar */
.modal__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
    margin-bottom: 12px;
}

.modal__date-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.modal__date-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.modal__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.modal__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #910A2C;
}

/* Mobile calendar scrollable */
.calendar--mobile .calendar__months--single {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.counter--modal {
    margin-bottom: 20px;
}

/* Hide dropdowns on mobile, show modals */
@media (max-width: 767px) {
    .dropdown {
        display: none !important;
    }
}

/* Hide modals on desktop */
@media (min-width: 768px) {
    .modal {
        display: none !important;
    }
}

/* Fix gap between fields 1-2 on mobile (< 992px) */
@media (max-width: 991px) {
    .search-form__field[data-dropdown="departure"] {
        margin-bottom: 0;
    }
}