/* ==========================================================================
   Royal Adventure Camping CSS System
   ========================================================================== */

/* 1. Design Tokens & Variables */
:root {
    /* Color Palette */
    --color-primary: #5E17EB;
    --color-primary-rgb: 94, 23, 235;
    --color-primary-hover: #480ec3;
    --color-accent: #FF4811;
    --color-accent-rgb: 255, 72, 17;
    --color-accent-hover: #e03b0a;
    --color-dark: #0B0223;
    --color-dark-rgb: 11, 2, 35;
    --color-dark-card: #140838;
    --color-text-dark: #1E1A29;
    --color-text-body: #625E73;
    --color-light-bg: #F8F6FC;
    --color-border: #E8E5F0;
    --color-white: #FFFFFF;
    
    /* Star Rating Gold */
    --color-star: #FFB300;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif; /* Clean sans-serif matches mockup */

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 20px -5px rgba(94, 23, 235, 0.08), 0 8px 16px -8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 30px 60px -15px rgba(11, 2, 35, 0.15), 0 12px 24px -12px rgba(94, 23, 235, 0.05);
    --shadow-accent: 0 12px 24px -6px rgba(255, 72, 17, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* 2. Global Resets & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-body);
    background-color: var(--color-white);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.25;
}

.heading-serif {
    font-family: var(--font-primary);
    font-weight: 800;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.text-center { text-align: center; }

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 23, 235, 0.2);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 72, 17, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    font-size: 0.85rem;
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Tour Badges */
.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
    color: var(--color-white);
}

