/* CSS Reset & Variables */
:root {
    --primary-color: #ff6b6b;
    --primary-hover: #ff5252;
    --secondary-color: #4ecdc4;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.1);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 40vh;
    min-height: 350px;
    background: url('assets/images/hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    /* Offset for navbar */
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Policy Pages */
.policy-section {
    padding: 60px 0;
    background: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-bg);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8e53);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

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

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

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
}

.btn-text:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--dark-bg);
}

.navbar.scrolled .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Inner Page Navbar (No Hero Image) */
.inner-page-navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.inner-page-navbar .nav-links a {
    color: var(--dark-bg);
}

.inner-page-navbar .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.logo-img {
    width: 150px;
}

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

.mobile-menu-header {
    display: none;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
}

.nav-links a:hover {
    opacity: 0.8;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--dark-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(248, 250, 252, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeUp 1s ease;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 60px;
    animation: fadeUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

/* Glassmorphism Booking Form */
.booking-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.booking-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    padding-left: 4px;
}

.booking-form input,
.booking-form select {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.3);
}

.btn-search {
    height: 52px;
    padding: 0 32px;
    border-radius: 12px;
}

/* Section Formatting */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Destinations */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

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

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

.card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-bg);
}

/* Why Us */
.why-us {
    background-color: var(--white);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--light-bg);
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-box p {
    color: var(--text-light);
}

/* Testimonials Staggered Grid */
.staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
    padding-bottom: 60px;
}

.staggered-grid .testimonial-box:nth-child(1) {
    transform: translateY(0);
}

.staggered-grid .testimonial-box:nth-child(2) {
    transform: translateY(30px);
}

.staggered-grid .testimonial-box:nth-child(3) {
    transform: translateY(60px);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    width: 150px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

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

.newsletter {
    display: flex;
    gap: 12px;
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter button {
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
    font-weight: 500;
}

/* Contact Form Section */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image-wrapper {
    height: 100%;
    min-height: 400px;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-side {
    padding: 50px;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-wrapper .form-group {
    width: 100%;
}

.form-wrapper input,
.form-wrapper textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.3);
}

.form-wrapper button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.grid-features .feature-box:nth-child(1) {
    transition-delay: 0.1s;
}

.grid-features .feature-box:nth-child(2) {
    transition-delay: 0.2s;
}

.grid-features .feature-box:nth-child(3) {
    transition-delay: 0.3s;
}

.grid-cards .card:nth-child(1) {
    transition-delay: 0.1s;
}

.grid-cards .card:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-item:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* FAQ Section */
.faq-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-container {
    max-width: 100%;
    margin: 0;
}



.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--dark-bg);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .btn-search {
        grid-column: span 2;
    }

    header .btn {
        padding: 8px 14px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 992px) {

    .navbar {
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-buttons {
        margin-left: auto;
        margin-right: 20px;
    }

    .btn-outline {
        background: linear-gradient(135deg, var(--primary-color), #ff8e53);
        border: 0;
    }

    .navbar.scrolled .btn-outline {
        color: #f2f2f2;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-logo {
        width: 120px;
        height: auto;
    }

    .close-menu {
        font-size: 2rem;
        cursor: pointer;
        color: var(--dark-bg);
        line-height: 1;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 303px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: 0.4s;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark-bg);
        font-size: 1.2rem;
        width: 100%;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 100;
    }

    .hamburger .bar {
        background-color: var(--dark-bg);
    }

    .hero-title {
        font-size: 3rem !important;
    }
}

@media (max-width: 768px) {
    .staggered-grid .testimonial-box {
        transform: translateY(0) !important;
    }

    .faq-split-layout {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-split-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 30px;
    }


    .hero-title {
        font-size: 3rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .btn-search {
        grid-column: 1;
    }

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

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.policy-content p,
.policy-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #ff8e53);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}