:root {
    --primary-teal: #0c6978;
    --primary-dark: #074550;
    --primary-deep: #083a42;
    --primary-light: #158294;
    --accent-gold: #d09b39;
    --accent-gold-hover: #bd872b;
    --hero-gold: #e5a93c;
    --text-navy: #13384e;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8f9fb;
    --white: #ffffff;
    --border-light: #eef2f6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-navy);
}

.text-teal {
    color: var(--primary-teal) !important;
}

.bg-teal {
    background-color: var(--primary-teal) !important;
}

.bg-dark-teal {
    background-color: var(--primary-deep) !important;
}

.text-accent-gold {
    color: var(--accent-gold) !important;
}

.btn-accent-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    border: none;
    transition: all 0.2s ease;
}

.btn-accent-gold:hover {
    background-color: var(--accent-gold-hover);
    color: var(--white);
}

.font-small {
    font-size: 12px;
}

.font-sm {
    font-size: 13px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.top-bar {
    background-color: var(--primary-teal);
    font-size: 12.5px;
    font-weight: 500;
}

.top-info-link {
    transition: opacity 0.2s ease;
    opacity: 0.95;
    font-size: 12.5px;
}

.top-info-link:hover {
    opacity: 1;
    color: #ffffff !important;
}

.top-social-icon {
    font-size: 12.5px;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.top-social-icon:hover {
    opacity: 1;
    transform: translateY(-1px);
    color: #ffffff !important;
}

.flag-icon {
    width: 17px;
    height: 12px;
    border-radius: 2px;
    vertical-align: middle;
}

.lang-dropdown .dropdown-toggle {
    font-size: 12px;
    font-weight: 600;
}

.lang-dropdown .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 4px;
    font-size: 10px;
}

.lang-dropdown .dropdown-item {
    font-size: 13px;
    padding: 6px 14px;
}

.lang-dropdown .dropdown-item.active {
    background-color: var(--primary-teal);
}

.navbar {
    min-height: 64px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo {
    height: 42px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

.navbar-nav .nav-link.active {
    color: var(--primary-teal);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-teal);
    border-radius: 2px;
}

.navbar-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 4px;
    font-size: 10px;
}

.btn-book-tour {
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 10px rgba(208, 155, 57, 0.2);
    transition: all 0.2s ease;
}

.btn-book-tour:hover {
    background-color: var(--accent-gold-hover);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(208, 155, 57, 0.35);
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-deep);
    min-height: 580px;
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(8, 70, 90, 0.82) 0%, 
        rgba(10, 85, 105, 0.60) 45%, 
        rgba(10, 85, 105, 0.35) 75%, 
        rgba(8, 58, 66, 0.45) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    z-index: 2;
    width: 100%;
}

.hero-tagline {
    margin-bottom: 8px;
}

