/* ===================================
   CSS Variables - Design System
   =================================== */
:root {
    /* Primary Colors */
    --primary-orange: #F7A02C;
    --coral-orange: #FE7C5C;

    /* Text Colors */
    --dark-navy: #232C47;
    --dark-grey: #5B5C6C;
    --light-grey: #8D92A3;

    /* Background Colors */
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --bg-cream: #FFFCEB;

    /* Accent Colors */
    --amber-yellow: #FFC107;
    --light-blue: #90CAF9;
    --medium-blue: #547AFF;
    --purple-indigo: #6C63FF;
    --green: #28A745;
    --border-grey: #D0D0D0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-soft: 0px 8px 24px rgba(45, 50, 70, 0.15);
    --shadow-card: 0px 12px 32px rgba(45, 50, 70, 0.12);
    --shadow-hover: 0px 16px 40px rgba(45, 50, 70, 0.18);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;
    --spacing-4xl: 120px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Container */
    --container-max-width: 1200px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    font-weight: 700;
}

h1 {
    font-size: 72px;
    line-height: 1;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-grey);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-2xl);
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: var(--primary-orange);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: #E89425;
}

.btn-outline {
    background: var(--bg-white);
    color: var(--dark-navy);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-grey);
}

.btn-outline:hover {
    background: var(--dark-navy);
    color: var(--bg-white);
    border-color: var(--dark-navy);
}

.btn-play {
    background: var(--coral-orange);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-subscribe {
    background: var(--coral-orange);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: var(--radius-md);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ===================================
   Background Decorations
   =================================== */
.bg-decoration {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.hero-yellow-blob {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--bg-cream) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(60px);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-grey);
}

.nav-links a:hover,
.nav-links a:first-child {
    color: var(--dark-navy);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.language-select {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-navy);
    cursor: pointer;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: var(--spacing-4xl) 0 var(--spacing-4xl);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    pointer-events: none;
}

.airplane-1 {
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 50 L40 30 L60 45 L80 25 L85 30 L70 55 L65 50 L45 60 Z" fill="%2390CAF9"/></svg>');
    top: 20%;
    right: 15%;
    opacity: 0.6;
}

.airplane-2 {
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 50 L40 30 L60 45 L80 25 L85 30 L70 55 L65 50 L45 60 Z" fill="%2390CAF9"/></svg>');
    top: 60%;
    right: 5%;
    opacity: 0.4;
    transform: rotate(30deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.hero-text {
    max-width: 550px;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--coral-orange);
    margin-bottom: var(--spacing-md);
}

.hero-title {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.underline-decoration {
    position: relative;
    display: inline-block;
}

.underline-decoration::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 8px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 20"><path d="M0 10 Q50 5 100 10 T200 10" stroke="%23FE7C5C" stroke-width="6" fill="none" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-description {
    font-size: 18px;
    margin-bottom: var(--spacing-xl);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.play-text {
    font-size: 16px;
    color: var(--dark-grey);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.traveler-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    position: relative;
    padding: var(--spacing-4xl) 0;
}

.services-decoration {
    position: absolute;
    pointer-events: none;
}

.blob-red {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 5%;
    border-radius: 50%;
    filter: blur(80px);
}

.plus-pattern {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    background-image:
        radial-gradient(circle, var(--primary-orange) 2px, transparent 2px),
        radial-gradient(circle, var(--purple-indigo) 2px, transparent 2px),
        radial-gradient(circle, var(--border-grey) 2px, transparent 2px);
    background-size: 40px 40px, 50px 50px, 60px 60px;
    background-position: 0 0, 20px 20px, 10px 30px;
    opacity: 0.3;
}

.services .container {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    margin: 0 auto var(--spacing-md);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 16px;
    color: var(--dark-grey);
}

/* ===================================
   Destinations Section
   =================================== */
.destinations {
    position: relative;
    padding: var(--spacing-4xl) 0;
}

.destinations-decoration {
    position: absolute;
    pointer-events: none;
}

.spiral-shape {
    width: 300px;
    height: 300px;
    right: -50px;
    top: 20%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="M150 50 Q200 100 150 150 Q100 200 150 250" stroke="%23D0D0D0" stroke-width="2" fill="none"/></svg>');
    opacity: 0.3;
}

.destinations .container {
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.destination-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.destination-info {
    padding: var(--spacing-lg);
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.destination-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
}

.destination-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
}

.destination-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-grey);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    position: relative;
    padding: var(--spacing-4xl) 0;
}

.how-decoration {
    position: absolute;
    pointer-events: none;
}

.abstract-blob {
    width: 600px;
    height: 600px;
    right: -100px;
    top: 0;
    background: radial-gradient(circle, rgba(144, 202, 249, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.how-left .section-label {
    color: var(--light-grey);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-yellow {
    background: var(--amber-yellow);
}

.step-icon-orange {
    background: var(--coral-orange);
}

.step-icon-blue {
    background: var(--medium-blue);
}

.step-content {
    text-align: left;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: var(--light-grey);
}

.how-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.trip-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    animation: float 6s ease-in-out infinite;
}

.trip-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.trip-info {
    padding: var(--spacing-md);
    position: relative;
}

.trip-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.trip-date {
    font-size: 14px;
    color: var(--light-grey);
    margin-bottom: var(--spacing-md);
}

.trip-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.trip-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trip-people {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.trip-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid var(--bg-white);
}

.avatar:first-child {
    margin-left: 0;
}

.trip-count {
    font-size: 14px;
    color: var(--dark-grey);
}

.trip-heart {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--coral-orange);
}

.trip-ongoing {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    max-width: 250px;
    position: absolute;
    bottom: 80px;
    right: -20px;
}

.trip-ongoing-icon {
    font-size: 32px;
}

.trip-ongoing-info {
    flex: 1;
}

.trip-ongoing-status {
    font-size: 12px;
    color: var(--light-grey);
    margin-bottom: 4px;
}

.trip-ongoing-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.trip-ongoing-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-indigo);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--purple-indigo);
    border-radius: 3px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--spacing-4xl) 0;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.testimonials-left .section-label {
    color: var(--light-grey);
}

