/* Travel Website Typography & Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.adobe.com/fonts/rotunda-variable');
:root {
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'rotunda-variable', sans-serif;
 
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem; 
    /* Colors */  
    --success-color: #34C759;
    --warning-color: #F6921E;
    --error-color: #FF3B30; 
     --primary-color: #1A4B89;
    --secondary-color:  #F6921E;
    --text-muted: #9CA3AF;
    --background-primary: #FFFFFF;
    --background-secondary: #F8FAFC;
    --background-tertiary: #F1F5F9;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9; 
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #10b981;
 
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.overflow-hidden {
    overflow: visible !important;
}
.tour-page {
  overflow: visible !important; /* 👈 */
}
.section-nav {
  align-self: flex-start; /* helps in flex context */
}
.nav-wrapper {
  display: block;
}
/* Tour Page Typography & Base Styles */
.tour-page {
    font-family: var(--hsj-ff-body);
     font-variation-settings: 'wght' 400;
    background: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
.tour-page h1,
.tour-page .h1 {
    font-family: var(--hsj-ff-outfit);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.tour-page h2,
.tour-page .h2 {
    font-family: var(--hsj-ff-outfit);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #1a4b89;
    margin-top:  var(--space-1);
    margin-bottom: var(--space-3);
}

.tour-page h3,
.tour-page .h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.tour-page h4,
.tour-page .h4 {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.tour-page h5,
.tour-page .h5 {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.tour-page h6,
.tour-page .h6 {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.tour-page p {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.tour-page .text-sm {
    font-size: var(--text-sm);
    line-height: 1.5;
}

.tour-page .text-lg {
    font-size: var(--text-lg);
    line-height: 1.6;
}

.tour-page .font-medium {
    font-weight: 500;
}

.tour-page .font-semibold {
    font-weight: 600;
}

.tour-page .font-bold {
    font-weight: 700;
}

.tour-page * {
    box-sizing: border-box;
}

.tour-page .container {  
    /* padding: 0 24px; */
}

/* Navigation */
.tour-page .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s var(--transition);
}

.tour-page .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.tour-page .nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.tour-page .nav-links {
    display: flex;
    gap: 32px;
}

.tour-page .nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s var(--transition);
}

.tour-page .nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.tour-page .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 60px;
    padding: 10px 6px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-page .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-page .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .tour-page .hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
} */

.tour-page .hero-stats {
    display: flex;
    gap: 40px;
}

.tour-page .stat {
    text-align: center;
}

.tour-page .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.tour-page .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.tour-page .hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

.tour-page .hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s var(--transition);
}

.tour-page .hero-image:hover img {
    transform: scale(1.05);
}

/* Section Navigation */
.tour-page .section-nav {
    position: sticky;
    top: 0px;
    background: rgba(251, 251, 253, 0.9);  
    /* backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 999; 
}

.tour-page .section-nav-container { 
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tour-page .section-nav-container::-webkit-scrollbar {
    display: none;
}

.tour-page .section-nav-item {
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}

.tour-page .section-nav-item:hover,
.tour-page .section-nav-item.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Main Content */
.tour-page .main-content {
    padding: 10px 0;
}

.tour-page .content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.tour-page .content-main {
    min-width: 0;
}

.tour-page .content-section {
    /* margin-bottom: 60px; */
    scroll-margin-top: 140px;
}

.tour-page .overview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-page .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tour-page .highlight-item {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-large);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--transition);
}

.tour-page .highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.tour-page .highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.tour-page .highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tour-page .highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Section Headers */
.tour-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.tour-page .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.tour-page .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Overview Section */
.tour-page .overview-text {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.tour-page .overview-text p {
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.tour-page .overview-text h2,
.tour-page .overview-text h3,
.tour-page .overview-text h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-8) 0 var(--space-4) 0;
    line-height: 1.3;
}

.tour-page .overview-text h2 {
    font-size: var(--text-2xl);
}

.tour-page .overview-text h3 {
    font-size: var(--text-xl);
}

.tour-page .overview-text h4 {
    font-size: var(--text-lg);
}
 

.tour-page .overview-text strong,
.tour-page .overview-text b {
    font-weight: 600;
    color: var(--text-primary);
}

.tour-page .overview-text em,
.tour-page .overview-text i {
    font-style: italic;
    color: var(--text-secondary);
}

.tour-page .overview-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: var(--space-4);
    margin: var(--space-2) 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--background-secondary);
   padding: var(--space-3) var(--space-2); 
    border-radius: var(--radius-md);
}
.calendarWidget__widgetContainer { 
    width: 100% !important;
}
/* Flight Schedule Section */
.tour-page .flight-schedule {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
 
}

.tour-page .schedule-info {
    margin-bottom: 32px;
    text-align: center;
}

.tour-page .schedule-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tour-page .schedule-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, #5856d6 100%);
    border-radius: 2px;
}

.tour-page .schedule-info p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tour-page .time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tour-page .time-slot {
    background: var(--background-secondary);
    padding: 20px;
    border-radius: var(--radius-medium);
    text-align: center;
    transition: all 0.3s var(--transition);
}

.tour-page .time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.tour-page .time-slot .time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tour-page .time-slot .status {
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: var(--radius-small);
    margin-bottom: 8px;
    display: inline-block;
}

.tour-page .time-slot .status.available {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
}

.tour-page .time-slot .status.limited {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

.tour-page .time-slot .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Gallery Section */
.tour-page .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    gap: 16px;
}

.tour-page .gallery-item {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.tour-page .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.tour-page .gallery-item.tall {
    grid-row: span 2;
}

.tour-page .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.tour-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s var(--transition);
}

.tour-page .gallery-item:hover img {
    transform: scale(1.05);
}

.tour-page .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s var(--transition);
}

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

.tour-page .overlay-content {
    margin-top: auto;
}

.tour-page .overlay-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-page .overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-page .gallery-actions {
    display: flex;
    gap: 8px;
    align-self: flex-end;
}

.tour-page .gallery-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
    font-size: 0.9rem;
}

.tour-page .gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.tour-page .share-dropdown {
    position: relative;
}

.tour-page .share-menu {
    position: absolute;
    top: -10px;
    right: 50px;
    background: var(--surface);
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 32px var(--shadow-heavy);
    border: 1px solid var(--border-light);
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition);
    z-index: 1000;
}

.tour-page .share-dropdown:hover .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tour-page .share-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-small);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    transition: all 0.2s var(--transition);
}