.tagline-text {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.tagline-divider {
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: var(--hero-gold);
    margin-left: 10px;
    border-radius: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-highlight {
    color: var(--hero-gold);
}

.hero-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 530px;
    margin-bottom: 30px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.search-booking-bar {
    border-radius: 12px;
    padding: 10px 14px;
    background-color: var(--white);
    box-shadow: 0 12px 35px rgba(8, 50, 65, 0.16) !important;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.1fr 1.1fr 1fr 1.25fr;
    gap: 6px;
    align-items: center;
}

.search-item {
    padding: 6px 14px;
}

.search-icon-box {
    font-size: 17px;
    color: var(--primary-teal);
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.search-select,
.search-input {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    box-shadow: none !important;
    background-color: transparent;
    cursor: pointer;
}

.search-select:focus,
.search-input:focus {
    outline: none;
    box-shadow: none;
}

.select-date-wrapper {
    position: relative;
    cursor: pointer;
}

.date-input {
    cursor: pointer;
}

.date-arrow {
    font-size: 10px;
    color: #94a3b8;
    pointer-events: none;
}

.btn-search-tours {
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(208, 155, 57, 0.25);
    white-space: nowrap;
}

.btn-search-tours:hover {
    background-color: var(--accent-gold-hover);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(208, 155, 57, 0.4);
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO BOTTOM NAVIGATION BAR
   ========================================================================== */
.hero-bottom-navbar {
    position: relative;
    z-index: 2;
    background: rgba(7, 45, 55, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 45px;
}

.hero-bottom-nav-list {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 0;
}

.hero-bottom-nav-list::-webkit-scrollbar {
    display: none;
}

.hero-bottom-nav-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.hero-bottom-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hero-bottom-nav-link i {
    font-size: 13px;
}

.hero-bottom-nav-highlight {
    background: rgba(208, 155, 57, 0.22);
    border: 1px solid rgba(208, 155, 57, 0.5);
    color: var(--hero-gold) !important;
}

.hero-bottom-nav-highlight:hover {
    background: var(--accent-gold) !important;
    color: #ffffff !important;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(208, 155, 57, 0.35);
}

.hero-bottom-scroll-hint {
    letter-spacing: 0.5px;
}

.hero-scroll-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.25s ease;
    animation: heroBounce 2s infinite ease-in-out;
}

.hero-scroll-btn:hover {
    border-color: var(--hero-gold);
    color: var(--hero-gold) !important;
    background: rgba(208, 155, 57, 0.15);
}

@keyframes heroBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

.features-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.features-row {
    align-items: center;
}

.feature-col {
    position: relative;
}

.feature-divider {
    border-right: 1px solid var(--border-light);
}

.feature-icon-wrapper {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 26px;
    color: var(--primary-teal);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-navy);
}

.feature-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.popular-destinations-section {
    background-color: var(--bg-light);
    padding: 45px 0 65px 0;
}

.section-tagline {
    margin-bottom: 4px;
}

.tagline-divider-gold {
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--accent-gold);
    border-radius: 1px;
}

.section-badge-text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-navy);
}

.view-all-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-teal);
    transition: all 0.2s ease;
}

.view-all-link:hover {
    color: var(--accent-gold);
    transform: translateX(2px);
}