.testimonial-dots {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--dark-navy);
}

.testimonials-right {
    position: relative;
    display: flex;
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: var(--spacing-xl);
    position: relative;
    flex: 1;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-avatar {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-author {
    margin-top: var(--spacing-md);
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--light-grey);
}

/* ===================================
   Partners Section
   =================================== */
.partners {
    padding: var(--spacing-4xl) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-width: 150px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter {
    position: relative;
    padding: var(--spacing-3xl) 0;
    margin: var(--spacing-4xl) 0;
    background: rgba(243, 240, 255, 0.3);
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    pointer-events: none;
}

.wave-pattern {
    width: 800px;
    height: 800px;
    right: -200px;
    top: -400px;
    background:
        radial-gradient(circle at center, transparent 40%, rgba(108, 99, 255, 0.05) 40%, transparent 41%),
        radial-gradient(circle at center, transparent 50%, rgba(108, 99, 255, 0.05) 50%, transparent 51%),
        radial-gradient(circle at center, transparent 60%, rgba(108, 99, 255, 0.05) 60%, transparent 61%);
}

.plus-pattern-small {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 100px;
    background-image:
        radial-gradient(circle, var(--primary-orange) 2px, transparent 2px),
        radial-gradient(circle, var(--coral-orange) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
}

.newsletter-icon {
    position: absolute;
    top: -30px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 32px;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--dark-grey);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.newsletter-input-wrapper svg {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

.newsletter-input {
    width: 100%;
    padding: 16px 24px 16px 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-grey);
    font-size: 16px;
    font-family: var(--font-body);
    background: var(--bg-white);
}

.newsletter-input::placeholder {
    color: var(--light-grey);
}

/* ===================================
   Footer
   =================================== */
.footer {
    position: relative;
    padding: var(--spacing-4xl) 0 var(--spacing-md);
}

.footer-decoration {
    position: absolute;
    pointer-events: none;
}

.plus-small {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 100px;
    background-image: radial-gradient(circle, var(--coral-orange) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: 14px;
    color: var(--dark-grey);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    font-size: 14px;
    color: var(--dark-grey);
}

.footer-column a:hover {
    color: var(--dark-navy);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--purple-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.app-store {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
}

.app-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.app-button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.app-button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-grey);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-grey);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-content,
    .how-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .navbar {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
    }

    .testimonials-right {
        flex-direction: column;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input-wrapper {
        max-width: 100%;
    }

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