.tour-badge.featured { background-color: #00C853; }
.tour-badge.sale { background-color: var(--color-accent); }
.tour-badge.hot-deal { background-color: #D50000; }
.tour-badge.new { background-color: #2979FF; }

/* 3. Transparent Header Overlay & Navigation */
.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom Theme Logo Styled Layout */
.custom-theme-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo-link img.custom-logo {
    max-height: 48px;
    width: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-logo-link:hover img.custom-logo {
    transform: scale(1.08);
}

.theme-logo-emblem,
.theme-logo-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.theme-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-logo-svg {
    height: 100%;
    width: 100%;
    color: var(--color-white);
}

.custom-theme-logo-link:hover .theme-logo-emblem,
.custom-theme-logo-link:hover .theme-logo-icon {
    transform: scale(1.12) rotate(6deg);
    filter: drop-shadow(0 4px 12px rgba(255, 72, 17, 0.5));
}

.theme-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.theme-logo-text .logo-title {
    font-size: 1.3rem;
    font-weight: 850;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.theme-logo-text .logo-subtitle {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 2px;
}

.site-title a {
    color: var(--color-white);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
}

.main-navigation li {
    margin: 0 18px;
    position: relative;
}

.main-navigation a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.main-navigation a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.main-navigation .menu-arrow {
    font-size: 0.65rem;
    opacity: 0.7;
}

/* Right Header Actions block */
.header-actions {
    display: flex;
    align-items: center;
}

.header-action-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1.2;
}

.contact-number {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.action-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 18px;
}

.header-action-lang {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.header-action-lang .arrow-icon {
    font-size: 0.65rem;
    margin-left: 4px;
    opacity: 0.7;
}

.btn-login .user-icon {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Mobile Toggle Hamburger */
.menu-toggle-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle-hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 4. Homepage Sections Styling */

/* Section Headings */
.section-subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-style: italic;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
}

/* Section Spacing */
.section-padding {
    padding: var(--spacing-lg) 0;
}

/* HERO SECTION - TOUREX LAYOUT */
.hero-slider-section.style-tourex {
    position: relative;
    height: 90vh;
    min-height: 650px;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-slider-container {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,2,35,0.4) 0%, rgba(11,2,35,0.65) 100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset transparent header overlay */
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-slide-valid-tag {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-slide-main-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -1px;
    display: inline-block;
    border-bottom: 4px solid var(--color-white);
    padding-bottom: 10px;
}

.hero-slide-summary-desc {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-slide-price-tag {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}

.hero-slide-price-tag .price-value {
    font-weight: 900;
    font-size: 1.8rem;
}

.hero-slide-price-tag .price-duration {
    font-size: 0.95rem;
    opacity: 0.7;
}

.btn-take-tour {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 6px; /* Pill button but with slightly rounded box layout */
    padding: 1.05rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 10px;
}

.btn-take-tour:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
}

.btn-take-tour .arrow-right-icon {
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.btn-take-tour:hover .arrow-right-icon {
    transform: translateX(6px);
}

/* Wavy Curvy Trail Visual Overlays */
.hero-curvy-trail {
    position: absolute;
    bottom: 0;
    height: 300px;
    width: 220px;
    z-index: 15;
    pointer-events: none;
}

.hero-curvy-trail.trail-left {
    left: 20px;
}

.hero-curvy-trail.trail-right {
    right: 20px;
}

.hero-curvy-trail svg {
    width: 100%;
    height: 100%;
}

/* Slider White Circle Controls */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: none;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    z-index: 20;
    box-shadow: var(--shadow-sm);
}

.hero-slider-nav:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.hero-slider-prev { left: 40px; }
.hero-slider-next { right: 40px; }


/* TOUREX SEARCH FILTER BAR */
.search-filter-section.style-tourex {
    margin-top: -65px;
    position: relative;
    z-index: 50;
}

.search-filter-wrapper {
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 2.2rem 2.5rem;
}

.search-filter-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 180px;
    gap: 15px;
    align-items: center;
}

.search-input-field {
    background-color: #F6F5F8;
    border-radius: 8px;
    padding: 0 15px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ECEBEF;
    position: relative;
}

.search-input-field .field-icon {
    font-size: 1.05rem;
    color: #8C8A97;
}

.field-select-wrapper {
    width: 100%;
}

.custom-select-input {
    width: 100%;
    height: 48px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-date-input {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Hide native date text when empty and not selected */
.custom-date-input:invalid::-webkit-datetime-edit {
    color: transparent;
}

/* Show placeholder text when empty */
.custom-date-input:invalid::before {
    content: attr(placeholder);
    color: var(--color-text-body);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-date-input::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Custom select dropdown arrow positioning */
.search-input-field::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: #8C8A97;
    position: absolute;
    right: 18px;
    pointer-events: none;
}

.search-submit-btn {
    height: 52px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
}

.search-submit-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.search-submit-btn .search-icon {
    font-size: 0.9rem;
}


/* MOSAIC INTRO SECTION */
.mosaic-intro-section {
    background-color: var(--color-white);
    overflow: hidden;
    position: relative;
    padding: 100px 0 80px 0;
}

.mosaic-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Image styles */
.mosaic-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.mosaic-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.mosaic-img-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.mosaic-img-box:hover img {
    transform: scale(1.05);
}

/* Image offsets to match asymmetric mosaic mockup */
.mosaic-img-left-bottom {
    width: 75%;
    margin-left: auto; /* align right */
}

.mosaic-img-right-bottom {
    width: 75%;
    margin-right: auto; /* align left */
}

/* Center Column Styling */
.mosaic-center-col {
    position: relative;
    text-align: center;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Watermark styles */
.mosaic-watermark {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    opacity: 0.045;
    pointer-events: none;
    z-index: 1;
}

.mosaic-watermark svg {
    width: 100%;
    height: auto;
    display: block;
}

.mosaic-subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mosaic-title {
    font-size: 2.5rem;
    font-weight: 850;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.mosaic-desc {
    font-size: 0.98rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.mosaic-btn-box {
    position: relative;
    z-index: 2;
}

/* Soft Lavender Button styles */
.btn-mosaic-cta {
    background-color: rgba(94, 23, 235, 0.07);
    color: var(--color-primary);
    padding: 0.95rem 2.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-mosaic-cta:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 23, 235, 0.15);
}

.btn-mosaic-cta .arrow-icon {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.btn-mosaic-cta:hover .arrow-icon {
    transform: translateX(4px);
}


/* TOURS / POPULAR PACKAGES REDESIGN */
.tours-section {
    background-color: var(--color-light-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background decorative SVG placement */
.decor-graphic {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.graphic-balloon {
    bottom: 40px;
    left: -20px;
    width: 120px;
    opacity: 0.8;
}

.graphic-plane-pyramid {
    top: 0px;
    right: -25px;
    width: 320px;
    opacity: 0.85;
}

.tours-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.tour-package-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 2, 35, 0.05);
    border: 1px solid #F0EDF5;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    will-change: transform, box-shadow;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 2, 35, 0.08);
}

.tour-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.tour-package-card:hover .tour-card-img-wrapper img {
    transform: scale(1.05);
}

.tour-ribbon-badge {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 6px 22px 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    z-index: 5;
    text-transform: none; /* Matches capitalized layout */
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.new-badge {
    background-color: #00C853; /* Green */
}

.featured-badge {
    background-color: var(--color-accent); /* Orange */
}

.sale-badge {
    background-color: var(--color-accent); /* Orange */
}

.custom-badge {
    background-color: var(--color-primary); /* Purple */
}

.tour-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.35;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-title a {
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.tour-card-title a:hover {
    color: var(--color-primary);
}

.tour-card-short-desc {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.tour-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-card-meta .meta-item i {
    color: var(--color-text-body); /* Icons match text color in mockup */
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto -24px -24px -24px; /* Pull flush to card edges */
    padding: 0;
    border-top: none; /* Removed the divider border */
    background-color: transparent;
}

.tour-price-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 12px 30px 12px 24px;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.2px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
}

.view-details-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    margin-right: 24px;
}

.view-details-link:hover {
    color: var(--color-accent);
}


/* WHY CHOOSE US REDESIGN */
.why-choose-us-section {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-bg-map {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 320px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.why-bg-map svg {
    width: 100%;
    height: auto;
}

.why-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.why-lead-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 30px;
}

.why-features-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(94, 23, 235, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(94, 23, 235, 0.05);
}

.why-feature-icon svg {
    width: 26px;
    height: 26px;
}

.why-feature-item:hover .why-feature-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 8px 16px rgba(94, 23, 235, 0.2);
}

.why-feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-feature-title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--color-dark);
    margin: 0;
}

.why-feature-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text-body);
    margin: 0;
    max-width: 480px;
}

.btn-book-trip {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.95rem 2.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-book-trip:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(94, 23, 235, 0.25);
}

.btn-book-trip .arrow-right-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-book-trip:hover .arrow-right-icon {
    transform: translateX(5px);
}

.why-collage-right {
    position: relative;
    width: 100%;
    height: 480px;
}

.why-compass-decor {
    position: absolute;
    top: -30px;
    left: 5px;
    width: 120px;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}

.why-compass-decor svg {
    width: 100%;
    height: auto;
}

.collage-bg-image {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 78%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11,2,35,0.06);
    z-index: 2;
}

.collage-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.why-collage-right:hover .collage-bg-image img {
    transform: scale(1.04);
}

.collage-fg-image {
    position: absolute;
    top: 50px;
    left: 0;
    width: 55%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(94, 23, 235, 0.12);
    z-index: 3;
    border: 6px solid var(--color-white);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    will-change: transform, box-shadow;
}

.collage-fg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.why-collage-right:hover .collage-fg-image img {
    transform: scale(1.05);
}

.why-collage-right:hover .collage-fg-image {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(94, 23, 235, 0.18);
}

.vertical-travel-watermark {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%) rotate(90deg);
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(94, 23, 235, 0.16);
    letter-spacing: 6px;
    font-family: var(--font-primary);
    z-index: 1;
    pointer-events: none;
}


/* CTA PROMO / VIDEO SECTION */
.cta-banner-section {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cta-banner-flex {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-video-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-video-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 72, 17, 0.6);
    animation: pulse-ring 1.8s infinite;
    transition: var(--transition-fast);
    padding-left: 5px; /* offset play icon visually */
}

.play-video-btn:hover {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 15px rgba(94, 23, 235, 0);
}

.video-label-title {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.video-label-subtitle {
    color: var(--color-accent);
    font-style: italic;
    font-size: 1.2rem;
    display: block;
}

.cta-text-right {
    text-align: right;
    max-width: 500px;
}

.cta-text-right h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text-right p {
    color: #A29EBE;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 72, 17, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 18px rgba(255, 72, 17, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 72, 17, 0); }
}


/* POPULAR DESTINATIONS */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 320px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    will-change: transform, box-shadow;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(11,2,35,0.85) 0%, rgba(11,2,35,0) 60%);
    z-index: 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    will-change: transform;
}

.destination-card-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 5;
    color: var(--color-white);
}

.destination-tag {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}

.destination-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    color: var(--color-white);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-card:hover img {
    transform: scale(1.1);
}


/* PARALLAX ADVENTURE BANNER */
.parallax-banner {
    background-image: url('https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 2, 35, 0.4) 0%, rgba(11, 2, 35, 0.8) 100%);
}

.parallax-banner-content {
    position: relative;
    z-index: 5;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.parallax-banner-content h2 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.parallax-banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #F8F6FC;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    will-change: transform, box-shadow;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(94, 23, 235, 0.08);
}

.testimonial-rating {
    color: var(--color-star);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text-body);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-border);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-username {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-dark);
}

.testimonial-userrole {
    font-size: 0.8rem;
    color: var(--color-text-body);
}


/* BLOG LATEST NEWS SECTION */
.blog-section-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.blog-main-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.blog-main-card img {
    height: 380px;
    width: 100%;
    object-fit: cover;
}

.blog-main-card-content {
    padding: 2rem;
}

.blog-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-small-card {
    display: flex;
    gap: 20px;
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 15px;
}

.blog-small-img {
    width: 140px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-small-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.blog-card-title a {
    color: var(--color-text-dark);
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-small-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.blog-small-content h4 a {
    color: var(--color-text-dark);
}

.post-meta {
    font-size: 0.8rem;
    color: var(--color-text-body);
    margin-bottom: 8px;
    display: flex;
    gap: 15px;
}

.post-meta i {
    color: var(--color-primary);
}

.read-more-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover i {
    transform: translateX(5px);
    transition: var(--transition-fast);
}


/* APP DOWNLOAD BANNER */
.app-download-section {
    padding: var(--spacing-md) 0;
}

.app-download-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #310d80 100%);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-download-content {
    color: var(--color-white);
    position: relative;
    z-index: 5;
}

.app-download-content h2 {
    color: var(--color-white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.app-download-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.app-store-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    height: 52px;
    transition: var(--transition-fast);
}

.app-badge:hover {
    transform: translateY(-3px);
}

.app-badge img {
    height: 100%;
}

.app-mockups-right {
    position: relative;
    height: 300px;
}

.app-mockups-right img {
    position: absolute;
    bottom: -60px;
    right: 0;
    max-width: 90%;
    z-index: 5;
}


/* 5. Footer & Bottom Bar */
.site-footer {
    background-color: var(--color-dark);
    color: #A29EBE;
    padding: var(--spacing-lg) 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: var(--spacing-md);
}

.footer-widget .widget-title {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A29EBE;
    display: inline-block;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #060114;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    margin: 0;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.6rem;
    color: #A29EBE;
}


/* 6. Default Inner Pages Styling */
.default-page-layout {
    padding: var(--spacing-md) 0 var(--spacing-lg);
}

.archive-header-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, #150640 100%);
    padding: var(--spacing-md) 0;
    color: var(--color-white);
    text-align: center;
}

.archive-title {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.archive-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}


/* 7. Responsive Styles & Breakpoints */
@media (max-width: 1100px) {
    .main-navigation li {
        margin: 0 10px;
    }
    .main-navigation a {
        font-size: 0.85rem;
    }
    .header-action-contact {
        display: none; /* Hide phone details on laptops to prevent overlapping */
    }
    .action-divider {
        display: none;
    }
    .search-filter-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-submit-btn {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .parallax-banner {
        background-attachment: scroll;
    }
    .hero-slide-main-title {
        font-size: 3.5rem;
    }
    .mosaic-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mosaic-img-left-bottom,
    .mosaic-img-right-bottom {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .mosaic-title {
        font-size: 2.1rem;
    }
    .tours-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-section-grid {
        grid-template-columns: 1fr;
    }
    .footer-widgets-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .app-download-grid {
        grid-template-columns: 1fr;
    }
    .app-mockups-right {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Responsive Navigation Menu overlay */
    .menu-toggle-hamburger {
        display: flex;
        margin-left: 15px;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-dark);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-in-out;
    }
    
    .main-navigation.active {
        max-height: 400px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .main-navigation li {
        margin: 10px 0;
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        padding: 5px 0;
    }

    .transparent-header {
        padding: 15px 0;
    }

    .hero-slider-section.style-tourex {
        height: 80vh;
        min-height: 600px;
    }
    .hero-slide-main-title {
        font-size: 2.2rem;
        border-bottom-width: 3px;
        padding-bottom: 8px;
        margin-bottom: 1.2rem;
    }
    .hero-slide-summary-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    .hero-slide-price-tag {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    .hero-slide-price-tag .price-value {
        font-size: 1.5rem;
    }
    
    .search-filter-section.style-tourex {
        margin-top: -110px;
    }
    .search-filter-wrapper {
        padding: 1.5rem;
    }
    .search-filter-form {
        grid-template-columns: 1fr;
    }
    .search-submit-btn {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2rem;
    }
    .parallax-banner-content h2 {
        font-size: 2.5rem;
    }
    .header-action-lang,
    .btn-login {
        display: none; /* Hide secondary elements on mobile */
    }
    
    .hero-slider-nav {
        display: none; /* Hide slider arrows on mobile */
    }

    .mosaic-intro-section {
        padding: 60px 0 50px 0;
    }
    .mosaic-title {
        font-size: 1.8rem;
    }
    .mosaic-desc {
        font-size: 0.92rem;
        margin-bottom: 25px;
    }
    .mosaic-col {
        gap: 20px;
    }

    .tours-section {
        padding: 60px 0;
    }
    .tours-grid-three {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .tour-card-img-wrapper {
        height: 200px;
    }
    .graphic-balloon {
        width: 80px;
        left: -10px;
        bottom: 20px;
    }
    .graphic-plane-pyramid {
        width: 190px;
        right: -15px;
        top: 20px;
    }

    /* Why Choose Us Mobile Overrides */
    .why-choose-us-section {
        padding: 60px 0;
    }
    .why-section-grid {
        gap: 40px;
    }
    .why-features-stack {
        gap: 20px;
        margin-bottom: 30px;
    }
    .why-feature-item {
        gap: 15px;
    }
    .why-feature-icon {
        width: 48px;
        height: 48px;
    }
    .why-feature-icon svg {
        width: 22px;
        height: 22px;
    }
    .why-feature-title {
        font-size: 1.1rem;
    }
    .why-feature-desc {
        font-size: 0.88rem;
    }
    .why-collage-right {
        height: 380px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .collage-bg-image {
        height: 320px;
        right: 25px;
        width: 80%;
    }
    .collage-fg-image {
        height: 210px;
        width: 60%;
        border-width: 4px;
        top: 40px;
    }
    .why-compass-decor {
        width: 90px;
        top: -20px;
    }
    .vertical-travel-watermark {
        font-size: 3.5rem;
        right: -30px;
    }
    .why-bg-map {
        width: 240px;
        opacity: 0.45;
    }
}

@media (max-width: 480px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    .blog-small-card {
        flex-direction: column;
    }
    .blog-small-img {
        width: 100%;
        height: 180px;
    }
}

/* ==========================================================================
   ABOUT & CONTACT PAGE TEMPLATES
   ========================================================================== */

/* 1. Common Page Header Banner */
.page-header-banner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 20px;
}

.page-header-banner .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-breadcrumbs a {
    color: #A29EBE;
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-breadcrumbs a:hover {
    color: var(--color-white);
}

.breadcrumb-separator {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--color-white);
}

/* 2. About Page Layout */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead-desc {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-highlight-box {
    margin-top: 30px;
    padding: 25px 30px;
    background: var(--color-light-bg);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
}

.highlight-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.highlight-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

/* About Collage */
.about-story-right {
    position: relative;
    padding-bottom: 50px;
}

.about-story-watermark {
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(11, 2, 35, 0.045);
    font-family: 'Outfit', sans-serif;
    -webkit-text-stroke: 1.5px rgba(11, 2, 35, 0.08);
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.about-collage-bg {
    width: 85%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-collage-bg img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-collage-fg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 6px solid var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-collage-fg img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* About Stats Counter Section */
.about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #170747 100%);
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 1.05rem;
    color: #A29EBE;
    font-weight: 500;
}

/* Core Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.value-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 2, 35, 0.04);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
    will-change: transform, box-shadow;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 72, 17, 0.08);
    border-color: rgba(255, 72, 17, 0.2);
}

.value-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background: var(--color-light-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all var(--transition-fast);
}

.value-icon-box svg {
    width: 32px;
    height: 32px;
}

.value-card:hover .value-icon-box {
    background: var(--color-accent);
    color: var(--color-white);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About Team Section */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.team-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 2, 35, 0.03);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(11, 2, 35, 0.08);
}

.team-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.08);
}

.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 2, 35, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-social-overlay a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.team-social-overlay a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.15);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.team-name {
    font-size: 1.35rem;
    color: var(--color-dark);
    margin: 0;
}

/* About CTA Section */
.about-cta-banner {
    padding: 85px 0;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.cta-banner-content h2 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: #A29EBE;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Contact Page Layout */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.form-header-box, .info-header-box {
    margin-bottom: 30px;
}

.form-header-box p, .info-header-box p {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Contact Premium Form styling */
.contact-form-container {
    background: var(--color-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(11, 2, 35, 0.04);
    border: 1px solid var(--color-border);
}

.contact-premium-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-premium-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-premium-form .req {
    color: var(--color-accent);
}

.contact-premium-form .input-wrapper {
    position: relative;
}

.contact-premium-form input,
.contact-premium-form select,
.contact-premium-form textarea {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--color-dark);
    background: var(--color-light-bg);
    transition: all var(--transition-fast);
}

.contact-premium-form textarea {
    resize: none;
}

.contact-premium-form input:focus,
.contact-premium-form select:focus,
.contact-premium-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.1);
}

.contact-premium-form .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #928DA8;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.contact-premium-form .text-area-icon {
    top: 25px;
}

.contact-premium-form input:focus + .input-icon,
.contact-premium-form select:focus + .input-icon,
.contact-premium-form textarea:focus + .input-icon {
    color: var(--color-primary);
}

.contact-premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-premium-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    justify-content: center;
}

.submit-icon {
    margin-left: 8px;
    font-size: 0.95rem;
}

/* Success Notice Alert Card */
.form-success-alert {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease;
}

.form-success-alert .alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2E7D32;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-success-alert .alert-icon svg {
    width: 24px;
    height: 24px;
}

.form-success-alert .alert-content h3 {
    margin: 0 0 8px 0;
    color: #1B5E20;
    font-size: 1.4rem;
}

.form-success-alert .alert-content p {
    margin: 0;
    color: #2E7D32;
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Details */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-container .contact-card {
    background: var(--color-white);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    will-change: transform, box-shadow;
}

.contact-info-container .interactive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 72, 17, 0.06);
    border-color: rgba(255, 72, 17, 0.2);
}

.contact-info-container .card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--color-light-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-info-container .interactive-card:hover .card-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.contact-info-container .card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-container .card-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-info-container .card-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-social-row {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.social-title {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.social-links-wrap {
    display: flex;
    gap: 15px;
}

.social-links-wrap a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-light-bg);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 1px solid var(--color-border);
}

.social-links-wrap a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* Map frame section styling */
.contact-map-section {
    padding-bottom: 80px; /* gap below map before footer */
}

.contact-map-section .map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 45px rgba(11, 2, 35, 0.08);
    border: 6px solid var(--color-white);
    line-height: 0;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(0.2) contrast(1.05);
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-bottom: 50px;
    }
    .contact-map-section .map-wrapper {
        border-width: 4px;
        border-radius: 12px;
    }
    .contact-map-section iframe {
        height: 300px; /* responsive height on mobile */
    }
}

