/* =========================================================
   Bohol Island Tours — Modern Travel Theme
   Bootstrap 5.3 compatible
   ========================================================= */

:root,
[data-bs-theme="light"] {
    --bs-primary: #0e3a5d;
    --bs-primary-rgb: 14, 58, 93;
    --bs-secondary: #14b8a6;
    --bs-secondary-rgb: 20, 184, 166;
    --bs-success: #10b981;
    --bs-info: #0ea5e9;
    --bs-warning: #f59e0b;
    --bs-danger: #ff6b57;
    --bs-danger-rgb: 255, 107, 87;
    --bs-light: #f7f5f0;
    --bs-dark: #0b1f33;
    --bs-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
    --bs-body-color: #334155;
    --bs-body-bg: #ffffff;
    --bs-heading-color: #0b1f33;
    --bs-link-color: #0e3a5d;
    --bs-link-hover-color: #14b8a6;
    --bs-border-radius: 0.75rem;
    --bs-border-radius-lg: 1rem;
    --accent: #ff6b57;
    --sand: #f7f5f0;
    --ocean: #0e3a5d;
    --teal: #14b8a6;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--bs-body-color);
    background: #fff;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: "Poppins", var(--bs-body-font-family);
    font-weight: 600;
    color: var(--bs-heading-color);
}

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0e3a5d 0%, #145a8a 100%);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #145a8a 0%, #14b8a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 58, 93, 0.25);
}

.btn-secondary {
    background: var(--teal);
    border: none;
    color: #fff;
}

.btn-secondary:hover {
    background: #0d9488;
    color: #fff;
    transform: translateY(-2px);
}

.btn-accent,
.btn-danger {
    background: var(--accent);
    border: none;
    color: #fff;
}

.btn-accent:hover,
.btn-danger:hover {
    background: #e85a48;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: var(--ocean);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

/* ---------- Site Header / Navbar ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    height: var(--header-height);
    background: rgba(11, 31, 51, 0.92);
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(11, 31, 51, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    height: 68px;
}

.site-header .navbar {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header .navbar-brand img {
    height: 44px;
    width: auto;
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--teal) !important;
}

.site-header .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 260px;
}

.site-header .dropdown-item {
    border-radius: 0.5rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.875rem;
}

.site-header .dropdown-item:hover {
    background: rgba(20, 184, 166, 0.12);
    color: var(--ocean);
}

.header-cta .btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

.page-hero-top body,
body.has-transparent-header {
    padding-top: 0;
}

body.has-transparent-header .site-header:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
}

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 51, 0.65) 0%, rgba(14, 58, 93, 0.75) 100%);
}

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

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero .breadcrumb {
    justify-content: center;
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb-item.active {
    color: var(--teal);
}

/* ---------- Home Hero Swiper ---------- */
.hero-swiper {
    position: relative;
    height: 100vh;
    min-height: 620px;
    margin-top: calc(-1 * var(--header-height));
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-swiper .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 31, 51, 0.78) 0%, rgba(14, 58, 93, 0.45) 55%, rgba(20, 184, 166, 0.25) 100%);
}

.hero-swiper .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 4rem;
}

.hero-swiper .hero-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-swiper .hero-content p {
    font-size: 1.15rem;
    max-width: 560px;
    opacity: 0.95;
}

.tour-search-card {
    position: relative;
    z-index: 5;
    margin-top: -4.5rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(14, 58, 93, 0.18);
    padding: 1.5rem;
}

.tour-search-card .form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.tour-search-card .form-control,
.tour-search-card .form-select {
    border-radius: 0.65rem;
    border-color: #e2e8f0;
    padding: 0.7rem 0.9rem;
}

.tour-search-card .form-control:focus,
.tour-search-card .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--teal) !important;
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}

.section-sand {
    background: var(--sand);
}

.section-ocean {
    background: linear-gradient(135deg, #0e3a5d 0%, #0b1f33 100%);
    color: #fff;
}

.section-ocean h2,
.section-ocean h3,
.section-ocean p {
    color: #fff;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.section-ocean .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.section-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.12);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

/* ---------- Cards ---------- */
.tour-card,
.dest-card,
.feature-card,
.room-card-modern,
.package-card {
    background: #fff;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(14, 58, 93, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover,
.dest-card:hover,
.package-card:hover,
.room-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(14, 58, 93, 0.16);
}

.tour-card .card-img-top,
.dest-card .card-img-top,
.package-card .card-img-top,
.room-card-modern .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .card-img-top,
.dest-card:hover .card-img-top {
    transform: scale(1.06);
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    z-index: 2;
}

.duration-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(11, 31, 51, 0.75);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    z-index: 2;
}

.feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(14, 58, 93, 0.1));
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

/* ---------- Stats ---------- */
.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item .stat-number {
    font-family: "Poppins", sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-item .stat-label {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(14, 58, 93, 0.08);
    height: 100%;
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--teal));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, #0e3a5d 0%, #14b8a6 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
    border-radius: 0.65rem;
    border-color: #e2e8f0;
    padding: 0.7rem 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.2);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 0.65rem;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 16px 48px rgba(14, 58, 93, 0.12);
}

.auth-card .card-body {
    padding: 2.5rem;
}