.destination-card {
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.destination-card:hover {
    box-shadow: 0 8px 25px rgba(12, 105, 120, 0.18);
    transform: translateY(-2px);
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(9, 26, 36, 0.88) 0%, 
        rgba(9, 26, 36, 0.45) 45%, 
        rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.destination-card-content {
    z-index: 2;
}

.destination-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
}

.destination-category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.category-icon {
    font-size: 11px;
    color: #5eead4;
}

.site-footer {
    position: relative;
    background-color: var(--primary-deep);
    background-image: linear-gradient(180deg, rgba(7, 45, 55, 0.94) 0%, rgba(8, 58, 66, 0.90) 50%, rgba(5, 28, 35, 0.97) 100%), url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.footer-links a {
    font-size: 13.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    padding-left: 4px;
}

.footer-contact li {
    font-size: 13.5px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 13px;
}

.footer-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--white);
    box-shadow: none;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
    .search-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .search-btn-wrapper {
        grid-column: span 4;
        margin-top: 6px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .search-grid {
        grid-template-columns: 1fr 1fr;
    }
    .search-btn-wrapper {
        grid-column: span 2;
    }
    .feature-divider {
        border-right: none;
    }
    .feature-col {
        border-bottom: 1px solid var(--border-light);
    }
    .navbar-nav .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-section {
        min-height: auto;
        padding: 40px 0 60px 0;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-btn-wrapper {
        grid-column: span 1;
    }
    .top-contact-info {
        flex-direction: column;
        gap: 4px;
    }
    .top-info-link.ms-4 {
        margin-left: 0 !important;
    }
}

/* ========================================
   NEW PAGE STYLES
   ======================================== */

/* Page Header / Banner Section */
.page-header-section {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 260px;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(8, 58, 66, 0.88) 0%,
        rgba(12, 105, 120, 0.78) 100%);
    z-index: 1;
}

.page-header-section .z-2 {
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Utility classes */
.text-navy {
    color: var(--text-navy) !important;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-teal-light {
    color: #5eead4 !important;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-700 {
    max-width: 700px;
}

.leading-relaxed {
    line-height: 1.75;
}

.hover-teal:hover {
    color: var(--primary-teal) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.object-fit-cover {
    object-fit: cover;
}

.scrollbar-none::-webkit-scrollbar {
    display: none;
}

.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Button Variants */
.btn-teal {
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
}

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

.btn-outline-teal {
    color: var(--primary-teal);
    border: 1.5px solid var(--primary-teal);
    background: transparent;
}

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

.btn-outline-teal.active {
    background-color: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

/* Background helpers */
.bg-teal-subtle {
    background-color: rgba(12, 105, 120, 0.08) !important;
}

.bg-accent-gold-subtle {
    background-color: rgba(208, 155, 57, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-accent-gold {
    background-color: var(--accent-gold) !important;
}

/* Tour Package Cards */
.tour-package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(12, 105, 120, 0.15) !important;
}

.tour-card-img-wrap {
    height: 220px;
    overflow: hidden;
}

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

.tour-package-card:hover .tour-card-img {
    transform: scale(1.06);
}

.tour-card-price-badge {
    background-color: var(--accent-gold);
    font-size: 14px;
}

/* Feature Card Hover Effect */
.feature-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(12, 105, 120, 0.12) !important;
}

/* Feature Icon Circle */
.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Icon Box */
.contact-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Itinerary Timeline */
.itinerary-timeline {
    border-left: 2px solid rgba(12, 105, 120, 0.15);
    margin-left: 14px;
}

.itinerary-dot {
    width: 28px;
    height: 28px;
    left: -14px;
    font-size: 11px;
    z-index: 2;
}

.itinerary-step:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Gallery Cards */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.05) 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-img {
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

/* Gallery item filter transition */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Progress bars */
.progress {
    border-radius: 99px;
    background-color: rgba(12, 105, 120, 0.08);
}

.progress-bar.bg-teal {
    background-color: var(--primary-teal) !important;
}

/* Accordion custom styling */
.accordion-button:not(.collapsed) {
    color: var(--primary-teal);
    background-color: transparent;
    box-shadow: none;
}

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

.accordion-button::after {
    filter: hue-rotate(160deg);
}

/* CTA Sections */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-deep) 100%);
}

/* Responsive adjustments for inner pages */
@media (max-width: 991px) {
    .page-header-section {
        min-height: 200px;
    }

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

    .destination-hero-img-wrap {
        min-height: 260px !important;
    }

    .tour-hero-cover-img {
        height: 280px !important;
    }
}

@media (max-width: 575px) {
    .page-header-section {
        min-height: 160px;
    }

    .page-header-section h1 {
        font-size: 1.6rem;
    }

    .tour-card-img-wrap {
        height: 180px;
    }

    .gallery-card .gallery-img {
        height: 180px !important;
    }

    .destination-hero-img-wrap {
        min-height: 200px !important;
    }
}

/* Print styles for booking voucher */
@media print {
    .top-bar,
    .navbar,
    .site-footer,
    .toast-container {
        display: none !important;
    }

    .booking-confirmation-section {
        padding: 0 !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ========================================
   MULTI-COLOR STRIPE DIVIDER (Horizontal)
   ======================================== */
.color-stripe-divider {
    display: flex;
    width: 100%;
    height: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.color-stripe-divider .stripe-segment {
    flex: 1;
    display: block;
}

/* ========================================
   VERTICAL SIDE BORDERS (Left + Right)
   ======================================== */
.section-with-side-borders {
    position: relative;
}

.section-with-side-borders::before,
.section-with-side-borders::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #d09b39 0%,
        #d09b39 16.66%,
        #c9bfa8 16.66%,
        #c9bfa8 33.33%,
        #8e9eab 33.33%,
        #8e9eab 50%,
        #0c6978 50%,
        #0c6978 66.66%,
        #13384e 66.66%,
        #13384e 83.33%,
        #1a1a1a 83.33%,
        #1a1a1a 100%
    );
}

.section-with-side-borders::before {
    left: 0;
}

.section-with-side-borders::after {
    right: 0;
}

/* Variant: left border only */
.section-with-left-border {
    position: relative;
}

.section-with-left-border::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #d09b39 0%,
        #d09b39 16.66%,
        #c9bfa8 16.66%,
        #c9bfa8 33.33%,
        #8e9eab 33.33%,
        #8e9eab 50%,
        #0c6978 50%,
        #0c6978 66.66%,
        #13384e 66.66%,
        #13384e 83.33%,
        #1a1a1a 83.33%,
        #1a1a1a 100%
    );
}

/* Hide side borders on very small screens to avoid overlap */
@media (max-width: 575px) {
    .section-with-side-borders::before,
    .section-with-side-borders::after {
        width: 3px;
    }
    
    .section-with-left-border::before {
        width: 3px;
    }
    
    .color-stripe-divider {
        height: 4px;
    }
}

@media print {
    .color-stripe-divider,
    .section-with-side-borders::before,
    .section-with-side-borders::after,
    .section-with-left-border::before {
        display: none !important;
    }
}

/* ==========================================================================
   NEW EXPANDED SECTIONS STYLING
   ========================================================================== */

/* Island Travel Styles & Themes */
.theme-category-card {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(12, 105, 120, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.theme-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(12, 105, 120, 0.12);
    border-color: rgba(12, 105, 120, 0.25);
}

.theme-category-card .icon-box-lg {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 105, 120, 0.08);
    color: var(--primary-teal);
    font-size: 24px;
    transition: all 0.3s ease;
}

.theme-category-card:hover .icon-box-lg {
    background: var(--primary-teal);
    color: #ffffff;
    transform: scale(1.05);
}

.theme-tag-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    background: rgba(208, 155, 57, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Stats Counter & Credibility */
.stats-counter-section {
    background: linear-gradient(135deg, #093742 0%, #0c6978 60%, #13384e 100%);
    color: #ffffff;
    position: relative;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(208, 155, 57, 0.15), transparent 60%);
    pointer-events: none;
}

.stat-metric-card {
    padding: 24px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.stat-metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.stat-metric-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--hero-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-metric-label {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.stat-metric-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-pillar-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #edf2f7;
    padding: 24px 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(19, 56, 78, 0.08);
    border-color: rgba(12, 105, 120, 0.2);
}

.pillar-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(12, 105, 120, 0.1);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* How It Works Flow */
.how-it-works-section {
    position: relative;
}

.how-step-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed rgba(12, 105, 120, 0.2);
    padding: 30px 24px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.how-step-card:hover {
    border-style: solid;
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(12, 105, 120, 0.09);
}

.step-number-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(208, 155, 57, 0.35);
}

.how-step-icon {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 16px;
    margin-top: 6px;
}

/* VIP Custom Tour Banner */
.vip-tailor-banner {
    background: linear-gradient(135deg, #13384e 0%, #0c6978 70%, #074550 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(19, 56, 78, 0.25);
    border: 1px solid rgba(208, 155, 57, 0.3);
}

.vip-tailor-banner::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 155, 57, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Home Testimonials Card */
.home-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid #edf2f7;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(19, 56, 78, 0.08);
    border-color: rgba(12, 105, 120, 0.2);
}

.quote-icon-decor {
    font-size: 34px;
    color: rgba(12, 105, 120, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.home-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

/* Travel Journal Cards */
.journal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(19, 56, 78, 0.1);
}

.journal-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.journal-card:hover .journal-card-img-wrap img {
    transform: scale(1.06);
}

.journal-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-teal);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Accreditation Strip */
.trust-strip-box {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #edf2f7;
    padding: 20px 24px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
}

.trust-strip-box:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 8px 18px rgba(12, 105, 120, 0.08);
    transform: translateY(-2px);
}

.trust-icon-badge {
    font-size: 28px;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

/* ==========================================================================
   SITE PRELOADER
   ========================================================================== */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: linear-gradient(135deg, #073842 0%, #0c6978 50%, #13384e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.site-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    max-width: 320px;
    padding: 24px;
}

.preloader-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    position: relative;
    padding: 10px;
}

.preloader-logo-img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-spin-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-gold);
    border-right-color: #ffffff;
    animation: preloaderRotate 1.2s linear infinite;
}