/* 4. Responsive Queries */
@media (max-width: 992px) {
    .about-story-grid, .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story-right {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .about-values-grid, .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info-container {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-header-banner {
        padding: 65px 0;
    }
    .page-header-banner .page-title {
        font-size: 2.6rem;
    }
    .about-values-grid, .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .contact-premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cta-banner-content h2 {
        font-size: 2.1rem;
    }
    
    /* Responsive Contact Cards overrides */
    .contact-info-container .contact-card {
        padding: 15px 20px;
        gap: 15px;
    }
    .contact-info-container .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
    }
    .contact-info-container .card-text {
        flex: 1;
        min-width: 0; /* allows flexbox item text to wrap */
    }
    .contact-info-container .card-value {
        font-size: 0.95rem;
        word-break: break-all; /* wraps long email strings */
        overflow-wrap: break-word;
    }
    .contact-social-row {
        margin-top: 30px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Pagination Styling for page templates */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    position: relative;
    z-index: 20;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.pagination-wrapper .prev,
.pagination-wrapper .next {
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
}

/* ==========================================================================
   Activities Gallery & Lightbox Styles
   ========================================================================== */

/* 1. Category Filter Navigation */
.activities-filter-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: calc(var(--spacing-md) * -0.5);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-medium);
    outline: none;
}

.filter-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(94, 23, 235, 0.05);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

/* 2. Gallery Grid Layout */
.activities-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    transition: opacity var(--transition-smooth);
}

