/* --- 1. DESIGN SYSTEM & BASE STYLES --- */
:root {
    --primary-color: #0077b6;
    --accent-color: #fb8500;
    --heading-color: #023047;
    --text-color: #4a4a4a;
    --light-gray: #f8f9fa;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --footer-bg: #023047;
    --border-radius: 12px;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--white-color); color: var(--text-color); line-height: 1.7; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; }
.section-bg { background-color: var(--light-gray); }
a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; }
a:hover { color: var(--accent-color); }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--heading-color); line-height: 1.3; }

/* --- 2. HEADER & NAVIGATION --- */
.solid-header-page main {
    padding-top: 120px;
}

.site-header { position: absolute; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 1002; transition: all 0.3s ease; }
.solid-header-page .site-header,
.site-header.scrolled { 
    position: fixed; 
    background-color: var(--white-color); 
    box-shadow: var(--shadow-sm); 
    padding: 15px 0; 
}
.site-header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.header-left, .header-right { display: flex; align-items: center; }
.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; }
.header-center { text-align: center; }
.logo { font-size: 1.7rem; font-weight: 700; color: var(--white-color); font-family: 'Poppins', sans-serif; transition: color 0.3s ease; }
.solid-header-page .site-header .logo,
.site-header.scrolled .logo { color: var(--heading-color); }

.btn-header-booking { background-color: rgba(255, 255, 255, 0.2); color: var(--white-color); padding: 8px 16px; border-radius: 50px; font-weight: 500; border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; margin-right: 20px; }
.btn-header-booking:hover { background-color: rgba(255, 255, 255, 0.3); }
.solid-header-page .site-header .btn-header-booking,
.site-header.scrolled .btn-header-booking { background-color: var(--accent-color); color: var(--white-color); border-color: var(--accent-color); }
.solid-header-page .site-header .btn-header-booking:hover,
.site-header.scrolled .btn-header-booking:hover { background-color: #e07800; }

.header-contact { display: flex; align-items: center; gap: 10px; }
.header-contact .icon { color: var(--white-color); font-size: 1.5rem; transition: color 0.3s ease; }
.header-contact a { color: var(--white-color); font-weight: 600; font-size: 1.1rem; transition: color 0.3s ease; }
.solid-header-page .site-header .header-contact a,
.solid-header-page .site-header .header-contact .icon,
.site-header.scrolled .header-contact a, 
.site-header.scrolled .header-contact .icon { color: var(--heading-color); }
.solid-header-page .site-header .header-contact a:hover,
.site-header.scrolled .header-contact a:hover { color: var(--accent-color); }

.main-nav-links ul { list-style: none; display: flex; gap: 40px; }
.main-nav-links a { color: var(--white-color); font-weight: 500; transition: color 0.3s ease; font-size: 1rem; }
.main-nav-links a:hover { color: var(--accent-color); }
.solid-header-page .site-header .main-nav-links a,
.site-header.scrolled .main-nav-links a { color: var(--text-color); }
.solid-header-page .site-header .main-nav-links a:hover,
.site-header.scrolled .main-nav-links a:hover { color: var(--accent-color); }
.solid-header-page .site-header .main-nav-links a.active,
.site-header.scrolled .main-nav-links a.active { color: var(--accent-color); font-weight: 700; }

.hamburger-menu { display: none; }
.hamburger-menu span { display: block; height: 3px; width: 100%; background-color: var(--white-color); border-radius: 3px; transition: all 0.3s ease-in-out; }
.solid-header-page .site-header .hamburger-menu span,
.site-header.scrolled .hamburger-menu span { background-color: var(--heading-color); }
.hamburger-menu.active span { background-color: var(--white-color); }
.hamburger-menu.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); } 
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background-color: var(--footer-bg); z-index: 1001; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; padding: 100px 30px; }
.mobile-nav.open { right: 0; box-shadow: -5px 0 15px rgba(0,0,0,0.2); }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { margin-bottom: 25px; } .mobile-nav ul a { font-size: 1.5rem; color: var(--white-color); font-weight: 500; }
.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
.nav-overlay.open { opacity: 1; visibility: visible; }