.preloader-brand-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
}

.preloader-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.preloader-progress-track {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: var(--hero-gold);
    border-radius: 3px;
    animation: preloaderTrack 1.4s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(0.96);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes preloaderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloaderTrack {
    0% {
        left: -40%;
        width: 30%;
    }
    50% {
        left: 40%;
        width: 50%;
    }
    100% {
        left: 100%;
        width: 30%;
    }
}

/* ==========================================================================
   FULL MOBILE RESPONSIVE SUITE
   ========================================================================== */

/* Global Mobile Fixes */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Tablet screens (max-width: 991px) */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 16px 20px;
        border-radius: 14px;
        margin-top: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #edf2f7;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .nav-btn-wrapper {
        margin-top: 14px;
        width: 100%;
    }

    .nav-btn-wrapper .btn-book-tour {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .search-item {
        border-right: none !important;
        border-bottom: 1px solid #edf2f7;
        padding: 8px 10px;
    }

    .search-btn-wrapper {
        grid-column: span 2;
        margin-top: 4px;
    }

    .btn-search-tours {
        padding: 14px 20px;
        width: 100%;
    }
}

/* Mobile landscape and phones (max-width: 767px) */
@media (max-width: 767px) {
    .top-bar {
        font-size: 11.5px;
        padding: 6px 0;
    }

    .top-contact-info {
        flex-direction: column;
        align-items: center !important;
        gap: 4px;
    }

    .top-contact-info a {
        margin-right: 0 !important;
    }

    .top-social-lang {
        margin-top: 6px;
    }

    .brand-logo {
        height: 40px;
    }

    .hero-section {
        min-height: auto;
        padding: 35px 0 0 0;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 13.5px !important;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .search-item {
        border-right: none !important;
        border-bottom: 1px solid #edf2f7;
        padding: 8px 6px;
    }

    .search-btn-wrapper {
        grid-column: span 1;
        margin-top: 8px;
    }

    .hero-bottom-navbar {
        margin-top: 25px;
    }

    .hero-bottom-nav-link {
        font-size: 12px;
        padding: 6px 13px;
    }

    /* Features section on mobile */
    .features-row {
        flex-wrap: wrap;
    }

    .feature-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 12px 10px !important;
        border-bottom: 1px solid var(--border-light);
    }

    .feature-divider {
        border-right: none !important;
    }

    .feature-col:nth-child(odd) {
        border-right: 1px solid var(--border-light) !important;
    }

    .feature-col:last-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        border-right: none !important;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-subtitle {
        font-size: 11px;
    }

    /* Cards and sections */
    .section-heading {
        font-size: 24px !important;
    }

    .destination-card-img {
        height: 220px !important;
    }

    .theme-category-card {
        padding: 20px !important;
    }

    .stat-metric-card {
        padding: 16px 12px;
    }

    .stat-metric-number {
        font-size: 28px !important;
    }

    .stat-metric-label {
        font-size: 12px !important;
    }

    .how-step-card {
        padding: 24px 18px;
    }

    .vip-tailor-banner {
        padding: 30px 18px;
        border-radius: 14px;
    }

    .vip-tailor-banner h2 {
        font-size: 22px !important;
    }

    .home-testimonial-card {
        padding: 22px 18px;
    }

    .journal-card-img-wrap {
        height: 180px;
    }

    .site-footer {
        text-align: center;
    }

    .footer-desc {
        padding-right: 0 !important;
    }

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

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

    .btn-book-tour,
    .btn-accent-gold,
    .btn-outline-teal {
        touch-action: manipulation;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }

    .hero-highlight {
        font-size: 28px !important;
    }

    .top-bar .social-icons {
        margin-right: 10px !important;
    }

    .search-booking-bar {
        padding: 10px !important;
    }

    .destination-card-content {
        padding: 12px !important;
    }

    .destination-name {
        font-size: 18px !important;
    }

    .tour-package-card .tour-card-price-badge {
        font-size: 13px !important;
    }

    .stat-metric-number {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(12, 105, 120, 0.14);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 60px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 8px;
}

.mobile-nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 600;
    gap: 3px;
    transition: all 0.2s ease;
    padding: 6px 0;
}