.activity-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(11, 2, 35, 0.05);
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), opacity 0.4s ease, visibility 0.4s ease;
    will-change: transform, box-shadow;
}

.activity-gallery-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.activity-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 2, 35, 0.12);
}

/* Card Image Wrapper */
.activity-card-img-wrapper {
    width: 100%;
    height: 100%;
}

.activity-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.activity-gallery-card:hover .activity-card-img-wrapper img {
    transform: scale(1.08);
}

/* Hover Overlay */
.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 2, 35, 0.95) 0%,
        rgba(11, 2, 35, 0.6) 50%,
        rgba(11, 2, 35, 0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.activity-gallery-card:hover .activity-card-overlay {
    opacity: 1;
}

/* Card Content Animation */
.activity-card-content {
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.activity-gallery-card:hover .activity-card-content {
    transform: translateY(0);
}

.activity-card-category {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.activity-card-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.activity-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.activity-card-action {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-gallery-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.activity-gallery-card:hover .view-gallery-icon {
    color: var(--color-accent);
}

/* 3. Fullscreen Lightbox Modal */
.activities-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: rgba(11, 2, 35, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.activities-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

/* Content Container */
.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    width: 900px;
    display: flex;
    flex-direction: column;
    background-color: var(--color-dark-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.activities-lightbox.active .lightbox-content-wrapper {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox Image Box */
.lightbox-img-box {
    width: 100%;
    height: 480px;
    background-color: #050112;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Caption Block */
.lightbox-caption-box {
    padding: 25px 30px;
    background-color: var(--color-dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-category {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.lightbox-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.lightbox-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Close & Arrow Buttons */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition-fast), color var(--transition-fast);
    z-index: 100000;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    z-index: 100000;
}

.lightbox-arrow:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .activities-filter-nav {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.88rem;
    }
    .lightbox-content-wrapper {
        width: 95%;
    }
    .lightbox-img-box {
        height: 320px;
    }
    .lightbox-arrow {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
        width: 45px;
        height: 45px;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.2rem;
    }
    .lightbox-caption-box {
        padding: 20px;
    }
    .lightbox-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   PREMIUM SINGLE TOUR / PRODUCT PAGE STYLES
   ========================================================================== */

.tour-detail-page-wrapper {
    background-color: var(--color-white);
    padding-bottom: var(--spacing-lg);
}

/* Page Header Section (2026 Style) */
.tour-detail-header-section {
    padding: 100px 0 25px 0;
    background-color: #FAF6F0;
    background-image: radial-gradient(circle at 85% 15%, rgba(255, 230, 212, 0.45) 0%, rgba(244, 237, 248, 0.5) 60%, rgba(250, 246, 240, 0.8) 100%);
    border-bottom: 1px solid var(--color-border);
}

.tour-detail-header-section .page-breadcrumbs {
    font-size: 0.88rem;
    color: var(--color-text-body);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-detail-header-section .page-breadcrumbs a {
    color: var(--color-text-body);
}

.tour-detail-header-section .page-breadcrumbs a:hover {
    color: var(--color-primary);
}

.tour-detail-header-section .breadcrumb-separator {
    font-size: 0.7rem;
    opacity: 0.6;
}

.tour-header-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.tour-header-title-col {
    flex: 1;
    min-width: 300px;
}

.tour-header-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tour-detail-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--color-white);
    display: inline-block;
}

.tour-detail-badge.sale { background-color: var(--color-accent); }
.tour-detail-badge.featured { background-color: var(--color-primary); }
.tour-detail-badge.best-seller { background-color: #27ae60; }
.tour-detail-badge.adventure-plus { background-color: #f39c12; }

.tour-detail-title-new {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.tour-header-meta-bar {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.93rem;
    color: var(--color-text-body);
}

.tour-header-meta-bar .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-header-meta-bar .meta-item i {
    color: var(--color-primary);
}

.tour-header-meta-bar .stars-color i {
    color: var(--color-star);
    font-size: 0.85rem;
}

.tour-header-meta-bar strong {
    color: var(--color-text-dark);
}

.tour-header-actions-col {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.btn-tour-action {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-tour-action:hover {
    background: var(--color-light-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Collage Gallery Section */
.tour-gallery-collage-section {
    padding: 30px 0 0 0;
    background-color: var(--color-white);
}

.tour-collage-gallery {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 16px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.collage-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.collage-item:hover .collage-img {
    transform: scale(1.04);
}

.collage-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.collage-item.side-item {
    height: 100%;
}

.view-all-photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 5;
}

.view-all-photos-btn:hover {
    transform: translateY(-2px);
    background-color: var(--color-light-bg);
    border-color: var(--color-text-dark);
    box-shadow: var(--shadow-lg);
}

/* Sticky Sub-Navigation Bar */
.tour-subnav-bar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 99;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.tour-subnav-links {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.subnav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-body);
    padding: 18px 0;
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.subnav-link:hover,
.subnav-link.active {
    color: var(--color-primary);
}

.subnav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    transform-origin: bottom center;
}

.subnav-link.active::after {
    transform: scaleX(1);
}

/* Main Content Grid */
.tour-detail-container {
    display: grid;
    grid-template-columns: 1fr 385px;
    gap: 45px;
    max-width: 1240px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.tour-detail-main-content {
    min-width: 0; /* Prevent grid blowout */
}

/* Anchor spacing fixes for sticky headers */
#overview, #highlights, #itinerary, #inclusions, #reviews {
    scroll-margin-top: 100px;
}

/* Highlights Grid */
.tour-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: radial-gradient(circle at 100% 100%, rgba(248, 246, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(94, 23, 235, 0.2);
}

.highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(94, 23, 235, 0.07);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-body);
    font-weight: 600;
}

.highlight-value {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--color-text-dark);
    margin-top: 2px;
}

/* Description block */
.tour-content-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.tour-content-text p:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin: 0 0 25px 0;
}

.section-block-spacing {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

/* Meet Your Guide Bio (2026 Style) */
.meet-your-guide-card {
    display: flex;
    gap: 25px;
    background: radial-gradient(circle at 100% 0%, rgba(255, 230, 212, 0.15) 0%, rgba(244, 237, 248, 0.2) 60%, rgba(250, 246, 240, 0.5) 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.guide-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.guide-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.badge-certified {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(94, 23, 235, 0.25);
    display: flex;
    align-items: center;
    gap: 4px;
}

.guide-details {
    flex-grow: 1;
}

.guide-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-accent);
    font-weight: 700;
}

.guide-name {
    font-size: 1.25rem;
    margin: 2px 0 8px 0;
    color: var(--color-text-dark);
}

.guide-bio {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-body);
    margin: 0 0 12px 0;
}

.guide-meta {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--color-text-dark);
    font-weight: 600;
    flex-wrap: wrap;
}

.guide-meta-item i {
    color: var(--color-primary);
    margin-right: 5px;
}

/* Itinerary Timeline Section */
.itinerary-timeline {
    position: relative;
    padding-left: 24px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-accent) 100%);
}

.itinerary-day-card {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.itinerary-day-card::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 23px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: 2.5px solid var(--color-white);
    transition: all var(--transition-fast);
    z-index: 2;
}

.itinerary-day-card.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.itinerary-day-card.active::before {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 5px rgba(94, 23, 235, 0.15);
}

.itinerary-header {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 12px;
    transition: background-color var(--transition-fast);
    user-select: none;
}

.itinerary-header:hover {
    background-color: var(--color-light-bg);
}

.itinerary-day-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 6px;
    margin-right: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(94, 23, 235, 0.15);
}

.itinerary-title {
    font-size: 1.08rem;
    font-weight: 750;
    color: var(--color-text-dark);
    margin: 0;
    flex-grow: 1;
}

.itinerary-toggle-icon {
    font-size: 0.85rem;
    color: var(--color-text-body);
    transition: transform var(--transition-medium);
    margin-left: 10px;
}

.itinerary-day-card.active .itinerary-toggle-icon {
    transform: rotate(180deg);
}

.itinerary-content {
    padding: 0 22px 22px 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-body);
}

.itinerary-bullet-list {
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
}

.itinerary-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

.itinerary-bullet-list li:last-child {
    margin-bottom: 0;
}

.itinerary-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    top: -2px;
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
}

/* Inclusions & Exclusions styling */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inc-column {
    background-color: rgba(46, 204, 113, 0.02);
    border: 1px solid rgba(46, 204, 113, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.exc-column {
    background-color: rgba(231, 76, 60, 0.02);
    border: 1px solid rgba(231, 76, 60, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.inc-exc-grid .column-title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--color-text-dark);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inc-list li, .exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-body);
}

.inc-list li i {
    color: #2ecc71;
    margin-top: 4px;
}

.exc-list li i {
    color: #e74c3c;
    margin-top: 4px;
}

/* Reviews Panel */
.reviews-summary-dashboard {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 35px;
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
}

.reviews-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-border);
    padding-right: 35px;
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.score-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 6px 0;
}

.reviews-score-box .rating-stars {
    color: var(--color-star);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.score-meta-count {
    font-size: 0.8rem;
    color: var(--color-text-body);
}

.reviews-rating-breakdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.88rem;
}

.breakdown-row .star-label {
    width: 55px;
    color: var(--color-text-dark);
    font-weight: 600;
}

.breakdown-row .progress-bar-wrap {
    flex-grow: 1;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-row .progress-bar-fill {
    height: 100%;
    background-color: var(--color-star);
    border-radius: 4px;
}

.breakdown-row .percentage-label {
    width: 35px;
    text-align: right;
    color: var(--color-text-body);
    font-weight: 500;
}

/* Reviews List */
.review-entry-card {
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
}

.review-entry-card:first-child {
    padding-top: 0;
}

.review-entry-card:last-child {
    border-bottom: none;
}

.review-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.reviewer-details {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 750;
    color: var(--color-text-dark);
    margin: 0;
}

.review-date {
    font-size: 0.78rem;
    color: var(--color-text-body);
    margin-top: 2px;
    display: block;
}

.entry-rating-stars {
    color: var(--color-star);
    font-size: 0.85rem;
}

.review-comment {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-body);
    margin: 0;
    font-style: italic;
}

/* Sidebar Styling & Sticky Booking Card */
.tour-detail-sidebar {
    min-width: 0;
}

.sidebar-sticky-inner {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tour-sidebar-booking-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
}

.booking-price-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.price-desc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-body);
    font-weight: 700;
}

.price-value-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}

.main-price-display {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.main-price-display del {
    font-size: 1.35rem;
    color: var(--color-text-body);
    opacity: 0.6;
    font-weight: 400;
    margin-right: 8px;
}

.price-suffix-label {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-weight: 500;
}

.booking-guarantee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.booking-status-chip {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.booking-status-chip.available {
    background-color: rgba(46, 204, 113, 0.08);
    color: #27ae60;
}

.booking-status-chip.available .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2ecc71;
    display: inline-block;
    animation: pulse-green 1.6s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.booking-price-guarantee {
    font-size: 0.78rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.booking-price-guarantee i {
    color: var(--color-accent);
}

/* Premium Booking Form Styles */
.custom-booking-fields-container {
    text-align: left;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
}

.custom-field-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.required-star {
    color: var(--color-accent);
    margin-left: 2px;
}

.booking-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-input-wrap .input-icon {
    position: absolute;
    left: 12px;
    color: #A29EBE;
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.booking-input-field {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 500;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

.booking-input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.08);
    background-color: var(--color-white);
}

.booking-input-field:focus + .input-icon,
.booking-input-wrap:focus-within .input-icon {
    color: var(--color-primary);
}

/* Custom Calendar Icon fix for Date field */
.booking-date-input {
    cursor: pointer;
}

/* Stepper Layout updates */
.steppers-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qty-selector-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qty-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.quantity-input-stepper {
    display: flex;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    height: 34px;
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
}

.quantity-input-stepper:focus-within {
    border-color: var(--color-primary);
}

.stepper-btn {
    width: 34px;
    height: 100%;
    border: none;
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.stepper-btn:hover {
    background-color: var(--color-border);
    color: var(--color-primary);
}

.qty-input {
    flex-grow: 1;
    width: 26px;
    height: 100%;
    border: none;
    border-left: 1.5px solid var(--color-border);
    border-right: 1.5px solid var(--color-border);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--color-text-dark);
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Live Calculator Premium styles */
.live-price-calculator {
    display: none;
    margin: 14px 0;
    background: radial-gradient(circle at 100% 100%, rgba(94, 23, 235, 0.04) 0%, rgba(255, 72, 17, 0.02) 100%);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px dashed rgba(94, 23, 235, 0.35);
}

.price-calc-title {
    font-size: 0.82rem;
    margin: 0 0 12px 0;
    color: var(--color-text-dark);
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-calc-title i {
    color: var(--color-primary);
}

.price-breakdown-list {
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    color: var(--color-text-body);
    list-style: none;
}

.price-breakdown-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-calc-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
    margin-top: 5px;
}

.calc-total-value {
    font-size: 1.15rem;
}

/* Booking trust list */
.booking-trust-badges {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-trust-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--color-text-body);
    font-weight: 600;
}

.booking-trust-badges .badge-item i {
    color: var(--color-primary);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

/* Sidebar Inquiry Card */
.tour-sidebar-inquiry-card {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tour-sidebar-inquiry-card .inquiry-title {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--color-text-dark);
    margin: 0 0 8px 0;
}

.tour-sidebar-inquiry-card .inquiry-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-text-body);
    margin: 0 0 20px 0;
}

.inquiry-form-element .form-group-item {
    margin-bottom: 12px;
}

.inquiry-form-element input,
.inquiry-form-element textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

.inquiry-form-element input:focus,
.inquiry-form-element textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.08);
}

.inquiry-submit-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Success overlays */
.tour-sidebar-inquiry-card .success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 30px;
    text-align: center;
}