.tour-page .share-item:hover {
    background: var(--background-secondary);
}

.tour-page .share-item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.tour-page .share-item.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    color: #1DA1F2;
}

.tour-page .share-item.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.tour-page .share-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.tour-page .share-item.copy:hover {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-blue);
}

.tour-page .share-item i {
    width: 16px;
    text-align: center;
}

/* Apple-style Detailed Itinerary */
.tour-page .itinerary-section {
    /* margin: 60px 0; */
    /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%); */
    /* padding: 20px;   */
    /* border-radius: 20px; */
}

.tour-page .itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.tour-page .itinerary-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.tour-page .itinerary-controls {
    display: flex;
    gap: var(--space-3);
}

.tour-page .control-button {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    height:35px;
}

.tour-page .control-button:hover {
    background: var(--background-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.tour-page .control-button i {
    font-size: var(--text-sm);
}

.tour-page .itinerary-days {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.tour-page .day-item {
    background: var(--background-primary); 
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       border: 0;
}

.tour-page .day-item:hover {
    /* border-color: var(--border-light); */
    /* box-shadow: var(--shadow-md); */
}

.tour-page .day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: var(--space-6); */
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-page .day-header:hover {
    background: var(--background-secondary);
}

.tour-page .day-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
}

.tour-page .day-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1A4B89 0%, #1565c0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif; 
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 101, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.tour-page .day-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    border-radius: 50%;
}

.tour-page .day-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.tour-page .day-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.tour-page .day-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    /* margin-top: 8px; */
}

.tour-page .day-meta-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px; 
    padding:5px 10px 5px 0px;  
    transition: all 0.2s ease;
}

.tour-page .day-meta-item:hover {
    background: var(--hsj-theme-primary, #1A4B89);
    color: white;
    border-color: var(--hsj-theme-primary, #1A4B89);
}

.tour-page .day-meta-item:hover i {
    color: white;
}

.tour-page .day-meta-item i {
    color: var(--hsj-theme-secondary, #1A4B89);
    font-size: 14px;
}

/* Bootstrap Accordion Styles */
.tour-page .accordion-button {
    background: var(--background-primary); 
    padding: var(--space-2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
    overflow: hidden;
}

.tour-page .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 102, 184, 0.05) 0%, rgba(45, 95, 111, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-page .accordion-button:hover::before {
    opacity: 1;
}

.tour-page .accordion-button:hover { 
    transform: translateY(-2px); 
}

.tour-page .accordion-button:not(.collapsed) {
    background: var(--background-primary);  
}

.tour-page .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(11, 102, 184, 0.25);
   
}
/* 
  .tour-page .accordion-body {
    padding: var(--space-6);
    background: var(--background-secondary);
    border-bottom: 1px solid var(--border-color);
    border-top: none; 
}   */

/* Remove custom day-toggle styles since we're using Bootstrap accordion */
.tour-page .day-toggle {
    display: none !important;
}

.tour-page .day-details { 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* background: var(--background-secondary); */
    /* border-top: 1px solid var(--border-color); */
}

.tour-page .day-item.expanded .day-details {
    max-height: 1000px;
}

.tour-page .day-description {
    padding: var(--space-6);
}

.tour-page .day-description-text {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    /* margin-bottom: var(--space-6); */
}

.tour-page .day-description-text p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.tour-page .day-description-text h3,
.tour-page .day-description-text h4,
.tour-page .day-description-text h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-6) 0 var(--space-3) 0;
    line-height: 1.3;
}

.tour-page .day-description-text ul,
.tour-page .day-description-text ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.tour-page .day-description-text li {
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
    line-height: 1.6;
}

.tour-page .day-description-text strong,
.tour-page .day-description-text b {
    font-weight: 600;
    color: var(--text-primary);
}

.tour-page .day-description-text h4,
.tour-page .day-description-text h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-6) 0 var(--space-3) 0;
}

.tour-page .day-highlights {
    background: #ffffff;
    border-radius: 12px;
    /* padding: 24px;
    margin-bottom: 24px; */
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-page .highlights-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #feb119 0%, #d48f06 100%);
    color: white;
    border-radius: 12px 12px 0 0; 
}

.tour-page .highlights-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.tour-page .highlights-title i {
    color: white;
}

.tour-page .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-3);
}

.tour-page .highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--background-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-page .highlight-item:hover {
    background: var(--background-primary);
    border-color: var(--primary-color);
}