.mobile-nav-link i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--primary-teal);
}

.mobile-nav-link.active {
    color: var(--primary-teal);
}

.mobile-nav-link.active i {
    transform: translateY(-2px);
}

.mobile-nav-whatsapp i {
    color: #25d366;
}

.mobile-nav-book {
    padding: 0 4px;
}

.mobile-book-pill {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 4px 14px;
    box-shadow: 0 4px 10px rgba(208, 155, 57, 0.35);
    font-size: 10px;
    font-weight: 700;
    gap: 2px;
}

.mobile-book-pill i {
    font-size: 15px;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 66px !important;
    }
}

@media (min-width: 992px) {
    .mobile-bottom-navbar {
        display: none !important;
    }
}


/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

/* --- Base hidden state for all scroll-animated elements --- */
[data-scroll] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
                transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* --- Revealed state --- */
[data-scroll].scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* --- Fade Up (default) --- */
[data-scroll="fade-up"] {
    transform: translate3d(0, 50px, 0);
}

/* --- Fade Down --- */
[data-scroll="fade-down"] {
    transform: translate3d(0, -40px, 0);
}

/* --- Fade In (pure opacity) --- */
[data-scroll="fade-in"] {
    transform: translate3d(0, 0, 0);
}

/* --- Slide Left (comes from right) --- */
[data-scroll="slide-left"] {
    transform: translate3d(70px, 0, 0);
}

