*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #08111c;
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(8, 17, 28, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo img {
    width: 170px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    transition: opacity .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #ffffff;
}

.header-btn,
.mobile-menu-btn,
.hero-btn,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease;
}

.header-btn,
.hero-btn {
    background: linear-gradient(180deg, #ff7d73 0%, #f05f5f 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(240, 95, 95, 0.22);
}

.hero-btn-secondary,
.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-btn:hover,
.mobile-menu-btn:hover,
.hero-btn:hover,
.hero-btn-secondary:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: .2s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 17, 28, 0.96);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 16px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu-inner a {
    color: #ffffff;
    font-size: 16px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(8, 17, 28, 0.45), rgba(8, 17, 28, 0.72)),
        url('/assets/images/hero/hero-main.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 205, 120, 0.08), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
    padding: 80px 0;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #d8b36a;
    letter-spacing: .22em;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
}

.hero p {
    margin: 0 auto 34px;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.section {
    padding: 90px 0;
}

.section-dark {
    background: #0b1522;
}

.section-title-wrap {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}

.section-label {
    color: #d8b36a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
}

.section-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.8;
}

.destinations-grid,
.features-grid {
    display: grid;
    gap: 24px;
}

.destinations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-card {
    background: #101c2c;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.destination-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.destination-card-content {
    padding: 20px;
}

.destination-card-country {
    color: #d8b36a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.destination-card h3 {
    margin: 0;
    font-size: 24px;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    background: #101c2c;
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,.06);
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.feature-card p {
    margin: 0;
    color: rgba(255,255,255,.74);
    line-height: 1.7;
}

.cta-box {
    background:
        linear-gradient(rgba(12, 20, 32, 0.74), rgba(12, 20, 32, 0.9)),
        url('/assets/images/hero/hero-search.jpg') center center / cover no-repeat;
    border-radius: 30px;
    padding: 56px 34px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.08);
}

.cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
}

.cta-box p {
    margin: 0 auto 24px;
    max-width: 760px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    font-size: 18px;
}

.site-footer {
    background: #050b13;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 54px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 32px;
}

.footer-logo img {
    width: 160px;
    height: auto;
    margin-bottom: 14px;
}

.footer-text {
    margin: 0;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    max-width: 360px;
}

.footer-col h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    color: rgba(255,255,255,.72);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.footer-policy-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    color: rgba(255,255,255,.68);
}

@media (max-width: 1024px) {
    .site-nav,
    .header-btn {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .destinations-grid,
    .features-grid,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 30px, 1200px);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero p {
        font-size: 17px;
    }

    .destinations-grid,
    .features-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
        text-align: center;
    }
}