.tour-page .highlight-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.tour-page .highlight-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-page .highlight-label {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-page .highlight-value {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.tour-page .day-activities {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tour-page .activities-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tour-page .activities-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.tour-page .activities-title i {
    color: #22c55e;
}

.tour-page .activities-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.tour-page .activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.tour-page .activity-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tour-page .itinerary-header {
        flex-direction: column;
        gap: var(--space-2);
        align-items: flex-start;
    }

    .tour-page .day-header {
        padding: var(--space-2);
    }

    .tour-page .day-title {
        font-size: var(--text-sm);
    }

    .tour-page .day-meta {
        gap: var(--space-2);
    }

    .tour-page .day-meta-item {
        font-size: var(--text-xs);
    }

    .tour-page .day-description {
        padding: var(--space-4);
    }

    .tour-page .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    .inclusions-title {
    font-size: 15px!important;
}
section.hsj-moments-section.mt-15.bg-white {
    margin: 0!important;
    padding: 0!important;
    width: unset!important;
}
}

/* Includes/Excludes Section */
.tour-page .includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.tour-page .includes-card,
.tour-page .excludes-card {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 10px;
    box-shadow: 0 8px 32px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.tour-page .includes-card h3,
.tour-page .excludes-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-page .includes-list,
.tour-page .excludes-list {
    list-style: none;
}

.tour-page .includes-list li,
.tour-page .excludes-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.tour-page .includes-list li:last-child,
.tour-page .excludes-list li:last-child {
    border-bottom: none;
}

/* Map Section */
.tour-page .map-container {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.tour-page .map-placeholder {
    position: relative;
}

.tour-page .map-placeholder img {
    width: 100%; 
    object-fit: cover;
}

.tour-page .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tour-page .route-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour-page .route-point {
    position: absolute;
    text-align: center;
}

.tour-page .point-marker {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.tour-page .point-label {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Equipment Section */
.tour-page .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.tour-page .equipment-category {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.tour-page .equipment-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-page .equipment-category ul {
    list-style: none;
}

.tour-page .equipment-category li {
    padding: 6px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 16px;
}

.tour-page .equipment-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Trip Info Section */
.tour-page .trip-info-container {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.tour-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tour-page .info-card {
    background: var(--background-secondary);
    border-radius: var(--radius-medium);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s var(--transition);
}

.tour-page .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.tour-page .info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tour-page .info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.tour-page .info-content p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0px;
}

.tour-page .info-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Reviews Section */
.tour-page .rating-summary {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tour-page .rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.tour-page .rating-stars {
    font-size: 1.5rem;
    color: #FFD60A;
}

.tour-page .rating-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tour-page .reviews-container { 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.tour-page .review-card {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 24px;
    box-shadow: 0 8px 32px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.tour-page .review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tour-page .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.tour-page .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-page .reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.tour-page .review-rating {
    color: #FFD60A;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.tour-page .review-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tour-page .review-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.tour-page .faq-controls {
    display: flex;
    gap: 12px;
}

.tour-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.tour-page .faq-item {
    background: var(--surface);
    border-radius: var(--radius-large);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.tour-page .faq-toggle {
    display: none;
}

.tour-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--transition);
}

.tour-page .faq-question:hover {
    background: var(--background-secondary);
}

.tour-page .faq-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s var(--transition);
}

.tour-page .faq-toggle:checked+.faq-question .faq-icon {
    transform: rotate(45deg);
}

.tour-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition);
}

.tour-page .faq-toggle:checked~.faq-answer {
    max-height: 200px;
}

.tour-page .faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sidebar */
.tour-page .content-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: fit-content;
    /* max-height: calc(100vh - 160px); */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.tour-page .content-sidebar::-webkit-scrollbar {
    width: 4px;
}

.tour-page .content-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.tour-page .content-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

.tour-page .content-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.tour-page .booking-card {
    background: var(--surface);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-light);
}

.tour-page .booking-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.tour-page .price-display {
    margin-bottom: 12px;
}

.tour-page .price-from {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
}

.tour-page .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.tour-page .price-per {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
}

.tour-page .price-note {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    padding: 6px 12px;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.tour-page .booking-form {
    padding: 24px;
}

.tour-page .form-group {
    margin-bottom: 20px;
}

.tour-page .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tour-page .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-medium);
    font-size: 1rem;
    background: var(--surface);
    color: var(--text-primary);
    transition: all 0.3s var(--transition);
}

.tour-page .form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.tour-page .passenger-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--background-secondary);
    padding: 12px;
    border-radius: var(--radius-medium);
}

.tour-page .passenger-btn {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    font-weight: 600;
    color: var(--primary-blue);
}

.tour-page .passenger-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.tour-page .passenger-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 24px;
    text-align: center;
}

.tour-page .price-breakdown {
    background: var(--background-secondary);
    padding: 16px;
    border-radius: var(--radius-medium);
    margin-bottom: 20px;
}

.tour-page .breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tour-page .breakdown-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.tour-page .book-now-btn {
    width: 100%;
    background: var(--gradient-blue);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    margin-bottom: 20px;
}

.tour-page .book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.tour-page .booking-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-page .feature-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-page .info-card-sidebar {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.tour-page .info-card-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tour-page .info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-page .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-page .info-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.tour-page .info-details {
    flex: 1;
}

.tour-page .info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.tour-page .info-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tour-page .contact-card {
    background: var(--surface);
    border-radius: var(--radius-large);
    padding: 10px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: center;
}

.tour-page .contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.tour-page .contact-card p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tour-page .contact-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.tour-page .contact-btn {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-medium);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tour-page .contact-btn.call {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.tour-page .contact-btn.call:hover {
    background: #0056CC;
}

.tour-page .contact-btn.chat {
    background: var(--background-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.tour-page .contact-btn.chat:hover {
    background: var(--border-light);
}

.tour-page .contact-info {
font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 3px;
}

/* CTA Section */
.tour-page .cta-section {
    background: var(--gradient-blue);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.tour-page .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.tour-page .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.tour-page .cta-button {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.tour-page .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tour-page .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-page .content-sidebar {
        position: static;
        order: -1;
    }

    .tour-page .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .tour-page .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    section.hsj-moments-section.mt-15.bg-white,.reviews-container {
        max-width: 1250px;
        padding: unset;
        margin: 0 0px 0 0px;
        padding-right: 0rem;
        padding-left: 1rem;
        margin-right: auto;
        margin-left: auto;
        margin-top: 0rem;
        width: 100% !important;
    }
    .tour-page .nav-links {
        display: none;
    }

    .tour-page .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 16px 40px;
        text-align: center;
    }

    .tour-page .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .tour-page .highlights-grid {
        grid-template-columns: 1fr;
    }

    .tour-page .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-page .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .tour-page .gallery-item.large,
    .tour-page .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tour-page .includes-grid {
        grid-template-columns: 1fr;
    }

    .tour-page .equipment-grid {
        grid-template-columns: 1fr;
    }

    .tour-page .info-grid {
        grid-template-columns: 1fr;
    }

    .tour-page .reviews-container {
        grid-template-columns: 1fr;
    }

    .tour-page .rating-summary {
        flex-direction: column;
        gap: 16px;
    }

    .tour-page .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

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

    .tour-page .itinerary-controls {
        justify-content: center;
    }

    .tour-page .hero-text h1 {
        font-size: 2.5rem;
    }

    .tour-page .step-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .tour-page .step-meta {
        justify-content: center;
    }

    .tour-page .content-highlights {
        grid-template-columns: 1fr;
    }

    .tour-page .contact-buttons {
        flex-direction: column;
    }

    .tour-page .gallery-actions {
        gap: 6px;
    }

    .tour-page .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .tour-page .share-menu {
        right: 40px;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .tour-page .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .tour-page .time-slots {
        grid-template-columns: 1fr;
    }

    .tour-page .step-info {
        gap: 16px;
    }

    .tour-page .step-meta {
        flex-direction: column;
        gap: 8px;
    }

    .tour-page .accordion-header {
        padding: unset;
    }

    .tour-page .accordion-content p {
        padding: 0 16px 16px;
    }

    .tour-page .content-highlights {
        padding: 0 16px 16px;
    }
}

/* Material Design Styles for Tour Details */
.hsj-tour-details-video-title-wrap {
    position: relative;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0 0 30px 0;
     /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hsj-tour-details-video-title-wrap:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
}

.hsj-tour-details-video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hsj-tour-details-video-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, #5856d6 100%);
    border-radius: 2px;
}

.hsj-tour-details-video-location {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hsj-tour-details-video-location span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.hsj-tour-details-video-location a {
    color: var( --hsj-theme-primary, #0b66b8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hsj-tour-details-video-location a:hover {
    color: #0056cc;
    text-decoration: underline;
}

.hsj-tour-details-video-location i {
    color: var( --hsj-theme-primary, #0b66b8);
    font-size: 1.1rem;
}

/* Material Design Rating Stars */
.rlr-review-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* background: rgba(0, 170, 108, 0.1);  */
     border-radius: 50px;
    border: 1px solid rgba(0, 170, 108, 0.2); 
        /* margin-top: 10px; */
        padding: 0 0 0 10px;
    margin-bottom: 10px;
}
.rlr-review-stars-v2{
     display: flex;
    align-items: center;
    gap: 0.75rem;
    /* background: rgba(0, 170, 108, 0.1);  */ 
        /* margin-top: 10px; */
        padding: 0 0 0 10px;
    margin-bottom: 10px;
}
.rlr-review-circle {
    display: flex;
    align-items: center;
}

.rlr-review-circle svg {
    filter: drop-shadow(0 2px 4px rgba(0, 170, 108, 0.3));
}

.rlr-review-stars__content {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.rlr-review-stars__content a {
    color: var( --hsj-theme-primary, #0b66b8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.rlr-review-stars__content a:hover {
    color: #0056cc;
    text-decoration: underline;
}

/* Material Design Share Button */
/* .rlr-product-detail-header__actions {
    margin-left: auto;
} */

.rlr-button--circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, var( --hsj-theme-primary, #0b66b8) 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 4px 12px rgba(11, 102, 184, 0.3); */
}

.rlr-button--circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 102, 184, 0.4);
}

.rlr-button--circle i {
    font-size: 1.2rem;
}

/* Material Design Popover */
.rlr-popover--hide {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

#rlr-js-share-popover {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10001;
    width: 280px;
    margin-top: 0.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    color: #333;
    font-family: "Inter", sans-serif;
    transform-origin: top right;
    animation: materialPopoverIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

@keyframes materialPopoverIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rlr-share__title {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    position: relative;
}

.rlr-share__title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, #5856d6 100%);
    border-radius: 1px;
}

.rlr-share__items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rlr-share__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.rlr-share__item:hover {
    background: rgba(11, 102, 184, 0.05);
    border-color: rgba(11, 102, 184, 0.2);
    transform: translateX(4px);
}

.rlr-share__item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877F2;
}

.rlr-share__item.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1DA1F2;
}

.rlr-share__item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.rlr-share__item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Material Design Copy Link */
.rlr-copylink {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.rlr-copylink__title {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.rlr-copylink__wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.rlr-copylink__wrapper:focus-within {
    border-color: var( --hsj-theme-primary, #0b66b8);
    box-shadow: 0 0 0 3px rgba(11, 102, 184, 0.1);
}

.rlr-copylink__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: #333;
    outline: none;
}

.rlr-copylink__wrapper i {
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.25rem;
    border-radius: 6px;
}

.rlr-copylink__wrapper i:hover {
    color: var( --hsj-theme-primary, #0b66b8);
    background: rgba(11, 102, 184, 0.1);
}

/* Responsive Material Design */
@media (max-width: 768px) {
    .hsj-tour-details-video-title-wrap {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hsj-tour-details-video-title {
        font-size: 2rem;
    }

    .hsj-tour-details-video-location {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .rlr-review-stars {
        padding: 0.5rem 0.75rem;
    }

    #rlr-js-share-popover {
        width: 250px;
        right: -1rem;
    }
}

/* Expert Card */
.expert-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.expert-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.expert-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

.status-indicator.online {
    background: var(--success-color);
}

.expert-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.expert-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.expert-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.expert-rating i {
    color: #FFD60A;
}

.expert-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-expert {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-expert.call {
    background: var(--success-color);
    color: white;
    border: none;
}

.btn-expert.call:hover {
    background: #28A745;
}

.btn-expert.chat {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.expert-availability {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.btn-expert.chat {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-expert {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

 
.floating-share-actions {
    position: fixed;
    top: 4.5%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;  
    border-radius: 12px;
    padding: 12px; 
}

.floating-share-actions.floating-active {
    opacity: 1;
    visibility: visible;
}

.floating-share-actions .btn {
    margin-bottom: 8px;
}

.floating-share-actions .rlr-popover--hide {
    display: none;
}

.floating-share-actions .rlr-popover--hide:not(.rlr-popover--hide) {
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-share-actions {
        right: 10px;
        padding: 8px;
    }

    .floating-share-actions .btn {
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .booking-widget {
        background-size: cover;
        background-position: center;
    }

    .booking-widget::before {
        background: rgba(255, 255, 255, 0.98);
    }
}

.rlr-product-detail-header__actions .rlr-icon-font {
    font-size: 2rem
}

.rlr-product-detail-header__actions .rlr-popover-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: var(--neutral-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.rlr-product-detail-header__actions .rlr-popover-button:hover {
    color: var(--brand)
}

.rlr-product-detail-header__title {
    margin-bottom: var(--spacing-5)
}

.rlr-product-detail-header__button-wrapper {
    position: relative
}

.rlr-product-detail-header__helptext {
    bottom: 52px;
    display: inline;
    opacity: 0;
    padding: 0 .5rem;
    position: absolute;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    visibility: hidden;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.rlr-product-detail-header__helptext:active,.rlr-product-detail-header__helptext:hover {
    -webkit-box-shadow: 1px 2px 2px 1px hsla(0,0%,69%,.35);
    box-shadow: 1px 2px 2px 1px hsla(0,0%,69%,.35)
}

.rlr-product-detail-header__helptext--featured {
    color: var(--white)
} 
 

/* Share Popover */
#rlr-js-share-popover {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9999;
  width: 260px;
  margin-top: 0.75rem; /* consistent with your --space-md */
  padding: 1rem; /* consistent with your body spacing scale */
  background-color: var(--background-color, #fff);
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.1));
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, 0.1));
  color: var(--body-color, #333);
  font-family: var(--font-family, "Inter", sans-serif);
  display: block;
  transform-origin: top right;
  animation: popoverIn 0.25s ease-out;
}

/* Hidden State */
.rlr-popover--hide {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

/* Inner Popover Elements */
.rlr-share__title {
  color: var(--heading-color, #1a1a1a);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.rlr-share__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rlr-share__item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--body-color, #333);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rlr-share__item a:hover {
  color: var(--primary-color, #0066ff);
}

/* Copy Link Section */
.rlr-copylink__wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.1));
  border-radius: var(--radius-md, 12px);
  background-color: var(--surface-color, #f9f9f9);
}

.rlr-copylink__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--body-color, #333);
  outline: none;
}

.rlr-copylink__wrapper i {
  color: var(--heading-color, #555);
  cursor: pointer;
  transition: color 0.2s ease;
}

.rlr-copylink__wrapper i:hover {
  color: var(--primary-color, #0066ff);
}

/* Animation */
@keyframes popoverIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 

.booking-widget {
    background: url('../../../images/bookingbg.svg') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    /* padding: 32px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    /* max-width: 400px; */
    width: 100%;
    position: relative;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    z-index: 1;
}

.booking-widget > * {
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.booking-widget .pricing-section {
    position: relative;
    margin-bottom: 2px;
    border-top: 0px;
}

.booking-widget .price-container {
    position: relative;
}

.booking-widget .original-price {
    color: red;
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 500;
    display: block; 
}

.booking-widget .current-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    /* margin-bottom: 8px; */
}

.booking-widget .price {
    color: var(--hsj-theme-primary, #0d65b8);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}

.booking-widget .per-person {
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 500;
}

.booking-widget .discount-badge { 
  background: linear-gradient(135deg, #ffaa01, #ffaa01);
    color: white;
    padding: 2px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    max-width: max-content;
}

/* Features Section */
.booking-widget .features-section {
    margin-bottom: 10px;
    padding: 10px;
}

.booking-widget .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #1d1d1f;
}

.booking-widget .feature-item:last-child {
    margin-bottom: 0;
}

.booking-widget .feature-item i {
    color: #34c759;
    font-size: 18px;
    flex-shrink: 0;
}

/* Action Buttons */
/* .booking-widget .action-buttons {
    margin-bottom: 32px;
} */

.booking-widget .btn-primary,
.booking-widget .btn-secondary {
  width: 100%;
    padding: 10px 10px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.booking-widget .btn-primary {
    background: linear-gradient(135deg, var(--hsj-theme-primary, #0d65b8), #0d65b8);
    color: white; 
}

.booking-widget .btn-primary:hover {
    transform: translateY(-2px); 
}

.booking-widget .btn-secondary {
   background: #f5f5f7;
    color: var( --hsj-theme-primary, #f5f5f7);   
    /* border: 2px solid #d2d2d7; */
}

.booking-widget .btn-secondary:hover {
    color:white;
           background: linear-gradient(185deg,var( --hsj-theme-secondary, #f5f5f7), #f6b061);
    transform: translateY(2px);
}

.overview-visual {
    position: sticky;
    top: 100px;
}

.visual-card {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.card-header h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
}


/*!  ==============================================================
<!-- 7.3 Home ==== -->
============================================================== **/
/*!  ==============================================================
<!-- 7.4 Checkout ==== -->
============================================================== **/
.rlr-checkout-list {
    -webkit-box-orient: vertical;
    border-bottom: 1px solid #cef3f0;
    border-top: 1px solid #cef3f0;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--spacing-7);
    margin-bottom: 1.062rem;
    margin-top: var(--spacing-9);
    padding: 1.875rem 0
}

.rlr-checkout-list,.rlr-checkout-list__item {
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.rlr-checkout-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    list-style: none
}

.rlr-checkout-list__text {
    color: var(--body-color);
    font-weight: 400;
    line-height: 1.43;
    text-align: left
}

.rlr-checkout-list__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.rlr-checkout .country_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.rlr-checkout .country_select,.rlr-checkout .input-text {
    border: 1px solid var(--gray-04);
    border-radius: var(--spacing-3);
    color: var(--gray-05);
    letter-spacing: .5px;
    padding: var(--spacing-3) var(--spacing-4);
    width: 100%
}

.rlr-checkout .country_select::-webkit-input-placeholder,.rlr-checkout .input-text::-webkit-input-placeholder {
    color: var(--gray-05);
    font-weight: 300
}

.rlr-checkout .country_select::-moz-placeholder,.rlr-checkout .input-text::-moz-placeholder {
    color: var(--gray-05);
    font-weight: 300
}

.rlr-checkout .country_select:-ms-input-placeholder,.rlr-checkout .input-text:-ms-input-placeholder {
    color: var(--gray-05);
    font-weight: 300
}

.rlr-checkout .country_select::-ms-input-placeholder,.rlr-checkout .input-text::-ms-input-placeholder {
    color: var(--gray-05);
    font-weight: 300
}

.rlr-checkout .country_select::placeholder,.rlr-checkout .input-text::placeholder {
    color: var(--gray-05);
    font-weight: 300
}

.rlr-checkout .country_select:focus,.rlr-checkout .input-text:focus {
    outline: 1px solid var(--gray-04)
}

.rlr-checkout .country_select:-webkit-autofill,.rlr-checkout .country_select:-webkit-autofill:active,.rlr-checkout .country_select:-webkit-autofill:focus,.rlr-checkout .country_select:-webkit-autofill:hover,.rlr-checkout .input-text:-webkit-autofill,.rlr-checkout .input-text:-webkit-autofill:active,.rlr-checkout .input-text:-webkit-autofill:focus,.rlr-checkout .input-text:-webkit-autofill:hover {
    -webkit-text-fill-color: var(--gray-05);
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.rlr-checkout #billing_country_field {
    position: relative
}

.rlr-checkout #billing_country_field:after {
    bottom: 16px;
    color: var(--gray-05);
    content: "";
    font-family: flaticon;
    font-size: 1.25rem;
    font-weight: 600;
    height: 20px;
    pointer-events: none;
    position: absolute;
    right: var(--spacing-4);
    width: 20px
}

.rlr-checkout .checkout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (min-width: 992px) {
    .rlr-checkout .checkout {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.rlr-checkout .checkout #order_review_heading {
    display: none
}

.rlr-checkout .checkout .col2-set {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 0 var(--spacing-9) 0
}

@media (min-width: 576px) {
    .rlr-checkout .checkout .col2-set {
        padding:0 var(--spacing-7)
    }
}

@media (min-width: 992px) {
    .rlr-checkout .checkout .col2-set {
        padding-left:var(--spacing-9);
        padding-right: var(--spacing-9);
        width: 66.66667%
    }
}

@media (min-width: 1200px) {
    .rlr-checkout .checkout .col2-set {
        padding-left:var(--spacing-14);
        padding-right: var(--spacing-14);
        width: 66.66667%
    }
}

@media (min-width: 1680px) {
    .rlr-checkout .checkout .col2-set {
        padding-left:8.5rem;
        padding-right: 6.5rem
    }
}

.rlr-checkout .checkout .col2-set .col-1 {
    width: 100%
}

.rlr-checkout .checkout .col2-set .col-2 {
    display: none
}

.rlr-checkout .checkout__section-title {
    color: #ffffff;
    margin-bottom: var(--spacing-8);
    position: relative;
    text-align: center
}

.rlr-checkout .checkout__section-title:before {
    background-color: var(--gray-03);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%
}

.rlr-checkout .checkout__section-title span {
    background-color: #0d63b5;
    padding: 0 10px;
    position: relative;
    z-index: 10
}

.rlr-checkout .cart-item-title {
    color: var(--body-color);
    margin-bottom: var(--spacing-7)
}

.rlr-checkout .cart-item-card {
    background-color: var(--white);
    border-radius: var(--spacing-5);
    -webkit-box-shadow: 0 2px 4px 0 rgba(14,86,124,.15);
    box-shadow: 0 2px 4px 0 rgba(14,86,124,.15);
    list-style-type: none;
    margin-bottom: var(--spacing-6);
    padding: var(--spacing-5);
    position: relative
}

.rlr-checkout .cart-item-card:last-child {
    margin-bottom: var(--spacing-8)
}

.rlr-checkout .cart-item-card__close {
    color: var(--gray-05);
    cursor: pointer;
    position: absolute;
    right: var(--spacing-5);
    top: var(--spacing-5);
    z-index: 100
}

.rlr-checkout .cart-item-card__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    grid-gap: var(--spacing-4);
    align-items: center;
    display: grid;
    grid-template-columns: 5.1875rem auto;
    margin-bottom: var(--spacing-4)
}

.rlr-checkout .cart-item-card__title {
    color: var(--gray-09);
    margin-bottom: var(--spacing-2);
    max-width: calc(100% - 20px)
}

.rlr-checkout .cart-item-card__date {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    color: var(--gray-05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    margin-bottom: 0
}

.rlr-checkout .cart-item-card__img {
    border-radius: 10px;
    width: 5.1875rem
}

.rlr-checkout .cart-item-card__footer {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-top: 1px solid var(--gray-03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-5)
}

.rlr-checkout .cart-item-card__footer p {
    color: var(--gray-07);
    margin-bottom: 0
}

.rlr-checkout .cart-item-card__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    grid-gap: var(--spacing-4);
    align-items: center;
    color: var(--gray-07);
    display: grid;
    grid-template-columns: 2rem 35% 2rem auto;
    padding-bottom: var(--spacing-4);
    padding-top: var(--spacing-4)
}

@media (max-width: 375px) {
    .rlr-checkout .cart-item-card__item {
        grid-gap:var(--spacing-2);
        grid-template-columns: 2rem 40% 2rem auto
    }
}

.rlr-checkout .cart-item-card__item p {
    margin-bottom: 0
}

.rlr-checkout .cart-item-card__item-title p:first-child {
    font-weight: 300
}

.rlr-checkout .cart-item-card__item-number {
    text-align: center
}

.rlr-checkout .cart-item-card__item-number .times {
    color: var(--gray-04);
    font-size: .75rem
}

.rlr-checkout .cart-item-card__item-price {
    font-weight: 400;
    text-align: end
}

.rlr-checkout .cart-item-card__iconcontainer {
    background-color: var(--brand-01);
    border-radius: 50%;
    color: var(--brand-07);
    display: grid;
    font-size: 1.125rem;
    height: 2rem;
    place-items: center;
    width: 2rem
}

.rlr-checkout .cart-item-card__iconcontainer i {
    display: grid;
    place-items: center
}

.rlr-checkout .order-total td,.rlr-checkout .order-total th {
    color: var(--heading-color);
    line-height: 1.5
}

.rlr-checkout .order-total .woocommerce-Price-amount {
    color: var(--brand);
    float: right;
    font-weight: 600
}

.rlr-checkout .wc_payment_methods label {
    color: var(--gray-09)
}

.rlr-checkout .payment_method_stripe label {
    color: var(--gray-07)
}

.rlr-checkout .payment_method_stripe .title {
    background-color: #eefbfa;
    border: 1px solid #7cdfd7;
    border-radius: 8px;
    padding: var(--spacing-5)
}

.rlr-checkout .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    width: 100%
}

@media (min-width: 1200px) {
    .rlr-checkout .form-row.form-row-first {
        float:left
    }

    .rlr-checkout .form-row.form-row-last {
        float: right
    }
}

/* .rlr-checkout .form-row:not(:last-child) {
    margin-bottom: var(--spacing-10)
} */

.rlr-checkout .form-row label {
    color: var(--gray-07);
    letter-spacing: 0;
    margin-bottom: var(--spacing-3)
}

.rlr-checkout .form-row label .optional {
    color: var(--gray-05)
}

.rlr-checkout .form-row label .required {
    color: var(--danger-color);
    text-decoration: none
}

.rlr-checkout .form-row input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid var(--body-color);
    border-radius: var(--spacing-2);
    height: var(--spacing-6);
    margin: 0;
    margin-top: var(--spacing-2);
    min-width: var(--spacing-6);
    width: var(--spacing-6)
}

.rlr-checkout .form-row input[type=checkbox]:checked {
    background: url(/assets/images/767fad73122ffe0c51888a2adda9a6d4341bb319/tick.png) no-repeat 50% 50% var(--brand);
    border: 0
}

 .view-all-container {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    min-height: 200px;
                }

                .view-all-gallery {
                    text-align: center;
                    padding: 20px;
                }

                .view-all-gallery-btn {
                    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, var( --hsj-theme-primary, #0b66b8) 100%);
                    border: none;
                    padding: 15px 30px;
                    font-size: 16px;
                    font-weight: 600;
                    border-radius: 50px;
                    transition: all 0.3s ease; 
                }

                .view-all-gallery-btn:hover {
                    transform: translateY(-2px); 
                    background: linear-gradient(135deg, var( --hsj-theme-primary, #0b66b8) 0%, var( --hsj-theme-primary, #0b66b8) 100%);
                }

                .view-all-gallery-btn i {
                    margin-right: 8px;
                    font-size: 18px;
                }

                /* FSLightbox custom styling */
                .fslightbox-container {
                    background: rgba(0, 0, 0, 0.9) !important;
                }

                .fslightbox-slide {
                    display: flex !important;
                    align-items: center !important;
                    justify-content: center !important;
                }

                .fslightbox-slide img {
                    max-width: 90vw !important;
                    max-height: 90vh !important;
                    object-fit: contain !important;
                }

                /* Responsive adjustments */
                @media (max-width: 768px) {
                    .gallery-popup-masonry {
                        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                        gap: 10px;
                    }

                    .gallery-popup-header {
                        padding: 15px 20px;
                    }

                    .gallery-popup-header h3 {
                        font-size: 20px;
                    }

                    .gallery-popup-body {
                        padding: 20px;
                    }
                }

                button#rlr-js-share-button i {
    color: white;
}

/* Enhanced Itinerary V2 Styles */
.tour-page .itinerary-section-v2 {
    position: relative; 
}

.tour-page .itinerary-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-page .timeline-item {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-page .timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tour-page .timeline-item.expanded .timeline-content {
    transform: translateX(10px);
}

.tour-page .timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tour-page .timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--background-primary);
    transition: all 0.3s ease;
    position: relative;
}

.tour-page .timeline-item.expanded .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(11, 102, 184, 0.4);
}

.tour-page .day-number {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: white;
}

.tour-page .timeline-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(11, 102, 184, 0.3) 100%);
    border-radius: 2px;
    margin-top: var(--space-4);
}

.tour-page .timeline-content {
    flex: 1;
    transition: all 0.3s ease;
}

.tour-page .day-header-card {
    background: var(--background-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.tour-page .day-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 102, 184, 0.05) 0%, rgba(45, 95, 111, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-page .day-header-card:hover::before {
    opacity: 1;
}

.tour-page .day-header-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.tour-page .day-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tour-page .day-meta-info {
    flex: 1;
}
 
.tour-page .day-meta-tags {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.tour-page .meta-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    background: var(--background-secondary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.tour-page .meta-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tour-page .meta-tag i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tour-page .meta-tag:hover i {
    color: white;
}

.tour-page .day-toggle-btn {
    width: 48px;
    height: 48px;
    background: var(--background-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: var(--space-4);
}

.tour-page .day-toggle-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tour-page .day-toggle-btn:hover .toggle-icon {
    color: white;
    transform: scale(1.1);
}

.tour-page .toggle-icon {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tour-page .day-content-panel {
    margin-top: var(--space-4);
    background: var(--background-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-page .timeline-item.expanded .day-content-panel {
    opacity: 1;
    transform: translateY(0);
}

.tour-page .day-featured-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tour-page .day-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    opacity: 0;
}

.tour-page .day-featured-image img.loaded {
    opacity: 1;
}

.tour-page .day-featured-image:hover img {
    transform: scale(1.05);
}

.tour-page .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: var(--space-8) var(--space-6) var(--space-4);
}

.tour-page .image-caption h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-page .day-description-content {
    /* padding: var(--space-6); */
}

.tour-page .description-text {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.tour-page .description-text p {
    margin-bottom: var(--space-4);
}

.tour-page .description-text h4,
.tour-page .description-text h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-6) 0 var(--space-3) 0;
}

.tour-page .day-highlights-section {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-light);
}

.tour-page .highlights-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600; 
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tour-page .highlights-title i {
    color: var(--primary-color);
}

.tour-page .highlights-title i {
    color: var(--primary-color);
}

.tour-page .highlights-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.tour-page .highlight-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--background-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.tour-page .highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.tour-page .highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-bottom: 0;
}

.tour-page .highlight-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-page .highlight-label {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-page .highlight-value {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.tour-page .day-activities {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tour-page .activities-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tour-page .activities-title i {
    color: var(--primary-color);
}

.tour-page .activities-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.tour-page .activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.tour-page .activity-item i {
    color: #22c55e;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tour-page .itinerary-summary {
    /* margin-top: var(--space-10); */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tour-page .summary-card { 
    /* border-radius: var(--radius-xl); */
    padding: var(--space-5);
    border: 1px solid var(--border-color); 
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-top:30px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
}

.tour-page .summary-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    text-align: center;
}

.tour-page .summary-title i {
    color: var(--primary-color);
}

.tour-page .summary-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.tour-page .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.tour-page .stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.tour-page .stat-label {
    font-family: var(--hsj-ff-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive Itinerary V2 */
@media (max-width: 768px) {
    .tour-page .timeline-item {
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .tour-page .timeline-connector {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-bottom: var(--space-2);
    }

    .tour-page .timeline-line {
        width: 100px;
        height: 3px;
        margin-top: 0;
        margin-left: var(--space-4);
    }

    .tour-page .day-header-card {
        padding: var(--space-4);
    }

    .tour-page .day-title {
        font-size: var(--text-sm);
    }

    .tour-page .day-meta-tags {
        gap: var(--space-2);
    }

    .tour-page .meta-tag {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }

    .tour-page .day-content-panel {
        margin-top: var(--space-2);
    }

    .tour-page .day-featured-image {
        height: 200px;
    }

    .tour-page .day-description-content {
        padding: var(--space-4);
    }

    .tour-page .highlights-cards {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .tour-page .summary-stats {
        gap: var(--space-4);
    }

    .tour-page .stat-number {
        font-size: var(--text-2xl);
    }
}

/* .offers-section {
    background: rgb(13 101 184);
} */
section.offers-section h1, section.offers-section h2, section.offers-section h3 {
    color: rgb(13 101 184);
}



/* At a Glance Grid */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5px;
}

.glance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glance-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.glance-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.glance-item:hover::before {
  transform: scaleY(1);
}

.glance-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-color) 0% 0%, #0d65b8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.glance-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.glance-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0px;
}
 
.hsj-tour-details-video-feature-price p
{
    margin:0px!important;
}

/* Package Section */
.package-selector {
  margin-bottom: 17px;
}

.selector-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.selector-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.package-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.package-tab {
  padding: 12px 24px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.package-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.package-tab:hover::before {
  left: 100%;
}

.package-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.package-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.package-tab.active i {
  color: var(--white);
}

.package-tab i {
  font-size: 0.9rem;
}

/* Package Details */
.package-details {
  display: none;
}

.package-details.active {
  display: block;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 17px;
  position: relative;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.package-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--secondary-color);
  font-size: 1rem;
  letter-spacing: 1px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.package-price {
  text-align: right;
  position: relative;
}

.package-price .price-badge {
background: var(--secondary-color);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    position: absolute;
    top: -20px;
    right: 0;
    transform: rotate(3deg);
    box-shadow: var(--shadow-sm);

}

.package-price .price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.package-price .price-unit {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Inclusions Section */
/* .inclusions-section {
  margin-top: 32px;
} */

.inclusions-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 16px;
  /* padding: 10px;
  background: var(--gray-50); */
  /* border-radius: 12px; */
  /* border-left: 4px solid var(--success); */
  transition: all 0.3s ease;
}

.inclusion-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.inclusion-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.inclusion-icon.included {
  background: var(--success);
  color: var(--white);
}

.inclusion-icon.excluded {
  background: #ef4444;
  color: var(--white);
}

.inclusion-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inclusion-content p {
  font-size: 0.95rem;
  color: var(--gray-600); 
  margin:0px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .luxury-container {
    padding: 20px 16px;
  }
  
  .section-container {
    padding: 24px 20px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .glance-grid {
    grid-template-columns: 2fr 2fr;
    gap: 16px;
  }
  
  .glance-item {
    padding: 16px;
  }
  
  .package-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .package-price {
    text-align: center;
  }
  
  .price-badge {
    position: static;
    transform: none;
    margin-bottom: 12px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .package-tabs {
    flex-direction: column;
  }
  
  .package-tab {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .glance-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .inclusion-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hover Effects */
.glance-item:hover .glance-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.package-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

/* Focus States */
.package-tab:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}/* Dynami
c Content Animations */
.fade-in-list .inclusion-item {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

/* Excluded items styling */
/* .inclusion-item:has(.inclusion-icon.excluded) {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
} */

.inclusion-item:has(.inclusion-icon.excluded):hover {
  /* background: rgba(239, 68, 68, 0.1); */
      box-shadow: var(--shadow-sm);
    transform: translateX(4px);
    background: var(--white);
}

/* Enhanced package transition */
.package-details {
  transition: all 0.3s ease-in-out;
}

.package-details.loading {
  opacity: 0.5;
  transform: translateY(10px);
}

/* Staggered animation for inclusion items */
.inclusion-item:nth-child(1) { animation-delay: 0.1s; }
.inclusion-item:nth-child(2) { animation-delay: 0.2s; }
.inclusion-item:nth-child(3) { animation-delay: 0.3s; }
.inclusion-item:nth-child(4) { animation-delay: 0.4s; }
.inclusion-item:nth-child(5) { animation-delay: 0.5s; }
.inclusion-item:nth-child(6) { animation-delay: 0.6s; }
.inclusion-item:nth-child(7) { animation-delay: 0.7s; }

/* Package transition effects */
.package-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-switching {
  transform: scale(0.98);
  opacity: 0.8;
}

.includes-exclude .icon.check {
    background-color: #10b981;
}
.includes-exclude .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}
.includes-exclude .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.includes-exclude .icon.check::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
.includes-exclude .icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.includes-exclude .icon::after {
    content: '';
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.includes-exclude .icon.cross {
    background-color: #ef4444;
}
.includes-exclude .icon.cross::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}
.overview-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.overview-text ul li {
    position: relative;
    padding-left: 28px; /* space for icon */
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* custom bullet using inline SVG */
.overview-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #4caf50; /* green circle background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.overview-text blockquote {
    position: relative;
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
    border-left: 4px solid #ccc;
}

/* First blockquote */
.overview-text blockquote:nth-of-type(1) {
    background-color: #e8f5e9;
    border-left-color: #4caf50;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234caf50' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: right 20px bottom 20px;
}

/* Second blockquote */
.overview-text blockquote:nth-of-type(2) {
    background-color: #e3f2fd;
    border-left-color: #2196f3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232196f3' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16m8-8H4'/%3E%3C/svg%3E");
}

/* Third blockquote */
.overview-text blockquote:nth-of-type(3) {
    background-color: #fff3e0;
    border-left-color: #ff9800;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff9800' viewBox='0 0 24 24'%3E%3Cpath d='M1 21h22L12 2 1 21z'/%3E%3C/svg%3E");
}

/* Others */
.overview-text blockquote:nth-of-type(n+4) {
    background-color: #f3e5f5;
    border-left-color: #9c27b0;
}
.overview-text blockquote span {
    font-weight: bold;
    color: white;
    padding: 5px;
}
.includes-card {
    border-right: 0px !important;
}

.tour-route-section .section-header {
  margin-bottom: 10px;
    padding-bottom: 10px;
}

.tour-route-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

.tour-route-section .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.route-map-container {
    background: white; 
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#tour_route_map {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Transport Icon Animation */
.transport-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hsj-theme-secondary), var(--hsj-theme-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(var(--hsj-theme-primary-rgb, 37, 99, 235), 0.5);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transport-icon.active {
    opacity: 1;
}

/* Walking/Hiking Animation */
.transport-icon.walking i,
.transport-icon.hiking i {
    animation: walk 0.5s infinite alternate;
}

/* Flying Animation (Plane/Helicopter) */
.transport-icon.aeroplane i,
.transport-icon.helicopter i {
    animation: fly 2s infinite ease-in-out;
}

/* Bus/Vehicle Animation */
.transport-icon.bus i {
    animation: drive 0.3s infinite;
}

@keyframes walk {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    100% {
        transform: translateY(-3px) rotate(5deg);
    }
}

@keyframes fly {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-3px) rotate(3deg);
    }
}

@keyframes drive {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
}

/* Custom Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: inherit;
}

.route-popup-content {
    min-width: 200px;
}

.route-popup-content .popup-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--hsj-theme-primary);
    margin-bottom: 8px;
}

.route-popup-content .popup-info {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.route-popup-content .popup-coords {
    font-size: 11px;
    color: #9ca3af;
    font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-route-section {
        padding: 40px 0;
    }
    
    .tour-route-section .section-title {
        font-size: 2rem;
    }
    
    #tour_route_map {
        height: 400px;
    }
}
h1.luxury-sidebar__title {
    font-size: var(--text-xl);
    font-weight: 700;
    text-align: center;
}
/* h1.luxury-sidebar__title:after {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hsj-theme-primary), var(--hsj-theme-secondary));
    border-radius: 3px 3px 0 0;
    opacity: 0;
    animation: fadeIn 0.3s 
ease 0.2s forwards;
} */

.tour-sidebar.is-sticky {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); 
}
body.frontend-page.header-normal.is_single.loaded .header-sticky {
    display: none;
}