/* --- Slide Right (comes from left) --- */
[data-scroll="slide-right"] {
    transform: translate3d(-70px, 0, 0);
}

/* --- Scale Up --- */
[data-scroll="scale-up"] {
    transform: scale(0.88);
}

/* --- Zoom In --- */
[data-scroll="zoom-in"] {
    transform: scale(0.7);
}

/* --- Flip Up --- */
[data-scroll="flip-up"] {
    transform: perspective(800px) rotateX(12deg) translate3d(0, 30px, 0);
    transform-origin: bottom center;
}

/* --- Stagger delay utility classes --- */
[data-scroll-delay="100"] { transition-delay: 100ms; }
[data-scroll-delay="200"] { transition-delay: 200ms; }
[data-scroll-delay="300"] { transition-delay: 300ms; }
[data-scroll-delay="400"] { transition-delay: 400ms; }
[data-scroll-delay="500"] { transition-delay: 500ms; }
[data-scroll-delay="600"] { transition-delay: 600ms; }
[data-scroll-delay="700"] { transition-delay: 700ms; }
[data-scroll-delay="800"] { transition-delay: 800ms; }

/* --- Duration modifiers --- */
[data-scroll-duration="fast"] {
    transition-duration: 0.4s;
}
[data-scroll-duration="slow"] {
    transition-duration: 1.1s;
}

/* --- Parallax float effect for decorative elements --- */
@keyframes scrollFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.scroll-float-active {
    animation: scrollFloat 3.5s ease-in-out infinite;
}

/* --- Counter number roll-up animation --- */
@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.count-animated {
    animation: countPulse 0.4s ease-out;
}

/* --- Section heading underline grow --- */
@keyframes headingUnderlineGrow {
    from { width: 0; }
    to { width: 60px; }
}

[data-scroll].scroll-visible .section-heading::after {
    animation: headingUnderlineGrow 0.6s ease-out 0.3s forwards;
}

/* --- Card hover lift enhancement for animated cards --- */
[data-scroll].scroll-visible .card,
[data-scroll].scroll-visible .feature-card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

[data-scroll].scroll-visible .card:hover,
[data-scroll].scroll-visible .feature-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 105, 120, 0.12);
}

/* --- Navbar scroll shadow enhancement --- */
.navbar.scrolled-nav {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

/* --- Smooth section badge pop --- */
@keyframes badgePop {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

[data-scroll].scroll-visible .section-tagline {
    animation: badgePop 0.5s ease-out 0.15s both;
}

/* --- Image reveal shimmer --- */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

[data-scroll] .card-img-top,
[data-scroll] .tour-card-img {
    transition: opacity 0.5s ease 0.2s, transform 0.6s ease;
}

[data-scroll].scroll-visible .card-img-top:hover,
[data-scroll].scroll-visible .tour-card-img:hover {
    transform: scale(1.05);
}

/* --- Stats counter glow on reveal --- */
@keyframes statGlow {
    0% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px rgba(208, 155, 57, 0.3); }
    100% { text-shadow: 0 0 0 transparent; }
}

[data-scroll].scroll-visible .stat-number {
    animation: statGlow 1.2s ease-out;
}

/* --- Respect reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    [data-scroll] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    [data-scroll].scroll-visible .section-tagline,
    [data-scroll].scroll-visible .stat-number,
    .scroll-float-active {
        animation: none !important;
    }
}