.tour-sidebar-inquiry-card .success-content i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 15px;
    display: block;
}

.tour-sidebar-inquiry-card .success-content h5 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin: 0 0 8px 0;
}

.tour-sidebar-inquiry-card .success-content p {
    font-size: 0.85rem;
    color: var(--color-text-body);
    margin: 0;
}

/* Responsive columns collapse rules */
@media (max-width: 991px) {
    .tour-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tour-collage-gallery {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .tour-collage-gallery {
        grid-template-columns: 1fr;
        height: 280px;
    }
    .collage-side-grid {
        display: none; /* Hide supplementary images on very tiny mobile layouts */
    }
    .tour-header-main-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .tour-header-actions-col {
        width: 100%;
        margin-top: 10px;
    }
    .btn-tour-action {
        flex: 1;
        justify-content: center;
    }
    .tour-subnav-links {
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none; /* Hide scrollbar for clean layout */
    }
    .tour-subnav-links::-webkit-scrollbar {
        display: none;
    }
    .subnav-link {
        padding: 15px 5px;
    }
}


/* Related Products Grid spacing */
.tour-detail-page-wrapper section.related {
    max-width: 1240px;
    margin: 40px auto 0 auto;
    padding: 40px 20px 0 20px;
    border-top: 1px solid var(--color-border);
}

.tour-detail-page-wrapper section.related > h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin: 0 0 30px 0;
}

