/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #ff5b00;       /* Bright orange for buttons, highlights, accents */
    --primary-hover: #e04f00;       /* Darker orange for hover states */
    --secondary-color: #0c2b3a;     /* Deep textured navy/blue-gray for headings/links */
    --footer-bg: #071e26;           /* Extremely dark navy for footer */
    --text-color: #4a5568;          /* Charcoal gray for body copy readability */
    --text-light: #718096;         /* Lighter gray for secondary descriptions */
    --white: #ffffff;
    --black: #000000;
    --bg-light: #f8fafc;            /* Clean light grey background */
    --border-color: #e2e8f0;        /* Subtle border outlines */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Transitions & Spacing */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.25;
}

/* ==========================================================================
   BUTTONS & ACCENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 91, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 43, 58, 0.15);
}

/* Section Titles Layout */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.section-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 15px 0;
}

/* Scrolling state styled via Javascript */
#main-header.header-scrolled {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

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

/* Logo Design Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Nav Menu links */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-color);
}

/* Underline animation for nav items */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER OVERLAY
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 38, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.mobile-nav-overlay.active .mobile-drawer {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--primary-color);
    padding-left: 8px;
}

#mobile-contact-cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 30px;
    padding: 12px;
    margin-top: 15px;
    border: none;
}

#mobile-contact-cta:hover {
    background-color: var(--primary-hover);
    padding-left: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 95vh;
    min-height: 650px;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for sticky header */
}

/* Backdrop light horizontal gradient for text contrast (prototype match) */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 35%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 650px;
}

/* Cursive Intro text subtitle wrapper */
.hero-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-plane-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    transform: rotate(-15deg);
    animation: floatPlane 3s ease-in-out infinite;
}

/* Floating animation for paper plane */
@keyframes floatPlane {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-5px) rotate(-10deg); }
}

/* Hero Titles matching prototype scale */
.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .text-dark {
    color: var(--secondary-color);
}

.hero-title .text-orange {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--secondary-color);
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 520px;
    font-weight: 600;
    line-height: 1.5;
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Dynamic color thematic wrapper for icons */
.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.blue-theme {
    background-color: rgba(43, 108, 176, 0.1);
    color: #2b6cb0;
}

.orange-theme {
    background-color: rgba(255, 91, 0, 0.1);
    color: var(--primary-color);
}

.dark-blue-theme {
    background-color: rgba(12, 43, 58, 0.1);
    color: var(--secondary-color);
}

.light-orange-theme {
    background-color: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(10deg);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================================================
   TOP DESTINATIONS SECTION
   ========================================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1;
}

/* Card bottom dark gradient overlay for text readability */
.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: var(--transition);
}

.dest-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.dest-name {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.dest-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dest-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* Card hover animation effects */
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.destination-card:hover .dest-overlay {
    height: 60%;
}

.destination-card:hover .dest-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-us-section {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

/* Double circle border icon style matching the mockup */
.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 91, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.feature-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 91, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 91, 0, 0.15);
}

.feature-item:hover .feature-icon-outer {
    border-color: var(--primary-color);
    transform: rotate(360deg);
}

.feature-item:hover .feature-icon-inner {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
#main-footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

/* Underline accent on footer titles */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Column 1: About */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--primary-color);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Column 2: Quick Links */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Column 3: Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

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

/* Column 4: Contact Us */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.contact-info-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info-list a:hover {
    color: var(--primary-color);
}

/* Copyright footer bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   BOOKING & CONTACT MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 650px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-30px);
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.modal-backdrop.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    position: relative;
}

/* Modal Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: var(--font-main);
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 91, 0, 0.1);
}

/* Validation Style */
.form-group.error input,
.form-group.error select {
    border-color: #e53e3e;
    background-color: #fffaf0;
}

.error-message {
    color: #e53e3e;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Booking form submission success state overlay */
.success-message-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.success-message-box.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    font-size: 4rem;
    color: #38a169;
    margin-bottom: 20px;
    animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-message-box h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.success-message-box p {
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 400px;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1024px and below: Laptop and Tablet Horizontal */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 768px and below: Mobile and Tablet Vertical */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    /* Header toggle & contact button adjustments */
    #nav-menu {
        display: none;
    }
    
    .header-action {
        gap: 10px;
    }

    .btn-nav, #nav-contact-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero Title Adjustments */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-section {
        height: auto;
        padding-top: 130px;
        padding-bottom: 80px;
    }
    
    .hero-bg-overlay {
        background: rgba(255, 255, 255, 0.88);
    }

    /* Grid Adjustments */
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* 480px and below: Small Screen Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    /* Header Logo & Action Adjustments for Cellphones */
    .logo {
        gap: 8px;
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .header-action {
        gap: 8px;
    }

    .btn-nav, #nav-contact-btn {
        padding: 6px 12px;
        font-size: 0.78rem;
        border-radius: 20px;
        white-space: nowrap;
    }

    .btn-nav i {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* 360px and below: Extra Small Cellphones */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        gap: 6px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    .header-action {
        gap: 6px;
    }

    .btn-nav, #nav-contact-btn {
        padding: 5px 9px;
        font-size: 0.72rem;
    }
}
