:root {
    --primary-color: #FF8A00;
    --primary-hover: #E07900;
    --secondary-color: #0B213E; /* Dark Navy */
    --secondary-light: #15335B;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F8FAFC; /* Light slightly bluish grey */
    --white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;
    --font-title: 'Poppins', sans-serif; /* Unified font */
    --font-script: 'Poppins', sans-serif; /* Unified font */
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-size: 15px; /* Slightly smaller base font */
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
    scroll-margin-top: 140px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.btn-plane i {
    color: var(--primary-color);
    transform: rotate(-45deg);
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* Header */
.header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(11, 33, 62, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 120px; /* Increased size */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.9;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

/* Floating Help Widget */
.floating-help {
    position: fixed;
    bottom: 30px;
    right: 30px;
    top: auto;
    background-color: var(--secondary-color);
    border-radius: 40px;
    padding: 10px 25px 10px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.help-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.help-text {
    display: flex;
    flex-direction: column;
}

.help-title {
    font-size: 12px;
    font-weight: 600;
}

.help-phone {
    font-size: 14px;
    font-weight: 700;
}

.help-email {
    font-size: 11px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for header */
    scroll-margin-top: 140px;
}

/* Add a gradient overlay to match image lighting if needed */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 18px; /* Smaller */
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 48px; /* Standardized and smaller than before */
    line-height: 1;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(to right, #FFB800, #FF5C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Badges - Fixed to the side */
.hero-badges {
    position: absolute;
    right: 0; /* Fixed to the right end */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--secondary-color);
    padding: 60px 30px 60px 60px; /* Reduced left padding */
    border-radius: 500px 0 0 500px;
    z-index: 5;
    box-shadow: -15px 0 30px rgba(0,0,0,0.3);
    margin-right: 0; /* Zero margin on the right edge */
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-align: left; /* Ensure text is left aligned */
}

.badge-item:hover {
    transform: translateX(-5px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 14px;
    font-weight: 600;
}

.badge-sub {
    font-size: 12px;
    opacity: 0.7;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-bottom-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Main Content Area */
.main-content {
    background-color: var(--bg-light);
    position: relative;
}

/* Destinations Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.palm-icon {
    font-size: 28px;
    color: var(--secondary-color);
}

.section-title {
    font-size: 32px; /* Smaller */
    color: var(--secondary-color);
    font-weight: 700;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.dest-card {
    flex: 1;
    min-width: 220px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.promo-image {
    flex: 1;
    position: relative;
    min-height: 400px; /* Ensure enough height */
}

#promo-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

.dest-card:hover img {
    transform: scale(1.05);
}

.dest-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.dest-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.dest-text h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dest-text p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.dest-btn {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.dest-card:hover .dest-btn {
    background: var(--white);
    color: var(--text-color);
}

/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: contain; /* Changed from cover to prevent cropping */
    background: #fdfdfd;
}

.about-section {
    background: var(--white);
    border-radius: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.about-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 32px; /* Smaller */
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.about-feature-box h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-feature-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-box ul li {
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-box ul li i {
    color: var(--primary-color);
    font-size: 14px;
}

.confidence-box {
    margin-top: 30px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.confidence-box h3 {
    margin-bottom: 10px;
}

.confidence-box p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Ocean Wave */
.ocean-wave-top {
    line-height: 0;
    background: var(--secondary-color);
}

.ocean-wave-top svg {
    display: block;
    width: 100%;
    height: 100px; /* Or adjust based on screen */
}

/* Dark Section - Experiences & Footer */
.dark-section {
    background-color: var(--secondary-color);
    color: var(--white);
}

.dark-title {
    font-size: 32px;
    margin: 80px 0 50px 0;
    font-weight: 600;
}

.experiences-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.exp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.exp-icon-wrap {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.exp-icon-wrap img {
    width: 35px;
    height: 35px;
}

.exp-item:hover .exp-icon-wrap {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.exp-item p {
    font-size: 14px;
    text-align: center;
}

.flight-path {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.flight-path svg {
    width: 100%;
    height: 100px;
    overflow: visible;
}

/* Promo Banner */
.promo-banner {
    display: flex;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.promo-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,138,0,0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    align-self: flex-start;
}

.promo-content h2 {
    font-size: 32px; /* Smaller */
    margin-bottom: 15px;
}

.promo-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.promo-stats {
    display: flex;
    gap: 40px;
}

.stat h4 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.promo-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.play-btn-large:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Trusted Partners */
.trusted-partners {
    text-align: center;
    padding-bottom: 40px;
}

.trusted-partners p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.partner-logo:hover {
    color: var(--white);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0;
}

/* Footer Styles */
.footer {
    padding: 80px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
}

.brand-col p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 4px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form .input-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--white);
    outline: none;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* Horizontal Gallery Styles */
.gallery-section {
    padding-bottom: 120px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.gallery-main-title {
    font-family: var(--font-title);
    font-size: 32px; /* Smaller standardized size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #FF8A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

.marquee-gallery {
    margin-top: 60px;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-gallery .gallery-item {
    width: 280px;
    height: 380px;
    border-radius: 40px; /* Highly rounded corners */
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.marquee-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px; /* Ensure image itself is rounded */
    transition: transform 0.4s ease;
}

.marquee-gallery .gallery-item:hover img {
    transform: scale(1.08);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-310px * 11)); } /* 280px width + 30px gap */
}


/* Top Marquee */
.top-marquee {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
}
.top-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-text 15s linear infinite;
    gap: 50px;
    font-size: 14px;
    font-weight: 500;
}
.top-marquee-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-marquee-content span i {
    color: var(--primary-color);
}
@keyframes marquee-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Contact Section */
.contact-section {
    background: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
}
.contact-title {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}
.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
}
.contact-info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 280px;
}
.info-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 5px;
}
.info-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}
.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* =============================
   TABLET & SMALL LAPTOP (max 1240px)
============================= */
@media (max-width: 1240px) {
    .container {
        padding: 0 60px;
    }
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-header {
        margin-bottom: 45px;
    }
    /* Justify text on tablets */
    p, .hero-desc, .about-content p, .promo-content > p, .about-feature-box p, .confidence-box p {
        text-align: justify;
    }
    .hero-title {
        font-size: 44px;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .promo-banner {
        flex-direction: column;
        margin: 0 0 50px 0;
    }
    .promo-content {
        padding: 50px;
    }
    .promo-image {
        min-height: 400px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image img {
        max-height: none;
        width: 100%;
        object-fit: contain;
    }
    .about-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .brand-col {
        grid-column: span 2;
    }
    .contact-info-container {
        gap: 25px;
    }
    .hero-badges {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 50px;
        border-radius: 30px;
        padding: 40px;
        gap: 30px;
    }
    .experiences-wrap {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    .exp-item {
        width: 25%;
        min-width: 140px;
    }
    .promo-stats {
        justify-content: center;
        gap: 60px;
        margin-top: 20px;
    }
}

/* =============================
   MOBILE (max 768px)
============================= */
@media (max-width: 768px) {
    /* --- Top marquee --- */
    .top-marquee-content {
        font-size: 12px;
        gap: 30px;
    }

    /* --- Header --- */
    .header {
        padding: 10px 0;
        position: absolute;
        top: 40px;
        background: var(--secondary-color);
    }
    .header.scrolled {
        position: fixed;
        top: 0;
    }
    .logo img {
        height: 55px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-actions {
        display: none;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .navbar.active {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px 0;
    }
    .nav-links a {
        font-size: 16px;
        padding: 5px 0;
        display: block;
    }

    /* --- Floating help --- */
    .floating-help {
        padding: 0;
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--primary-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    .help-icon {
        width: 100%;
        height: 100%;
        background: transparent;
        color: var(--white);
        font-size: 22px;
    }
    .help-text {
        display: none;
    }
    
    /* Help bubble expanded state */
    .floating-help.expanded {
        width: auto;
        height: auto;
        padding: 15px 20px;
        border-radius: 40px;
        background-color: var(--secondary-color);
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .floating-help.expanded .help-text {
        display: flex;
    }
    
    .floating-help.expanded .help-icon {
        width: 45px;
        height: 45px;
        background-color: var(--white);
        color: var(--primary-color);
        font-size: 18px;
    }

    /* --- General layout --- */
    .container {
        padding: 0 35px;
    }
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
        scroll-margin-top: 80px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    /* Justify text on mobile */
    p, .hero-desc, .about-content p, .promo-content > p, .about-feature-box p, .confidence-box p {
        text-align: justify;
    }

    /* --- Hero --- */
    .hero {
        min-height: 100vh;
        padding-top: 130px;
        padding-bottom: 60px;
        scroll-margin-top: 80px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .hero-desc {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .btn {
        font-size: 13px;
        padding: 10px 18px;
    }
    .hero-badges {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        width: auto;
        margin-top: 30px;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        gap: 20px;
    }
    .badge-item {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }
    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        flex-shrink: 0;
    }
    .badge-title {
        font-size: 15px;
    }
    .badge-sub {
        font-size: 13px;
    }

    /* --- Destinations --- */
    .destinations {
        padding: 40px 0;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 26px;
        margin: 0 5px 10px;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0;
    }
    .dest-card {
        min-width: unset;
        height: 200px;
    }
    .dest-text h3 {
        font-size: 13px;
    }
    .dest-text p {
        font-size: 11px;
    }
    .dest-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* --- Dark Section / Experiences --- */
    .dark-section .container {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .dark-title {
        font-size: 22px;
        margin: 0 15px 40px 15px; /* Reset top margin to rely on container padding */
        text-align: center;
    }
    .experiences-wrap {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
    }
    .exp-item {
        width: 28%;
        min-width: 80px;
    }
    .exp-icon-wrap {
        width: 55px;
        height: 55px;
    }
    .exp-icon-wrap img {
        width: 28px;
        height: 28px;
    }
    .exp-item p {
        font-size: 11px;
    }
    .flight-path {
        display: none;
    }

    /* --- Promo Banner --- */
    .promo-banner {
        flex-direction: column;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    .promo-badge {
        font-size: 14px;
        padding: 6px 12px;
    }
    .promo-content {
        padding: 25px 20px;
    }
    .promo-content h2 {
        font-size: 22px;
        margin: 0 10px 15px 10px;
    }
    .promo-content > p {
        font-size: 13px;
        line-height: 1.6;
    }
    .promo-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat h4 {
        font-size: 18px;
    }
    .stat p {
        font-size: 11px;
    }
    .promo-image {
        min-height: 220px;
    }

    /* --- About --- */
    .about-section {
        padding: 40px 20px;
        border-radius: 20px;
        margin-top: -20px;
    }
    .about-tag {
        font-size: 16px;
    }
    .about-content h2 {
        font-size: 22px;
        margin: 0 10px 25px 10px;
    }
    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-image img {
        border-radius: 15px;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-feature-box {
        padding: 20px;
    }
    .about-feature-box h3 {
        font-size: 16px;
    }
    .about-feature-box p {
        font-size: 13px;
    }
    .confidence-box {
        padding: 16px;
    }

    /* --- Ocean wave --- */
    .ocean-wave-top svg {
        height: 50px;
    }

    /* --- Gallery --- */
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-main-title {
        font-size: 22px;
        margin: 0 0 15px 0;
    }
    .section-subtitle {
        font-size: 13px;
    }
    .marquee-gallery {
        margin-top: 30px;
    }
    .marquee-gallery .gallery-item {
        width: 200px;
        height: 280px;
        border-radius: 20px;
    }
    .marquee-gallery .gallery-item img {
        border-radius: 20px;
    }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-230px * 11)); }
    }

    /* --- Contact --- */
    .contact-section {
        border-radius: 15px;
        margin: 0 20px 40px;
        padding: 40px 20px;
    }
    .contact-title {
        font-size: 22px !important;
        margin: 0 15px;
    }
    .contact-subtitle {
        font-size: 13px;
    }
    .contact-info-container {
        flex-direction: column;
        gap: 12px;
        margin: 25px 15px 0 15px;
    }
    .info-item {
        min-width: unset;
        width: 100%;
        padding: 18px;
        border-radius: 15px;
    }
    .info-item i {
        font-size: 22px;
    }
    .info-item h4 {
        font-size: 15px;
    }
    .info-item p {
        font-size: 13px;
    }

    /* --- Footer --- */
    .footer-divider {
        margin: 0 20px;
    }
    .footer {
        padding: 40px 20px 25px;
    }
    .footer-logo {
        height: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .brand-col {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-col p {
        font-size: 13px;
    }
    .social-links {
        justify-content: center;
    }
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .footer-col ul {
        gap: 10px;
        align-items: center;
    }
    .footer-col ul a {
        font-size: 13px;
    }
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 12px;
    }

    /* --- Lightbox --- */
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 36px;
    }
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }
}

/* =============================
   LARGE MOBILE / SMALL TABLET (462px to 863px)
============================= */
@media (min-width: 462px) and (max-width: 863px) {
    .container {
        padding: 0 45px;
    }
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
    }
    .hero-title {
        font-size: 38px;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================
   EXTRA SMALL (max 480px)
============================= */
@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .hero {
        padding-top: 120px;
    }
    .hero-container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .hero-desc {
        font-size: 13px;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0;
    }
    .dest-card {
        height: 230px;
    }

    .exp-item {
        width: 43%;
    }
    .section-title, .dark-title {
        font-size: 20px;
        margin: 20px 10px 30px 10px;
        text-align: center;
    }
    .gallery-main-title, .contact-title {
        font-size: 20px !important;
        margin: 0 10px;
    }
    .promo-stats {
        gap: 10px;
    }
    .promo-content h2 {
        font-size: 20px;
        margin: 0 10px 15px 10px;
    }
    .about-content h2 {
        font-size: 20px;
        margin: 0 10px 25px 10px;
    }
    .about-tag {
        font-size: 14px;
    }
    .contact-section {
        margin: 0 16px 30px;
        padding: 30px 16px;
    }
    .dark-section .container {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 0;
    }

    .about-section {
        padding: 30px 16px;
    }
    .footer {
        padding: 30px 16px 20px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}