.tour-detail-page-wrapper section.related ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */

@media (max-width: 991px) {
    .tour-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tour-detail-sidebar {
        position: static;
    }
    .sidebar-sticky-inner {
        position: static;
    }
    .gallery-featured-img {
        height: 400px;
    }
    .tour-detail-title {
        font-size: 2.3rem;
    }
    .tour-detail-page-wrapper section.related ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tour-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reviews-summary-dashboard {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    .reviews-score-box {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 25px;
    }
    .tour-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tour-detail-metadata-bar {
        gap: 15px;
        font-size: 0.88rem;
    }
    .tour-gallery-thumbnails {
        gap: 10px;
    }
    .gallery-thumb-item {
        height: 65px;
    }
    .gallery-featured-img {
        height: 280px;
    }
    .tour-highlights-grid {
        grid-template-columns: 1fr;
    }
    .highlight-card {
        padding: 15px;
    }
    .inc-column, .exc-column {
        padding: 20px;
    }
    .tour-detail-page-wrapper section.related ul.products {
        grid-template-columns: 1fr;
    }
}

/* Tour Detail Banner Layout overrides */
.tour-detail-header-banner {
    padding: 180px 0 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center center;
    position: relative;
    color: var(--color-white);
}

.tour-detail-header-banner .tour-banner-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 0.98rem;
    font-weight: 500;
}