/* --- 3. HERO & BOOKING FORM --- */
.hero-section { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(rgba(2, 48, 71, 0.5), rgba(2, 48, 71, 0.5)), url('/seoraksan-mountains-is-covered-by-morning-fog-sunrise-seoul-korea.jpg') center/cover no-repeat; color: var(--white-color); text-align: center; padding: 140px 20px 60px; }
.hero-content { z-index: 2; margin-bottom: 40px; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: var(--white-color); text-shadow: 0 3px 15px rgba(0,0,0,0.3); margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }
.booking-form-wrapper { background: var(--white-color); border-radius: var(--border-radius); padding: 25px; box-shadow: var(--shadow-md); width: 100%; max-width: 1100px; z-index: 2; }
.form-title { text-align: center; color: var(--heading-color); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.5rem; margin-bottom: 20px; }
.trip-type-toggle { display: flex; justify-content: flex-start; gap: 10px; margin-bottom: 20px; }
.trip-type-toggle label { padding: 8px 18px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; border: 1px solid var(--border-color); color: var(--text-color); display: flex; align-items: center; gap: 8px; }
.trip-type-toggle input[type="radio"] { display: none; }
.trip-type-toggle input[type="radio"]:checked + label { background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color); }
.booking-form { display: grid; grid-template-columns: 2fr 2fr 1.2fr 1.2fr 1.5fr auto; gap: 15px; align-items: end; transition: grid-template-columns 0.4s ease; }
.booking-form.one-way-trip { grid-template-columns: 2.4fr 2.4fr 1.2fr 1.5fr auto; }
.form-group { text-align: left; position: relative; }
.form-group label { font-size: 0.9rem; color: var(--text-color); margin-bottom: 5px; display: block; font-weight: 500; }
.form-group input, .passengers-input { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; font-family: 'Poppins', sans-serif; transition: border-color 0.3s ease, box-shadow 0.3s ease; color: var(--text-color); background-color: var(--white-color); height: 50px; }
.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon input { padding-right: 35px; }
.input-with-icon .icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-color); pointer-events: none; }
.form-group input:focus, .passengers-input:hover { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2); outline: none; }
.passengers-input { cursor: pointer; display: flex; align-items: center; }
.return-date-group.hidden { display: none; }
.btn-search { background-color: var(--accent-color); color: white; border: none; padding: 12px 25px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; width: 100%; height: 50px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-search:hover { background-color: #e07800; transform: translateY(-2px); }
.autocomplete-results { position: absolute; top: 100%; left: 0; right: 0; background: var(--white-color); border: 1px solid var(--border-color); border-radius: 0 0 8px 8px; max-height: 250px; overflow-y: auto; z-index: 100; box-shadow: var(--shadow-sm); display: none; }
.autocomplete-results div { padding: 12px 15px; cursor: pointer; color: var(--heading-color); font-weight: 500; }
.autocomplete-results div:hover { background-color: var(--light-gray); }

/* --- 4. CONTENT SECTIONS --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 15px; }
.section-header .subtitle { text-transform: uppercase; color: var(--primary-color); font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 1px; }
.section-header p { font-size: 1.1rem; color: var(--text-color); max-width: 650px; margin: 10px auto 0; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: center; }
.why-us-item { padding: 30px; }
.why-us-item .icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; }
.why-us-item h3 { font-size: 1.3rem; margin-bottom: 10px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.destination-card { background-color: var(--white-color); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.destination-card img { width: 100%; height: 200px; object-fit: cover; }
.destination-card-content { padding: 25px; }
.destination-card-content h4 { font-size: 1.4rem; margin-bottom: 5px; }
.destination-card-content .country { color: var(--text-color); font-weight: 500; margin-bottom: 15px; }
.destination-card-content .price { font-size: 1.1rem; font-weight: 600; color: var(--heading-color); }
.faq-accordion { max-width: 800px; margin: 0 auto; border: 1px solid var(--border-color); border-radius: var(--border-radius); overflow: hidden; background-color: var(--white-color); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; background: none; border: none; padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-question span { font-size: 1.1rem; font-weight: 600; color: var(--heading-color); font-family: 'Poppins', sans-serif; }
.faq-question i { font-size: 1.2rem; color: var(--primary-color); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-answer p { padding: 0 20px; color: var(--text-color); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* --- HOW IT WORKS SECTION --- */
.how-it-works-section { background-color: var(--white-color); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.step-icon-wrapper { position: relative; display: inline-block; margin-bottom: 25px; }
.step-icon { font-size: 3rem; color: var(--primary-color); }
.step-number { position: absolute; top: -15px; right: -20px; background-color: var(--accent-color); color: var(--white-color); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 3px solid var(--white-color); }
.step-item h3 { font-size: 1.3rem; color: var(--heading-color); margin-bottom: 10px; font-weight: 600; }
.step-item p { color: #666; }

/* --- TRAVEL DEALS SECTION --- */
.deals-section { background-color: var(--light-gray); }
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deal-card { display: flex; flex-direction: column; justify-content: flex-end; min-height: 350px; border-radius: 12px; padding: 25px; color: var(--white-color); background-size: cover; background-position: center; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.deal-card:hover { transform: scale(1.05); }
.deal-content { z-index: 2; }
.deal-tag { display: inline-block; background-color: var(--accent-color); color: var(--white-color); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.deal-content h3 { font-size: 1.8rem; font-weight: 700; line-height: 1.2; margin: 0 0 5px 0; color: var(--white-color); }
.deal-content p { font-size: 1.1rem; }

/* --- TESTIMONIALS SECTION --- */
.testimonials-section { background-color: var(--white-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background-color: var(--light-gray); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 5px 25px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.testimonial-rating { color: var(--accent-color); margin-bottom: 20px; font-size: 1rem; }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 25px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-info h4 { font-size: 1.1rem; font-weight: 600; margin: 0; }
.author-info span { font-size: 0.9rem; color: #777; }

/* --- 5. FOOTER --- */
.site-footer { background-color: var(--footer-bg); color: var(--white-color); padding: 80px 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--white-color); font-family: 'Poppins', sans-serif; font-weight: 600; }
.footer-col.about p { color: #bdc3c7; margin-top: 15px; padding-right: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #bdc3c7; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col ul a:hover { color: var(--accent-color); padding-left: 5px; }
.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input { flex-grow: 1; border: none; background-color: rgba(255,255,255,0.1); color: white; padding: 12px; border-radius: 8px 0 0 8px; outline: none; }
.newsletter-form button { background-color: var(--accent-color); border: none; color: white; padding: 0 18px; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 1.1rem; }
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 25px 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p { 
    font-size: 0.9rem; 
    color: #bdc3c7; 
    margin: 0; /* Remove default margin */
}

.footer-socials { 
    display: flex; 
    gap: 20px; 
}

.footer-socials a { 
    font-size: 1.2rem; 
    color: #bdc3c7; 
    transition: color 0.3s ease, transform 0.3s ease; 
}

.footer-socials a:hover { 
    color: var(--white-color); 
    transform: translateY(-3px); 
}

/* --- DEFINITIVE FIX FOR PAYMENT LOGOS --- */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px; /* A bit more space between logos */
    /* This ensures it doesn't take up too much space on mobile */
    margin: 0 auto; 
}

.footer-payment img {
    height: 24px !important; /* Forces the height */
    width: auto !important;  /* Allows width to scale proportionally */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-payment img:hover {
    opacity: 1;
    transform: scale(1.1);
}
/* --- END OF FIX --- */

/* --- 6. MODALS --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }

/* ADDED: Shared styles for all modals */
.passenger-modal,
.lead-gen-modal {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ADDED: Specific width for each modal */
.passenger-modal {
    max-width: 400px;
}
.lead-gen-modal {
    max-width: 500px;
}

/* ADDED: Shared open state */
.modal-overlay.open .passenger-modal,
.modal-overlay.open .lead-gen-modal {
    transform: scale(1) translateY(0);
}

.modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 20px; }
.modal-header h3 { font-size: 1.3rem; } .modal-close { font-size: 1.5rem; cursor: pointer; color: #aaa; transition: transform 0.3s ease; } .modal-close:hover { transform: rotate(90deg); color: var(--accent-color); }
.passenger-counter { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; } .passenger-counter .label { font-size: 1rem; font-weight: 500; } .counter-controls { display: flex; align-items: center; gap: 15px; }
.counter-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--primary-color); background: none; color: var(--primary-color); font-size: 1.2rem; cursor: pointer; transition: all 0.2s ease; }
.counter-btn:hover:not(:disabled) { background: var(--primary-color); color: var(--white-color); } .counter-btn:disabled { color: #ccc; border-color: #ccc; cursor: not-allowed; background: none; }
.counter-value { font-size: 1.2rem; font-weight: 600; width: 20px; text-align: center; }
.modal-footer { margin-top: 20px; text-align: right; }
.modal-done-btn { background: var(--accent-color); color: white; border: none; padding: 10px 25px; border-radius: 8px; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; } .modal-done-btn:hover { background: #e07800; transform: scale(1.05); }

/* --- 7. ABOUT & CTA STYLES --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-content p {
    margin-bottom: 20px;
}
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--white-color) 0%, var(--light-gray) 100%);
}
.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.cta-section p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 10px auto 0;
}
.cta-section .btn-search {
    width: auto;
    max-width: 250px;
    margin: 25px auto 0;
    text-decoration: none;
}

/* --- 8. POLICY PAGE STYLES --- */
.policy-banner {
    padding: 60px 0;
    padding-top: 80px;
}
.policy-content-section {
    padding-top: 60px;
    padding-bottom: 80px;
}
.policy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: flex-start;
}
.policy-sidebar {
    position: sticky;
    top: 140px;
}
.policy-sidebar h4 {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.policy-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-sidebar-nav a {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}
.policy-sidebar-nav a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--light-gray);
}
.policy-sidebar-nav a.active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}
.policy-item {
    margin-bottom: 40px;
    padding-top: 2rem;
}
.policy-item:last-child {
    margin-bottom: 0;
}
.policy-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.policy-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.policy-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}
.policy-text a {
    font-weight: 600;
}

/* --- 9. RESPONSIVE DESIGN --- */
/* For Tablets and Smaller Desktops */
@media (max-width: 1024px) {
    .site-header .container {
        display: flex;
        justify-content: space-between;
    }
    .header-left, .main-nav-links {
        display: none;
    }
    .header-center {
        flex-grow: 1;
        text-align: left;
    }
    .header-right {
        justify-content: flex-end;
    }
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 1003;
    }
    .booking-form, .booking-form.one-way-trip {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .form-group.search-button-group {
        grid-column: 1 / -1;
    }
    .deals-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Policy page responsive */
    .policy-layout {
        grid-template-columns: 1fr;
    }
    .policy-sidebar {
        display: none;
    }
}

/* For Smaller Tablets */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .testimonials-grid, 
    .steps-grid { 
        grid-template-columns: 1fr; 
    }
    .contact-layout {
        grid-template-columns: 1fr; /* Stack into one column */
        gap: 50px;
    }
}

/* For Mobile Devices */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: 90vh; 
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .booking-form, .booking-form.one-way-trip {
        grid-template-columns: 1fr;
    }
    .why-us-grid,
    .destinations-grid,
    .deals-grid,
    .values-grid,
    .about-story-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-main {
        text-align: center;
    }
    .footer-col.about p {
        padding-right: 0;
    }
    .newsletter-form {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* For Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .booking-form-wrapper {
        padding: 20px;
    }
    .trip-type-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mobile-nav {
        width: 100%;
    }
    .deal-card {
        min-height: 280px;
    }
    .deal-content h3 {
        font-size: 1.5rem;
    }
}

/* --- 10. CONTACT PAGE STYLES --- */
.contact-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Two columns */
    gap: 60px;
    align-items: flex-start;
}

.contact-details h3,
.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--light-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.contact-text a,
.contact-text span {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-text a {
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* Re-using booking form styles for consistency */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
    background-color: var(--white-color);
}

.contact-form input {
    height: 50px;
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing only */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
    outline: none;
}

.contact-form .btn-search {
    width: 100%;
}


.contact-form .btn-search {
    width: 100%;
}


/* --- 11. ANIMATIONS --- */
/* Keyframe definition for the bounce effect */
@keyframes bounce-attention {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* A helper class to apply the animation */
.animate-bounce {
    animation: bounce-attention 0.8s ease-in-out;
}


/* --- 11. DYNAMIC DESTINATIONS STYLES --- */
.destinations-hidden {
    /* Hide the extra destinations with a smooth transition */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out, margin-top 0.7s ease-in-out;
    margin-top: 0 !important; /* Use important to override grid gap */
}

.destinations-visible {
    /* This class is added by JS to show the destinations */
    max-height: 1500px; /* A large enough value to accommodate all cards */
    opacity: 1;
    margin-top: 30px !important; /* Restore the gap when visible */
}

/* Wrapper for the "Show More" button */
.destinations-toggle-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Style for the secondary button */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

/* In /css/style.css */

/* ... all your other CSS code above ... */


/* --- 12. BOOKING & REFUND PAGE STYLES --- */
.policy-hero {
    padding: 100px 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    /* IMPORTANT: Replace with a high-quality background image from your project */
    background: linear-gradient(rgba(2, 48, 71, 0.7), rgba(2, 48, 71, 0.7)), url('/new-york-5155189_1280.jpg') center/cover no-repeat;
    margin-top: -120px; /* Adjust for the solid header's padding */
}
.policy-hero h1 {
    color: var(--white-color);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    text-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}
.policy-hero .section-subtitle {
    color: #e0e0e0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.policy-layout-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.policy-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3.5rem;
}
.policy-icon-detailed {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: var(--white-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.policy-text-detailed {
    flex-grow: 1;
}
.policy-text-detailed h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}
.policy-text-detailed h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.policy-text-detailed p, .policy-text-detailed li {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.policy-text-detailed ul {
    list-style-position: inside;
    padding-left: 1rem;
    list-style-type: disc;
}
.policy-text-detailed strong {
    color: var(--heading-color);
    font-weight: 600;
}
.policy-text-detailed a {
    font-weight: 600;
}

/* Responsive adjustments for the new page */
@media (max-width: 768px) {
    .policy-hero {
        min-height: 30vh;
        padding: 80px 0;
    }
    .policy-item-detailed {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}