:root {
    --primary: #2d87f0;
    --secondary: #ff6b6b;
    --accent: #4ecdc4;
    --gray: #6c757d;
    --text: #1a1a2e;
    --bg: #f4f6f9;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.96);
    --shadow: rgba(0, 0, 0, 0.07);
    --shadow-hover: rgba(0, 0, 0, 0.14);
    --footer-bg: #1a1a2e;
    --input-bg: #ffffff;
    --testimonial-bg: #ffffff;
    --border: rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] {
    --text: #eeeef2;
    --bg: #111116;
    --card-bg: #1b1b24;
    --header-bg: rgba(17, 17, 22, 0.96);
    --shadow: rgba(0, 0, 0, 0.28);
    --shadow-hover: rgba(0, 0, 0, 0.45);
    --footer-bg: #0d0d12;
    --input-bg: #252530;
    --testimonial-bg: #1b1b24;
    --gray: #9898aa;
    --border: rgba(255, 255, 255, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -120%;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

#site-header {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
    box-shadow: 0 2px 24px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: padding 0.3s;
}

#site-header.scrolled nav {
    padding: 0.7rem 0;
}

.logo {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.1rem;
}

.nav-links li a {
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.93rem;
    transition: color 0.2s, background 0.2s;
    display: block;
}

.nav-links li a:hover {
    color: var(--primary);
    background: rgba(45, 135, 240, 0.08);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.btn {
    display: inline-block;
    padding: 0.72rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.58rem 1.3rem;
    font-size: 0.88rem;
}

.btn-nav:hover {
    background: #1a73e8;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 135, 240, 0.38);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #1a73e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 135, 240, 0.38);
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.theme-toggle {
    background: var(--card-bg);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 1px 8px var(--shadow);
    transition: all 0.25s;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 38px;
    height: 38px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.72), rgba(45, 135, 240, 0.72));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    animation: heroFadeIn 0.9s ease both;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-content>p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 2.25rem;
    opacity: 0.88;
}

.hero-search {
    display: flex;
    max-width: 540px;
    margin: 0 auto 2.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    border-radius: 50px;
    overflow: hidden;
    background: var(--input-bg);
}

.hero-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: inherit;
    font-size: 0.93rem;
    background: transparent;
    color: #1a1a2e;
    outline: none;
    min-width: 0;
}

.hero-search input::placeholder {
    color: #9099aa;
}

.hero-search button {
    border-radius: 0;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffd166;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.82rem;
    opacity: 0.82;
    margin: 0;
    letter-spacing: 0.02em;
}

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-dots {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: white;
    width: 26px;
    border-radius: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
    opacity: 0.65;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 11px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.section-title {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-title h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    color: var(--text);
    margin-bottom: 0.6rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    margin-top: 1rem;
    font-size: 0.97rem;
}

.section-title--left {
    text-align: left;
}

.section-title--left h2::after {
    left: 0;
    transform: none;
}

.section-title--light h2,
.section-title--light p {
    color: white;
}

.section-title--light h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.destinations {
    padding: 5rem 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}

.destination-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--shadow-hover);
}

.card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .card-img img,
.package-card:hover .card-img img {
    transform: scale(1.07);
}

.card-content {
    padding: 1.4rem;
}

.card-content h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.card-content p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.card-price {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary);
}

.card-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 1;
}

.packages {
    padding: 5rem 0;
    background: var(--bg);
}

.package-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 0.55rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.22s;
    color: var(--text);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
}

.package-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.package-card.hidden {
    display: none;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--shadow-hover);
}

.package-card .card-img {
    height: 200px;
}

.package-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-info {
    padding: 1.4rem;
}

.package-info h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.package-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.7rem;
    color: var(--gray);
    font-size: 0.83rem;
}

.package-meta i {
    margin-right: 4px;
}

.package-info>p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.package-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 0.72rem;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-duration {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 3px;
}

.deal {
    background: linear-gradient(135deg, #1a6fd8, #2dbdb4);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.deal-content {
    max-width: 680px;
    margin: 0 auto;
}

.deal h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.deal p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    min-width: 74px;
    text-align: center;
}