.tour-detail-header-banner .tour-banner-meta-bar .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.tour-detail-header-banner .tour-banner-meta-bar .meta-item i {
    color: var(--color-accent);
}

.tour-detail-header-banner .tour-banner-meta-bar .stars-color i {
    color: var(--color-star);
    font-size: 0.88rem;
    margin: 0 1px;
}

.tour-detail-header-banner .tour-banner-meta-bar .rating-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .tour-detail-header-banner {
        padding: 150px 0 80px 0;
    }
    .tour-detail-header-banner .tour-banner-meta-bar {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tour-detail-header-banner {
        padding: 130px 0 70px 0;
    }
    .tour-detail-header-banner .tour-banner-meta-bar {
        gap: 15px;
        font-size: 0.88rem;
        flex-direction: column;
    }
}
/* WhatsApp Button Custom Design System */
.whatsapp-booking-submit.btn-whatsapp {
    background-color: #25D366 !important;
    color: var(--color-white) !important;
    transition: all var(--transition-fast) !important;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.4) !important;
    padding: 11px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    border: none !important;
    cursor: pointer !important;
}

.whatsapp-booking-submit.btn-whatsapp:hover {
    background-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(18, 140, 126, 0.5) !important;
}

/* Solid dark header on single product page */
.single-product .site-header {
    position: relative !important;
    background-color: var(--color-dark) !important;
    padding: 20px 0 !important;
    border-bottom: none !important;
}

.single-product .tour-detail-header-section {
    padding-top: 35px !important;
}

.tour-detail-header-section .page-breadcrumbs a {
    color: var(--color-text-body) !important;
}

.tour-detail-header-section .page-breadcrumbs a:hover {
    color: var(--color-primary) !important;
}

.tour-detail-header-section .page-breadcrumbs .breadcrumb-current {
    color: var(--color-text-dark) !important;
    font-weight: 500;
}

.tour-detail-header-section .page-breadcrumbs .breadcrumb-separator {
    color: var(--color-text-body) !important;
    opacity: 0.5;
    font-size: 0.75rem;
}