.booking-widget {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(14, 58, 93, 0.12);
    padding: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.summary-card {
    background: var(--sand);
    border-radius: 1rem;
    padding: 1.5rem;
}

.payment-option {
    border: 2px solid #e2e8f0;
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover,
.payment-option.active,
.payment-option:has(input:checked) {
    border-color: var(--teal);
    background: rgba(20, 184, 166, 0.06);
}

.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.steps-indicator .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.steps-indicator .step.active {
    background: var(--ocean);
    color: #fff;
}

.steps-indicator .step.done {
    background: var(--teal);
    color: #fff;
}

/* ---------- Accordion / Timeline ---------- */
.itinerary-accordion .accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 0.85rem !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(14, 58, 93, 0.06);
}

.itinerary-accordion .accordion-button {
    font-weight: 600;
    background: #fff;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background: rgba(20, 184, 166, 0.08);
    color: var(--ocean);
    box-shadow: none;
}

.itinerary-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--ocean);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

/* ---------- Gallery ---------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.85rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 58, 93, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.75rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---------- Site Footer ---------- */
.site-footer {
    background: #0b1f33;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.site-footer h4,
.site-footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--teal);
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 3rem;
}

.newsletter-box .form-control {
    border: none;
    border-radius: 999px 0 0 999px;
}

.newsletter-box .btn {
    border-radius: 0 999px 999px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--teal);
    color: #fff;
}

/* ---------- Floating Messenger ---------- */
.floating-messenger-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1030;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0099ff, #a033ff, #ff5280);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 153, 255, 0.4);
    transition: transform 0.2s ease;
}

.floating-messenger-btn:hover {
    transform: scale(1.08);
    color: #fff !important;
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 1029;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ocean);
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(14, 58, 93, 0.3);
    cursor: pointer;
}

.back-to-top.show {
    display: flex;
}

/* ---------- Video section ---------- */
.video-section .video-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(14, 58, 93, 0.2);
}

.video-section video {
    width: 100%;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

/* ---------- Dashboard ---------- */
.dashboard-nav .nav-link {
    color: #64748b;
    font-weight: 600;
    border-radius: 0.65rem;
    padding: 0.75rem 1.25rem;
}

.dashboard-nav .nav-link.active {
    background: var(--ocean);
    color: #fff;
}

.dashboard-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(14, 58, 93, 0.08);
}

/* ---------- Cart / Checkout compatibility ---------- */
.cart-item-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(14, 58, 93, 0.08);
    margin-bottom: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Compatibility with legacy script.js selectors ---------- */
.header .mobile-menu-toggle {
    display: none !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Room cards rendered by script.js / rooms.php */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(14, 58, 93, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(14, 58, 93, 0.14);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    font-size: 1.15rem;
    padding: 1rem 1.25rem 0.25rem;
    margin: 0;
}

.room-card .room-details,
.room-card p {
    padding: 0.5rem 1.25rem 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* Lightbox (gallery) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active,
.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    :root {
        --header-height: 70px;
    }

    .site-header .navbar-collapse {
        background: #0b1f33;
        margin: 0.5rem -0.75rem 0;
        padding: 1rem;
        border-radius: 0.85rem;
        max-height: 70vh;
        overflow-y: auto;
    }

    .header-cta {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .header-cta .btn {
        width: 100%;
    }

    .tour-search-card {
        margin-top: -2rem;
    }

    .hero-swiper {
        min-height: 560px;
        height: 85vh;
    }
}

/* ---------- Legacy form / dashboard compatibility ---------- */
.minimal-form .form-group-contact {
    margin-bottom: 1rem;
}
.minimal-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    color: #334155;
}
.minimal-form input[type="text"],
.minimal-form input[type="email"],
.minimal-form input[type="tel"],
.minimal-form input[type="password"],
.minimal-form input[type="date"],
.minimal-form select,
.minimal-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.7rem 0.95rem;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
}
.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.2);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 767.98px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}
.registration-container,
.login-container,
.content-section .container > .card,
.dashboard-card-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(14, 58, 93, 0.1);
    padding: 2rem;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0e3a5d 0%, #145a8a 100%);
    color: #fff !important;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}
.cta-button:hover { filter: brightness(1.08); color: #fff !important; }
.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--ocean) !important;
    border: 2px solid var(--ocean);
    border-radius: 999px;
    padding: 0.6rem 1.35rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}
.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.dashboard-tabs .tab-button {
    padding: 0.85rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
}
.dashboard-tabs .tab-button.active {
    color: var(--ocean);
    border-bottom-color: var(--teal);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.content-section { padding: 3rem 0 4rem; }
.page-header {
    background: linear-gradient(135deg, #0e3a5d, #14b8a6);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 3rem;
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + 2.5rem);
}
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,0.85); }

@media (max-width: 575.98px) {
    .section {
        padding: 3.5rem 0;
    }

    .tour-search-card {
        margin-top: 1rem;
        border-radius: 1rem;
    }

    .hero-swiper {
        height: auto;
        min-height: 520px;
        padding-bottom: 2rem;
    }

    .hero-swiper .hero-content {
        padding-top: 6rem;
        padding-bottom: 1rem;
    }
}
