@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    --primary-color: #00A6B2;
    /* IASP Teal */
    --secondary-color: #1A2B49;
    /* Deep Navy */
    --accent-color: #007A87;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'DM Serif Display', serif;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    /* line-height: 1.6; */
    overflow-x: hidden;
}

/* Main Navbar (Unified) */
.main-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    transition: all 0.4s ease;
}

/* Theme: Full (Default/Homepage) */
.navbar-full {
    background: transparent;
}

.navbar-full.scrolled {
    background: rgba(26, 43, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

/* Theme: Pill (Tour Page) */
.navbar-pill {
    top: 20px;
}

.navbar-pill .navbar-content {
    background: rgba(255, 255, 255, 0.15);
    /* More transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
}

.navbar-pill.scrolled {
    top: 10px;
}

.navbar-pill.scrolled .navbar-content {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-pill .nav-links a {
    color: var(--text-light);
    /* Changed to white */
}

.navbar-pill.scrolled .nav-links a {
    color: var(--secondary-color);
}

/* Theme: Static (Detail/Booking pages - no sticky, no pill) */
.navbar-static {
    position: relative;
    top: 0;
    background: var(--secondary-color);
    padding: 18px 0;
    margin: 0 0 30px 0;
}

.navbar-static .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-static .nav-links a:hover,
.navbar-static .nav-links a.active {
    color: var(--text-light);
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    display: block;
    transition: height 0.3s;
}

.navbar-full.scrolled .logo img,
.navbar-pill.scrolled .logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: center;
}

.nav-auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex: 1;
}

.nav-auth a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-signin {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 166, 178, 0.3);
}

.btn-signin:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 178, 0.4);
}

/* Nav user dropdown */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.navbar-pill.scrolled .nav-user-btn {
    background: rgba(26, 43, 73, 0.08);
    border-color: rgba(26, 43, 73, 0.2);
    color: var(--secondary-color);
}

.navbar-static .nav-user-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.navbar-static .nav-user-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-user-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-user-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-user-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: white;
    min-width: 200px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-user-dropdown.open .nav-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-user-info {
    padding: 12px 16px;
}

.nav-user-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-user-email {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 168px;
}

.nav-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 4px 0;
}

.nav-user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
}

.nav-user-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.nav-user-item i {
    width: 16px;
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
}

.nav-user-item:hover i {
    color: var(--primary-color);
}

.nav-user-logout {
    color: #dc2626;
}

.nav-user-logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.nav-user-logout i {
    color: #dc2626;
}


.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--primary-color) !important;
}

/* Dropdown Styles */
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    color: var(--secondary-color) !important;
    padding: 10px 20px;
    display: block;
    font-size: 0.8rem;
    text-transform: capitalize;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color) !important;
}

/* Adjust dropdown for navbar-full theme relative to spacing */
.navbar-full .dropdown-menu {
    top: calc(100% + 15px);
}

/* Adjust dropdown for navbar-pill theme */
.navbar-pill .dropdown-menu {
    top: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
}

.slide-content h1 {
    font-size: 5rem;
    font-family: var(--font-secondary);
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.1;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}

.btn-reservation {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(0, 166, 178, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 166, 178, 0.4);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Services Sections */
.services-section {
    padding: 100px 50px;
    background: #f9f9f9;
}

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

.section-title h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* .service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
} */

/* Tour Page Styles */
.tour-page {
    background-color: #f5f7fa;
}

.header-container {
    padding: 0;
    margin-bottom: 20px;
}

.tour-header {
    width: 100%;
    aspect-ratio: 18 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}




/* Filters Bar */
.filters-bar {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    position: relative;
    min-width: 150px;
}

.search-group {
    flex: 2;
}

.filter-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fcfcfc;
}

.search-group input {
    padding-left: 50px;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--primary-color);
}

.btn-search {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 178, 0.4);
}

/* Pagination Section */
.pagination-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.page-number,
.page-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--secondary-color);
    background: white;
    border: 1px solid #eee;
}

.page-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.3);
}