.countdown-number {
    font-size: 2.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0.7rem;
    margin-bottom: 0.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.countdown-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.testimonials {
    padding: 5rem 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--testimonial-bg);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 22px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px var(--shadow-hover);
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star-rating i {
    color: #f59e0b;
    font-size: 0.82rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
}

.testimonial-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.78rem;
}

.about {
    padding: 5rem 0;
    background: var(--card-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title--left {
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.72;
    margin-bottom: 0.9rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature>i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(45, 135, 240, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.about-feature p {
    font-size: 0.83rem;
    color: var(--gray);
    margin: 0;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 54px var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.04);
}

.newsletter {
    background: var(--primary);
    color: white;
    padding: 4.5rem 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    max-width: 480px;
    margin: 1.75rem auto 0;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.82rem 1.25rem;
    border-radius: 50px;
    border: none;
    font-size: 0.93rem;
    font-family: inherit;
    outline: none;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    transition: background 0.25s;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.newsletter-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.26);
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.92rem;
    min-height: 1.4em;
}

.newsletter-message.success {
    color: #a7f3d0;
}

.newsletter-message.error {
    color: #fca5a5;
}

#scrollToTopBtn {
    position: fixed;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 9999;
    background: var(--primary);
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(45, 135, 240, 0.42);
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.42);
}

#scrollToTopBtn i {
    pointer-events: none;
}

footer {
    background: var(--footer-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-column>p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.62rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.62rem;
}

.contact-info li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.78rem;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.contact-info li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: background 0.25s, transform 0.25s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.83rem;
}

.animate-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-section.in-view {
    opacity: 1;
    transform: none;
}

.animate-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-card.in-view {
    opacity: 1;
    transform: none;
}

.animate-card:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-card:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-card:nth-child(4) {
    transition-delay: 0.08s;
}

.animate-card:nth-child(5) {
    transition-delay: 0.16s;
}

.animate-card:nth-child(6) {
    transition-delay: 0.24s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img {
        order: -1;
    }

    .about-img img {
        height: 300px;
    }

    .about-content .section-title--left {
        text-align: center;
    }

    .about-content .section-title--left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-16px);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s 0.28s;
        pointer-events: none;
    }

    .nav-links.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s;
        pointer-events: all;
    }

    .nav-links li a {
        font-size: 1.15rem;
        padding: 0.7rem 1.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-nav {
        display: none;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 14px;
    }

    .hero-search input {
        border-radius: 0;
        padding: 0.9rem 1.25rem;
    }

    .hero-search button {
        border-radius: 0 0 14px 14px;
        padding: 0.85rem;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.75rem;
    }

    .countdown {
        gap: 0.6rem;
    }

    .countdown-item {
        min-width: 64px;
    }

    .countdown-number {
        font-size: 1.75rem;
        padding: 0.6rem;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 0 0.5rem;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-dots {
        bottom: 4.5rem;
    }

    .stat h3 {
        font-size: 1.85rem;
    }

    .destination-grid,
    .package-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        gap: 1rem;
    }
}

.booking-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(45, 135, 240, 0.05) 100%);
}

.booking-page {
    padding: 5rem 0;
    background: var(--bg);
}

.booking-page .booking-form {
    max-width: 720px;
    margin: 0 auto;
}

.booking-container {
    max-width: 680px;
}

.booking-form {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 8px 36px var(--shadow);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.92rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-message {
    background: rgba(78, 205, 196, 0.12);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: #2d9a8f;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    display: none;
    animation: fadeIn 0.4s ease;
}

.success-message.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.45rem;
}

.form-optional {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.82rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.78rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--input-bg);
    transition: border-color 0.22s, box-shadow 0.22s, background-color 0.3s;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 135, 240, 0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.error-message {
    color: var(--secondary);
    font-size: 0.78rem;
    margin-top: 0.4rem;
    display: none;
}

.error-message.show {
    display: block;
}

.btn-full {
    width: 100%;
    padding: 0.95rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1.25rem;
}

.form-footer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-footer a:hover {
    color: #1a73e8;
}

@media (max-width: 580px) {
    .booking-section {
        padding: 5rem 0 3rem;
    }

    .booking-form {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
    }

    .form-title {
        font-size: 1.45rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}