/* 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: 400px;
    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;
    padding: 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);
}

/* about us */
.about-decorative-box h3 {
    color: #f2f2f2;
}


/* 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);
}

/* Authentication forms */
.login_sec input:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.2);
}

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

.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: 950px;
    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;
}

/* Advanced Booking Widget */
.booking-widget-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: left;
    animation: fadeUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.booking-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: none;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.tab-btn svg {
    color: #4a5568;
}

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

.tab-btn.active svg {
    color: var(--white);
}

.booking-widget-content {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.booking-options {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.option-select {
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
}

.form-row-horizontal {
    display: flex;
    align-items: stretch;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    background: var(--white);
    padding: 6px;
    position: relative;
}

.input-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 16px;
    flex: 1;
    min-height: 52px;
}

.input-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
}

.input-field input,
.input-field select,
.input-field .input-text-placeholder {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    width: 100%;
}

.input-field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.border-right {
    border-right: 1px solid #cbd5e1;
}

.pad-left {
    padding-left: 24px;
}

.swap-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -18px;
    z-index: 10;
}

.swap-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
    transition: var(--transition);
}

.swap-icon:hover {
    background: var(--light-bg);
    transform: rotate(180deg);
}

.date-field {
    flex: 0.8;
}

.btn-submit-inquiry {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0 24px;
    height: auto;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 8px;
    white-space: nowrap;
}

.btn-submit-inquiry:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.booking-bottom-options {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.bundle-save {
    font-weight: 700;
    color: var(--dark-bg);
}

.booking-bottom-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.newsletter-section h2 {
    color: #f2f2f2;
}

.deals-banner {
    min-height: 400px;
}

.about-text-wrapper ul li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .grid-features {
        /* Bootstrap handles mobile spacing */
    }

    .about-img-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-img-wrapper img {
        max-width: 400px;
    }

    .form-row-horizontal {
        flex-direction: column;
        border-radius: 16px;
        padding: 16px;
        gap: 12px;
        border: none;
        background: transparent;
    }

    .input-field {
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        width: 100%;
        background: var(--white);
        min-height: 60px;
    }

    .border-right {
        border-right: none;
    }

    .pad-left {
        padding-left: 16px;
    }

    .swap-icon-container {
        margin: -16px auto;
        /* Position between the two stacked inputs */
        position: relative;
        z-index: 10;
        background: var(--white);
        border-radius: 50%;
    }

    .btn-submit-inquiry {
        width: 100%;
        margin-left: 0;
        border-radius: 8px;
        height: 52px;
    }
}

/* 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 {
    /* Bootstrap row handles spacing via .g-4 */
}

.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 {
    /* Bootstrap row handles spacing via .g-4 */
}

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

.feature-box:hover {
    background: #fff;
    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 {
    align-items: start;
}

.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 {
    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 {
    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 {
    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 {
    align-items: start;
}

.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;
        font-size: 14px;
    }

    .vertical-tabs .nav-link {
        padding: 10px 15px;
    }

    .tab-content {
        padding: 26px !important;
    }

    .vertical-tabs .nav-link {
        padding: 12px 16px;
    }

}

@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: 2rem !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2rem;
    }


    .staggered-grid .testimonial-box {
        transform: translateY(0) !important;
    }

    .faq-split-layout {
        gap: 0;
    }

    .staggered-grid {
        padding-bottom: 0;
    }

    .faq-split-layout {
        /* Bootstrap handles grid layout */
    }

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

    .about-grid {
        /* Bootstrap handles mobile spacing */
    }

    .form-row {
        /* Bootstrap handles grid layout */
    }

    .contact-split-layout {
        /* Bootstrap handles grid layout */
    }

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


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

    .booking-form {
        /* Bootstrap handles grid layout */
    }

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

    .footer-grid {
        /* Bootstrap handles grid layout */
    }
}

.policy-content {
    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 {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    section#destinations {
        padding: 0;
    }

    .why-us {
        padding: 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* 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: 560px) {
    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 100px 20px 0 20px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        height: 100%;
        min-height: 800px;
    }

    .feature-box {
        padding: 15px 30px;
    }

    .booking-tabs {
        overflow-x: auto;
        padding-left: 10px;
        padding-right: 10px;
        gap: 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .booking-tabs::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .tab-btn {
        padding: 10px;
        white-space: nowrap;
        font-size: 0.85rem;
    }

    .booking-widget-content {
        padding: 16px;
    }

    .booking-bottom-options {
        flex-wrap: wrap;
        gap: 10px;
    }

    .newsletter {
        flex-direction: column;
    }
}

/* Services Page Styles */
.services-page-section {
    background-color: var(--light-bg);
}

.service-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    background: var(--white);
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
}

.service-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Packages Page Styles */
.vertical-tabs .nav-link {
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--dark-bg);
    border-radius: 0;
    border-bottom: 1px solid #e2e8f0;
    background-color: var(--white);
    transition: var(--transition);
}

.vertical-tabs .nav-link:last-child {
    border-bottom: none;
}

.vertical-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: #f1f5f9;
}

.vertical-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff5f5;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #e2e8f0;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

/* Contact Page Styles & Utilities */
.bg-theme-light {
    background-color: var(--light-bg);
}

.text-theme-dark {
    color: var(--dark-bg);
}

.text-theme-muted {
    color: var(--text-light);
}

.text-theme-primary {
    color: var(--primary-color);
}

.bg-theme-primary-light {
    background-color: rgba(255, 107, 107, 0.1);
}

.contact-info-card {
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-hover) !important;
}

.contact-icon-box {
    font-size: 1.5rem;
    line-height: 1;
}

.custom-contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background-color: var(--light-bg);
    transition: var(--transition);
}

.custom-contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
    background-color: var(--white);
}

.custom-contact-form .form-floating label {
    padding-left: 15px;
    color: var(--text-light);
}

.btn-animated-submit {
    background: linear-gradient(135deg, var(--primary-color), #ff8e53);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-animated-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.5);
    color: var(--white);
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.fade-up-1 {
    animation: fadeUp 0.8s ease forwards 0.1s;
    opacity: 0;
}

.fade-up-2 {
    animation: fadeUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.fade-up-3 {
    animation: fadeUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

.fade-up-4 {
    animation: fadeUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.fade-up-5 {
    animation: fadeUp 0.8s ease forwards 0.5s;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards 0.4s;
    opacity: 0;
}

/* About Page Styles & Utilities */
.tracking-wide {
    letter-spacing: 0.1em;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-anim {
    animation: floatImage 4s ease-in-out infinite;
}

.feature-hover-card {
    transition: var(--transition);
}

.feature-hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-hover-card img {
    transition: transform 0.5s ease;
}

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

.feature-icon-float {
    z-index: 10;
    transition: var(--transition);
}

.feature-hover-card:hover .feature-icon-float {
    background-color: var(--dark-bg) !important;
    transform: rotate(360deg);
}

/* Deals Page Styles */
.deal-card {
    transition: var(--transition);
    border: 1px solid transparent !important;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(255, 107, 107, 0.2) !important;
}

.deal-img-wrapper img {
    transition: transform 0.6s ease;
}

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

.mini-deal-card {
    transition: var(--transition);
    border: 1px solid transparent !important;
}

.mini-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 107, 107, 0.3) !important;
}

.mini-deal-card img {
    transition: transform 0.4s ease;
}

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