.page-number:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-nav-btn {
    color: var(--secondary-color);
    background: transparent;
    padding: 0 15px;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-nav-btn:hover {
    color: var(--primary-color);
}

.page-nav-btn i {
    font-size: 0.75rem;
}

.pagination-ellipsis {
    color: #888;
    padding: 0 5px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .pagination-nav {
        gap: 10px;
    }

    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .page-nav-btn span {
        display: none;
    }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card-link:hover .tour-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 700;
}

.card-body .location {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-price {
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.price-flex {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.organizer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.organizer img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
}

.organizer span {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.2;
}

/* Main Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 0 0 0;
    font-family: var(--font-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
}

.footer-desc {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 20px 0;
    max-width: 400px;
}

.footer-logo {
    height: 45px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #718096;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-desc {
        margin: 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* Product Detail Page Styles */
.product-detail-page {
    background-color: #ffffff;
    padding-top: 100px;
    /* Offset for sticky navbar */
}

.product-gallery {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.product-gallery:hover .main-gallery-image {
    transform: scale(1.05);
}

.view-gallery-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.view-gallery-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.view-gallery-btn i {
    color: var(--primary-color);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #888;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb i {
    font-size: 0.7rem;
    color: #ccc;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
}

.product-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-organizer {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.product-organizer strong {
    color: var(--secondary-color);
}

.product-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.product-location i {
    color: var(--primary-color);
}

.view-map {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9rem;
}

.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Sidebar Sticky Card */
.product-sidebar {
    position: relative;
}

.price-sticky-card {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-price {
    margin-bottom: 25px;
}

.sidebar-price-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.sidebar-price-flex {
    display: flex;
    flex-direction: column;
}

.sidebar-old-price {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.sidebar-current-price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.btn-buy-ticket {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.3);
}

.btn-buy-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 178, 0.4);
}

.price-disclaimer {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-sidebar {
        order: -1;
    }

    .price-sticky-card {
        position: static;
    }

    .product-title {
        font-size: 2.5rem;
    }
}

/* Booking Selection UI */
.booking-selection-container {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.selection-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.control-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    background: #fdfdfd;
}

.visitor-type-toggle {
    display: flex;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 12px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Ticket Cards */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.ticket-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ticket-info h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.ticket-time {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-time i {
    color: var(--primary-color);
}

.see-details {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.ticket-action {
    text-align: right;
    min-width: 180px;
}

.ticket-price-display {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-add-ticket {
    background: #eefdfd;
    color: var(--primary-color);
    border: none;
    padding: 8px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

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

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
    font-weight: 600;
}

.qty-btn.remove {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.1rem;
    margin-right: 15px;
}

.qty-btn.remove:hover {
    color: #e53e3e;
}

.qty-btn.minus,
.qty-btn.plus {
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.qty-btn.minus:hover,
.qty-btn.plus:hover {
    background: var(--primary-color);
    color: white;
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #444;
    display: inline-block;
}

.max-tix {
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 8px;
}

/* Updated Order Summary Card */
.order-summary-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-items {
    margin-bottom: 25px;
    max-height: 200px;
    overflow-y: auto;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.order-item-name {
    color: #666;
}

.order-item-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.empty-msg {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
}

.promo-section {
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.promo-section label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-input-group {
    display: flex;
    gap: 10px;
}

.promo-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
}

.btn-apply {
    padding: 0 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.promo-status {
    font-size: 0.75rem;
    margin-top: 5px;
    min-height: 15px;
}

.payment-details {
    margin-bottom: 30px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.payment-row.discount {
    color: #38a169;
}

.payment-row.total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    padding-top: 15px;
}

.btn-checkout-now {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout-now.disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}



/* Navbar hide on scroll down */
.navbar-hidden {
    transform: translateY(-100%) !important;
    transition: transform 0.3s ease-in-out;
}

.main-navbar {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

/* Add space for fixed navbar */
body {
    padding-top: 90px;
}

/* Remove padding for pages with hero sections (hero goes under transparent navbar) */
body.has-hero {
    padding-top: 0;
}

/* Remove padding for pages with static navbar (non-fixed, no offset needed) */
body.has-static-navbar {
    padding-top: 0;
}

/* Global Layout Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    /* padding-top: 40px; */
    padding-bottom: 40px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-section {
    background: #f8f9fc;
    padding: 70px 20px 100px;
    position: relative;
    overflow: hidden;
}

.experiences-section::before {
    content: none;
}

.exp-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.exp-header {
    text-align: center;
    margin-bottom: 50px;
}

.exp-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.exp-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.1;
    margin: 0 0 16px;
    font-style: italic;
}

.exp-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Theme Tabs */
.theme-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.theme-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.theme-tab .tab-icon {
    font-size: 1.1rem;
}

.theme-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 166, 178, 0.1);
}

.theme-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 166, 178, 0.35);
}

/* Theme Panels */
.theme-panels {
    position: relative;
}

.theme-panel {
    display: none;
    animation: panelFadeIn 0.4s ease;
}

.theme-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Card Grid — Horizontal Scroll */
.exp-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #eee;
}

.exp-grid::-webkit-scrollbar {
    height: 6px;
}

.exp-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.exp-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Exp Card */
.exp-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease forwards;
    animation-delay: var(--card-delay, 0s);
    display: flex;
    flex-direction: column;
    /* Horizontal scroll sizing */
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
}

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

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.exp-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.exp-card:hover .exp-card-img {
    transform: scale(1.03);
}

/* Badges */
.exp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
}

.badge-transport {
    background: rgba(255, 255, 255, 0.9);
    color: #1a2b49;
}

.badge-hotel {
    background: rgba(26, 43, 73, 0.85);
    color: white;
}

.badge-resort {
    background: rgba(255, 200, 80, 0.9);
    color: #7a5500;
}

.badge-airport-service {
    background: rgba(0, 166, 178, 0.9);
    color: white;
}

.badge-attraction {
    background: rgba(120, 80, 220, 0.85);
    color: white;
}

/* Card Body */
.exp-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.exp-card-location {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.exp-card-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px;
    line-height: 1.3;
}

.exp-card-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* Card Footer */
.exp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: auto;
    gap: 10px;
}

.exp-card-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-val {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.exp-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 166, 178, 0.3);
}

.exp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 178, 0.4);
}

@media (max-width: 768px) {
    .experiences-section {
        padding: 60px 16px;
    }

    .exp-grid {
        gap: 16px;
    }

    .exp-card {
        flex: 0 0 240px;
        width: 240px;
    }

    .theme-tabs {
        gap: 8px;
    }

    .theme-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}