:root {
    --primary-red: #ff4931;
    --dark-red: #b11500;
    --bg-light: #ffedea;
    --white: #ffffff;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-sm: 100px;
}

.hero__bg img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    width: 100%;
}

.dest {
    background-color: var(--bg-light);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    font-family: sans-serif;
}

.dest__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dest__badge {
    display: inline-block;
    background: var(--white);
    color: var(--dark-red);
    padding: 8px 20px;
    border-radius: 48px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dest__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--black);
}

.dest__subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 48px;
}

.dest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dest-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-card__top {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-card__img {
    transform: scale(1.1);
}

.dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.dest-card__trend {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.dest-card__trend--hot { background-color: var(--primary-red); }
.dest-card__trend--trending { background-color: #8b5cf6; }
.dest-card__trend--rising { background-color: #10b981; }

.dest-card__img-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--white);
}

.dest-card__city-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dest-card__flag { font-size: 24px; }
.dest-card__city-name { font-size: 24px; font-weight: 700; margin: 0; }
.dest-card__country { font-size: 13px; opacity: 0.8; margin: 0; }

.dest-card__users {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.dest-card__bottom {
    padding: 20px;
}

.dest-card__why-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dest-card__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.dest-card__highlights li {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-card__highlights li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

.dest-card__btn {
    display: block;
    text-align: center;
    background-color: var(--bg-light);
    color: var(--primary-red);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.dest-card__btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.dest__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.dest__cta:hover {
    background-color: #e63f2a;
}

.dest__bg {
    position: absolute;
    pointer-events: none;
}

.dest__bg--left {
    left: -5%;
    top: 10%;
    width: 20%;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .dest__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dest {
        padding: 48px 16px;
    }
    .dest__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dest__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

html {
    scroll-behavior: smooth;
}

.cities-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
    width: 100%;
}

.cities-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.cities-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.badge {
    background-color: #ffedea;
    color: #b11500;
    padding: 8px 20px;
    border-radius: 48px;
    margin-bottom: 8px;
    font-family: 'Linotte', sans-serif;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.footer-container .badge {
    background-color: transparent;
}

.title {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin: 0;
    padding: 0 16px;
}

.subtitle {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin: 0;
    padding: 0 16px;
}

.sticky-nav {
    position: sticky;
    top: 70px;
    z-index: 40;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 12px 16px;
    border-radius: 100000px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
}

.nav-link {
    padding: 8px 14px;
    background-color: #ffedea;
    color: #b11500;
    border-radius: 100000px;
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #ff4931;
    color: #ffffff;
}

.continents-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.continent-group {
    scroll-margin-top: 150px;
}

.continent-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.line {
    height: 2px;
    flex: 1;
}

.line-left {
    background: linear-gradient(to right, transparent, #ff4931);
}

.line-right {
    background: linear-gradient(to left, transparent, #ff4931);
}

.continent-name {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

.countries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.country-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 280px;
    transition: box-shadow 0.3s ease;
}

.country-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.flag {
    font-size: 24px;
}

.country-name {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0;
    transition: color 0.3s ease;
}

.country-card:hover .country-name {
    color: #ff4931;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    overflow-y: auto;
    flex: 1;
    align-content: flex-start;
    padding-right: 8px;
}

.city-tag {
    padding: 5px 10px;
    background-color: #ffffff;
    border-radius: 100000px;
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    height: fit-content;
}

.city-tag:hover {
    background-color: #ff4931;
    color: #ffffff;
}

.show-all-btn {
    background-color: #ff4931;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.show-all-btn:hover {
    background-color: #e63f2a;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #ff4931;
    border-radius: 10px;
}

@media (min-width: 640px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 40px;
    }
    .subtitle {
        font-size: 18px;
    }
    .sticky-nav {
        top: 86px;
        padding: 16px 24px;
        gap: 8px;
    }
    .nav-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    .continents-wrapper {
        gap: 64px;
    }
    .continent-group {
        scroll-margin-top: 200px;
    }
    .continent-title-wrapper {
        gap: 16px;
        margin-bottom: 32px;
    }
    .line {
        height: 3px;
    }
    .continent-name {
        font-size: 32px;
    }
    .countries-grid {
        gap: 24px;
    }
    .country-card {
        padding: 20px;
        height: 320px;
    }
    .country-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    .flag {
        font-size: 28px;
    }
    .country-name {
        font-size: 20px;
    }
    .city-tag {
        padding: 6px 12px;
        font-size: 14px;
    }
    .show-all-btn {
        padding: 16px 24px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.happy-couples-section {
    background-color: #fff5f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
    width: 100%;
    position: relative;
}

.couples-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 1080px;
}

.couples-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.couples-title {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin: 0;
}

.couples-subtitle {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0;
}

.couples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.couple-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.couple-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.couple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.card-content {
    padding: 24px;
}

.couple-names {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin: 0 0 8px 0;
}

.couple-story {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.couple-location {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #ff4931;
    margin: 0;
}

.couples-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin: 0 0 16px 0;
}

.cta-btn {
    background-color: #ff4931;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 100000px;
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cta-btn:hover {
    background-color: #e63f2a;
}

@media (min-width: 768px) {
    .happy-couples-section {
        padding: 76px 0;
    }
    .couples-title {
        font-size: 40px;
    }
    .couples-subtitle {
        font-size: 18px;
    }
    .couples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .card-image-wrapper {
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .couples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq__support {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq__support-text {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 16px 0;
}

.faq__support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background-color: #ffffff;
    border: 2px solid #ff4931;
    border-radius: 100000px;
    color: #ff4931;
    font-family: 'Linotte', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq__support-btn:hover {
    background-color: #fff5f3;
}

.faq__subtitle {
    font-family: 'Linotte', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 16px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .faq__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
}