/* ===================================
   CUSTOM FONT - BRITTANY SIGNATURE
   =================================== */
@font-face {
    font-family: 'Brittany Signature';
    src: url('fonts/BrittanySignature-MaZx.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   CSS VARIABLES - SPIRITUAL PALETTE
   =================================== */
:root {
    --saffron: #FF9933;
    --marigold: #FDB913;
    --charcoal: #2C2C2C;
    --ivory: #F8F5F0;
    --soft-white: #FFFFFF;
    --sunrise-gradient: linear-gradient(135deg, #FF9933 0%, #FDB913 100%);
    --overlay-dark: rgba(44, 44, 44, 0.6);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   LUXURY TRAVEL HEADER OVERLAY
   =================================== */

/* Top Utility Bar */
.luxury-header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    font-family: var(--font-sans);
}

.utility-bar {
    background: linear-gradient(135deg, #E8DCC8 0%, #F5EBD9 100%);
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    padding: 0.65rem 0;
}

.utility-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wordmark-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--charcoal);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.header-logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
    background: linear-gradient(135deg, #E8DCC8 0%, #F5EBD9 100%);
    padding: 5px 10px;
    border-radius: 4px;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    background: transparent;
    border: 1px solid rgba(44, 44, 44, 0.2);
    color: var(--charcoal);
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.language-selector:hover {
    border-color: var(--charcoal);
    background: rgba(255, 255, 255, 0.3);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.phone-label {
    color: var(--charcoal);
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
}

.phone-number {
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Primary Navigation Bar */
.primary-nav-bar {
    background: rgba(44, 44, 44, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-nav-menu {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.luxury-nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.luxury-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F5D76E);
    transition: width 0.3s ease;
}

.luxury-nav-menu a:hover {
    color: #F5D76E;
}

.luxury-nav-menu a:hover::after {
    width: 100%;
}

/* Luxury Dropdown Styles */
.luxury-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.luxury-nav-item.has-dropdown > a.dropdown-trigger::after {
    content: ' ▾';
    font-size: 0.75rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}

.luxury-nav-item.has-dropdown:hover > a.dropdown-trigger::after {
    transform: rotate(180deg);
}

.luxury-dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 44, 44, 0.97);
    backdrop-filter: blur(12px);
    min-width: 240px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2100;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.luxury-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.luxury-dropdown-menu a::after {
    display: none;
}

.luxury-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #F5D76E;
    padding-left: 2.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: #F5D76E;
    transform: scale(1.1);
}

/* Search Popup Overlay */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.95);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Popup Container */
.search-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.98) 0%, rgba(44, 44, 44, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    z-index: 3001;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.search-popup-container.active {
    transform: translateY(0);
}

/* Search Box Wrapper */
.search-box-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Search Input */
.search-input {
    width: 100%;
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: rgba(248, 245, 240, 0.98);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--marigold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.search-input::placeholder {
    color: rgba(44, 44, 44, 0.5);
}

/* Search Icon Inside Input */
.search-input-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saffron);
    pointer-events: none;
}

/* Close Search Button */
.search-close-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.search-close-btn:hover {
    color: var(--marigold);
    transform: rotate(90deg);
}

/* Search Results Container */
.search-results {
    max-width: 800px;
    margin: 2rem auto 0;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* Search Result Item */
.search-result-item {
    background: rgba(248, 245, 240, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(248, 245, 240, 0.12);
    border-color: var(--marigold);
    transform: translateX(5px);
}

.search-result-title {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--marigold);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.search-result-type {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--soft-white);
    background: rgba(212, 175, 55, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.search-result-highlight {
    background: rgba(253, 185, 19, 0.3);
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

/* No Results Message */
.search-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.search-no-results-text {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Search Suggestions */
.search-suggestions {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.search-suggestions-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.search-suggestion-tag {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-suggestion-tag:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--marigold);
    color: var(--marigold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-popup-container {
        padding: 2rem 1.5rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 1rem 3rem 1rem 1.25rem;
    }
    
    .search-close-btn {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.75rem;
    }
    
    .search-results {
        max-height: 50vh;
    }
    
    .search-result-item {
        padding: 1.25rem;
    }
    
    .search-result-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .search-popup-container {
        padding: 1.5rem 1rem;
    }
    
    .search-input {
        font-size: 0.95rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
    
    .search-result-item {
        padding: 1rem;
    }
    
    .search-result-title {
        font-size: 1.05rem;
    }
    
    .search-result-description {
        font-size: 0.9rem;
    }
}

.gold-cta-button {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #E8DCC8 0%, #F5EBD9 100%);
    color: var(--charcoal);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(232, 220, 200, 0.4);
    transition: all 0.3s ease;
}

.gold-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 220, 200, 0.6);
    background: linear-gradient(135deg, #F5EBD9 0%, #E8DCC8 100%);
}

/* Adjust Hero Section to Account for Header */
.hero {
    margin-top: 0;
}

/* Hamburger Menu Icon (Mobile Only) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2100;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive for Luxury Header */
@media (max-width: 1024px) {
    .utility-container,
    .nav-container {
        padding: 0 2rem;
    }
    
    .luxury-nav-menu {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    /* Mobile Navigation - Hidden by default */
    .luxury-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2050;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .luxury-nav-menu.active {
        left: 0;
    }
    
    .luxury-nav-menu > a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .luxury-nav-menu a::after {
        display: none;
    }
    
    /* Mobile Luxury Dropdown */
    .luxury-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .luxury-nav-item.has-dropdown > a.dropdown-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
    }
    
    .luxury-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0;
        margin-left: 1.5rem;
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        border-radius: 0;
        border: none;
    }
    
    .luxury-nav-item.has-dropdown.active .luxury-dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .luxury-dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .luxury-dropdown-menu a:hover {
        padding-left: 2rem;
    }
    
    /* Hide nav actions in mobile menu */
    .nav-actions {
        display: none;
    }
    
    /* Adjust nav container for mobile */
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 2040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Utility Bar - More Compact with Better Spacing */
    .utility-bar {
        padding: 1rem 0;
        background: linear-gradient(135deg, #F5EBD9 0%, #E8DCC8 100%);
    }
    
    .utility-container {
        padding: 0 1.5rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .wordmark-logo {
        font-size: 1.1rem;
        letter-spacing: 3px;
        font-weight: 500;
    }
    
    .utility-right {
        display: flex;
        gap: 1.25rem;
        align-items: center;
    }
    
    .contact-phone {
        display: none;
    }
    
    .language-selector {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .phone-label,
    .phone-number {
        font-size: 0.85rem;
    }
    
    /* Primary Navigation Bar - Cleaner Two-Row Layout */
    .primary-nav-bar {
        padding: 1.25rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .luxury-nav-menu {
        flex-wrap: wrap;
        gap: 2rem 1.75rem;
        justify-content: center;
        width: 100%;
    }
    
    .luxury-nav-menu a {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        font-weight: 500;
    }
    
    .nav-actions {
        gap: 1.25rem;
        width: 100%;
        justify-content: center;
    }
    
    .gold-cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    /* Utility Bar - Extra Small Screens */
    .utility-bar {
        padding: 0.9rem 0;
    }
    
    .utility-container {
        padding: 0 1rem;
        gap: 1.25rem;
    }
    
    .wordmark-logo {
        font-size: 1rem;
        letter-spacing: 2.5px;
    }
    
    .language-selector {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    /* Primary Navigation - Extra Small Screens */
    .primary-nav-bar {
        padding: 1.1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 1.25rem;
    }
    
    .luxury-nav-menu {
        gap: 1.75rem 1.5rem;
    }
    
    .luxury-nav-menu a {
        font-size: 0.9rem;
        letter-spacing: 1.25px;
    }
    
    .search-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .gold-cta-button {
        padding: 0.8rem 1.75rem;
        font-size: 0.8rem;
        letter-spacing: 1.25px;
    }
}

/* ===================================
   ORIGINAL HEADER (LEGACY)
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(44, 44, 44, 0.85);
    z-index: 999;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--charcoal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ivory);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 153, 51, 0.1);
    color: var(--saffron);
    padding-left: 2rem;
}

.cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero video container */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* YouTube iframe styling */
.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents clicking on video controls */
    border: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-temple-sunrise.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-text-panel {
    max-width: 600px;
    padding: 3rem;
}

.hero-title {
    font-size: 4.55rem;
    font-weight: 300;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.625rem;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--soft-white);
    font-style: italic;
    font-weight: 400;
}

.hero-tagline .signature-text {
    font-family: 'Brittany Signature', cursive;
    font-size: 2.2rem;
    font-style: normal;
    display: inline-block;
    margin-left: 0.3rem;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */
.intro-section {
    padding: 8rem 0;
    background: var(--ivory);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 2;
    color: var(--charcoal);
    font-weight: 300;
}

/* ===================================
   CARDS SECTION (LEGACY)
   =================================== */
.cards-section {
    padding: 6rem 0 8rem;
    background: var(--soft-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    background: var(--soft-white);
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===================================
   PHOTO CAROUSEL SECTION
   =================================== */
.photo-carousel-section {
    padding: 6rem 0 4rem;
    background: var(--soft-white);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9) 0%, rgba(44, 44, 44, 0.6) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--soft-white);
}

.carousel-caption h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--marigold);
}

.carousel-caption p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--marigold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    stroke: var(--soft-white);
}

.carousel-btn svg {
    stroke: var(--charcoal);
    transition: stroke 0.3s ease;
}

.carousel-btn-prev {
    left: 2rem;
}

.carousel-btn-next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--soft-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--marigold);
    border-color: var(--marigold);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .photo-carousel-section {
        padding: 4rem 0 3rem;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 1rem;
    }

    .carousel-btn-next {
        right: 1rem;
    }

    .carousel-indicators {
        bottom: 1.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .photo-carousel-section {
        padding: 3rem 0 2rem;
    }

    .carousel-slide img {
        height: 280px;
    }

    .carousel-caption {
        padding: 1.5rem 1rem 1rem;
    }

    .carousel-caption h3 {
        font-size: 1.25rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn-prev {
        left: 0.5rem;
    }

    .carousel-btn-next {
        right: 0.5rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ===================================
   INTEREST SECTION (PICK YOUR JOURNEY)
   =================================== */
.interest-section {
    padding: 6rem 0 8rem;
    background: var(--soft-white);
}

.interest-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.interest-main-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.interest-subtitle {
    font-size: 1.4375rem;
    color: var(--charcoal);
    opacity: 0.8;
    font-weight: 300;
    font-family: 'Brittany Signature', cursive;
    word-spacing: 0.1em;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.interest-card {
    background: var(--ivory);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.interest-card:hover {
    transform: translateY(-8px);
    border-color: var(--saffron);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
    background: var(--soft-white);
}

.interest-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.interest-card:hover .interest-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* New image-based trip type cards */
.interest-icon-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.trip-type-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.interest-card:hover .trip-type-image {
    transform: scale(1.08);
}

.interest-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.interest-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.interest-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(248, 245, 240, 0.2);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--marigold);
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--marigold);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */
.checkout-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-main {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Checkout Steps */
.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.step-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--ivory);
    border: 1px solid rgba(44, 44, 44, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #fa755a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Tour Details */
.tour-details {
    background: rgba(255, 153, 51, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--saffron);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.detail-label {
    font-weight: 500;
    color: var(--charcoal);
}

.detail-value {
    font-weight: 600;
    color: var(--saffron);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(255, 153, 51, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-label.error {
    color: #fa755a;
}

/* Document Cards */
.documents-info {
    background: rgba(255, 153, 51, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--saffron);
}

.info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

.document-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.document-card {
    background: var(--ivory);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.document-icon {
    margin-bottom: 1rem;
}

.document-icon svg {
    stroke: var(--saffron);
}

.document-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.document-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.download-btn svg {
    flex-shrink: 0;
}

.document-checklist {
    background: var(--ivory);
    padding: 1.5rem;
    border-radius: 8px;
}

.document-checklist h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

/* Payment Section */
.payment-info {
    background: rgba(255, 153, 51, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--saffron);
}

.stripe-element {
    padding: 0.875rem;
    background: var(--ivory);
    border: 1px solid rgba(44, 44, 44, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stripe-element:focus-within {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.error-message {
    color: #fa755a;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.btn-next,
.btn-submit {
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    flex: 1;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-back {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-back:hover {
    background: var(--charcoal);
    color: var(--soft-white);
}

/* Checkout Sidebar */
.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-summary {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}

.summary-content {
    margin-bottom: 1.5rem;
}

.empty-summary {
    text-align: center;
    color: var(--charcoal);
    opacity: 0.6;
    font-style: italic;
    padding: 2rem 0;
}

.summary-item {
    margin-bottom: 1.5rem;
}

.item-name {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.item-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.85;
}

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

.summary-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
    font-weight: 500;
    color: var(--charcoal);
}

.summary-total {
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 153, 51, 0.2);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.total-amount {
    font-size: 1.75rem;
    color: var(--saffron);
    font-family: var(--font-serif);
}

.help-card {
    background: var(--ivory);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.help-card h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.help-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.help-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.help-contact strong {
    color: var(--saffron);
}

/* Important Documents Card */
.important-docs-card {
    background: var(--ivory);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.important-docs-card h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.important-docs-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--soft-white);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 6px;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.doc-item:hover {
    background: rgba(255, 153, 51, 0.1);
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateX(3px);
}

.doc-item svg {
    flex-shrink: 0;
    stroke: var(--saffron);
    transition: all 0.3s ease;
}

.doc-item:hover svg {
    stroke: var(--saffron);
}

/* Forms Download Section */
.forms-download {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-download-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--ivory);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 6px;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-download-link:hover {
    background: rgba(255, 153, 51, 0.1);
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateX(3px);
}

.form-download-link svg {
    flex-shrink: 0;
}

/* Food Questionnaire Section */
.food-questionnaire-section {
    background: rgba(255, 153, 51, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid rgba(255, 153, 51, 0.15);
}

.questionnaire-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
}

.questionnaire-subtitle {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-help-text {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: 0.5rem;
    font-style: italic;
}

.food-questionnaire-section .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.food-questionnaire-section .form-group {
    margin-bottom: 2rem;
}

.food-questionnaire-section .form-group:last-child {
    margin-bottom: 0;
}

/* Enhanced checkbox styling for dietary options */
.food-questionnaire-section .checkbox-label {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(44, 44, 44, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-questionnaire-section .checkbox-label:hover {
    background: rgba(255, 153, 51, 0.08);
    border-color: var(--saffron);
}

.food-questionnaire-section .checkbox-label input[type="checkbox"]:checked + span,
.food-questionnaire-section .checkbox-label:has(input[type="checkbox"]:checked) {
    background: rgba(255, 153, 51, 0.12);
    border-color: var(--saffron);
    font-weight: 500;
}

/* Pricing Note Box */
.pricing-note-box {
    background: rgba(255, 153, 51, 0.08);
    padding: 1.75rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--saffron);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-note-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.pricing-note-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.pricing-note-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Food Questionnaire */
@media (max-width: 768px) {
    .food-questionnaire-section {
        padding: 2rem 1.5rem;
    }
    
    .pricing-note-box {
        padding: 1.5rem 1.5rem;
    }
    
    .pricing-note-title {
        font-size: 1.1rem;
    }
    
    .questionnaire-title {
        font-size: 1.5rem;
    }
    
    .questionnaire-subtitle {
        font-size: 0.95rem;
    }
    
    .food-questionnaire-section .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .food-questionnaire-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .pricing-note-box {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    .pricing-note-title {
        font-size: 1rem;
    }
    
    .pricing-note-box p {
        font-size: 0.9rem;
    }
    
    .questionnaire-title {
        font-size: 1.35rem;
    }
    
    .food-questionnaire-section .form-group {
        margin-bottom: 1.5rem;
    }
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 3rem 0;
    }
    
    .checkout-main {
        padding: 2rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .document-cards {
        grid-template-columns: 1fr;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .checkout-main {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.35rem;
    }
    
    .order-summary,
    .help-card,
    .important-docs-card {
        padding: 1.5rem;
    }
    
    .important-docs-card h4 {
        font-size: 1.15rem;
    }
    
    .doc-item {
        font-size: 0.85rem;
        padding: 0.75rem 0.875rem;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .interest-main-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.575rem;
    }

    .hero-subtitle {
        font-size: 1.43rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--ivory);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown Styles */
    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 153, 51, 0.05);
        margin-top: 0.5rem;
        margin-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .nav-item.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 0.6rem 1.5rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero-text-panel {
        padding: 2rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.925rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .intro-text {
        font-size: 1.15rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interest-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .interest-section {
        padding: 4rem 0 5rem;
    }

    .interest-header {
        margin-bottom: 3rem;
    }

    .interest-main-title {
        font-size: 2rem;
    }

    .interest-subtitle {
        font-size: 1.265rem;
        word-spacing: 0.1em;
    }

    .interest-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text-panel {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.405rem;
    }

    .hero-subtitle {
        font-size: 1.235rem;
    }

    .intro-section {
        padding: 4rem 0;
    }

    .cards-section {
        padding: 3rem 0 4rem;
    }

    .interest-section {
        padding: 3rem 0 4rem;
    }

    .interest-main-title {
        font-size: 1.75rem;
    }

    .interest-subtitle {
        font-size: 1.15rem;
        word-spacing: 0.1em;
    }

    .interest-icon {
        font-size: 3rem;
    }

    .interest-title {
        font-size: 1.35rem;
    }

    .interest-text {
        font-size: 0.9rem;
    }
}

/* ===================================
   PAGE HERO (FOR INNER PAGES)
   =================================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/mountains-mist.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.6);
    z-index: 1;
}

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

.page-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--soft-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--marigold);
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* ===================================
   JOURNEYS PAGE - CARD GRID LAYOUT
   =================================== */

/* Journey Cards Section */
.journey-cards-section {
    padding: 4rem 0 6rem;
    background: var(--soft-white);
}

.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Journey Card */
.journey-card {
    background: var(--ivory);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Journey Card Image */
.journey-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.journey-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Journey Badge */
.journey-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

/* Journey Card Content */
.journey-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.journey-header {
    margin-bottom: 1.25rem;
}

.journey-card-title {
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.journey-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
}

.journey-duration {
    color: var(--saffron);
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 15px;
}

.journey-date {
    color: var(--charcoal);
    opacity: 0.75;
    font-weight: 500;
}

.journey-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Compact Highlights Tags */
.journey-highlights-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    padding: 0.4rem 0.85rem;
    background: var(--soft-white);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 153, 51, 0.1);
    border-color: var(--saffron);
}

/* Journey Card Footer */
.journey-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.journey-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-weight: 500;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--saffron);
    font-family: var(--font-serif);
}

.journey-cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

/* Journey Card Actions (for multiple buttons) */
.journey-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Journey Download Button */
.journey-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--soft-white);
    color: var(--charcoal);
    border: 2px solid var(--saffron);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-download-button:hover {
    background: var(--saffron);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.journey-download-button svg {
    flex-shrink: 0;
}

/* Expand Toggle Button */
.journey-expand-toggle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 40px;
    height: 40px;
    background: var(--saffron);
    border: 3px solid var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.journey-expand-toggle:hover {
    background: var(--marigold);
    transform: translateX(-50%) translateY(50%) scale(1.1);
}

.journey-expand-toggle svg {
    color: var(--soft-white);
    transition: transform 0.3s ease;
}

.journey-card.expanded .journey-expand-toggle svg {
    transform: rotate(180deg);
}

/* Expandable Details Section */
.journey-details-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--soft-white);
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.details-content {
    padding: 2rem;
}

.details-heading {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.details-heading:first-child {
    margin-top: 0;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

.details-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.details-booking-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--saffron);
}

.details-booking-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.details-booking-info p:last-child {
    margin-bottom: 0;
}

/* Custom Journey Card (Full Width Featured) */
.journey-card-custom {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(253, 185, 19, 0.05) 100%);
    border: 2px solid rgba(255, 153, 51, 0.2);
    min-height: auto;
}

.custom-journey-content {
    padding: 3.5rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-card-custom .journey-card-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.journey-card-subtitle {
    font-size: 1.15rem;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.journey-card-custom .journey-card-description {
    max-width: 800px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.journey-card-custom .journey-highlights-compact {
    justify-content: center;
    margin-bottom: 2.5rem;
}

.journey-cta-button-large {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.5);
}

/* ===================================
   JOURNEYS PAGE - TWO-COLUMN LAYOUT (LEGACY - KEEPING FOR REFERENCE)
   =================================== */

/* Introduction Section with Decorative Motifs */
.journeys-intro-section {
    padding: 6rem 0 4rem;
    background: var(--ivory);
    text-align: center;
    position: relative;
}

.decorative-motif {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.decorative-motif.top-motif {
    margin-bottom: 3rem;
}

.decorative-motif.center-motif {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.decorative-motif.cta-motif {
    margin-bottom: 2rem;
}

.intro-text-large {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.35rem;
    line-height: 2;
    color: var(--charcoal);
    font-weight: 300;
}

.decorative-divider {
    margin: 3rem 0;
    text-align: center;
}

.divider-ornament {
    font-size: 1.5rem;
    color: var(--saffron);
    opacity: 0.5;
}

/* Journey Features Section */
.journey-features-section {
    padding: 4rem 0 6rem;
    background: var(--soft-white);
}

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

/* Individual Journey Feature */
.journey-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.journey-feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.journey-feature.reverse .journey-feature-text {
    order: 2;
}

.journey-feature.reverse .journey-feature-image {
    order: 1;
}

/* Featured/Custom Journey - Full Width */
.journey-feature.featured {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 4rem;
    background: var(--ivory);
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 153, 51, 0.1);
}

/* Journey Feature Text */
.journey-feature-text {
    position: relative;
    padding: 2rem;
}

.journey-feature-text.centered {
    text-align: center;
}

/* Decorative Accents */
.feature-accent {
    position: absolute;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--saffron), var(--marigold));
    opacity: 0.6;
}

.feature-accent.left-accent {
    left: 0;
    top: 20px;
}

.feature-accent.right-accent {
    right: 0;
    top: 20px;
}

.feature-accent.center-accent {
    display: none;
}

/* Feature Number */
.feature-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Feature Title */
.feature-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Feature Meta */
.feature-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--saffron);
    font-weight: 500;
}

.journey-feature-text.centered .feature-meta {
    justify-content: center;
}

.meta-divider {
    opacity: 0.5;
}

/* Feature Description */
.feature-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 300;
}

.feature-description.centered-text {
    text-align: center;
}

/* Feature Highlights */
.feature-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-highlights.centered-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.feature-highlights li {
    font-size: 1rem;
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.feature-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.4);
}

/* Feature CTA Button */
.feature-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

/* Corner Motifs */
.corner-motif {
    position: absolute;
    opacity: 0.6;
}

.corner-motif.bottom-left {
    bottom: 0;
    left: 0;
}

.corner-motif.bottom-right {
    bottom: 0;
    right: 0;
}

/* Journey Feature Image */
.journey-feature-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.journey-feature:hover .image-wrapper img {
    transform: scale(1.05);
}

/* Image Accents */
.image-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--marigold);
    opacity: 0.4;
    pointer-events: none;
}

.image-accent.top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.image-accent.top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.image-accent.bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.image-accent.bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

/* ===================================
   GUIDES PAGE
   =================================== */
.guides-content {
    padding: 6rem 0;
    background: var(--ivory);
}

.guides-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.guide-list {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.guide-profile.reverse {
    direction: rtl;
}

.guide-profile.reverse .guide-info {
    direction: ltr;
}

.guide-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guide-info {
    padding: 2rem;
}

.guide-name {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.guide-title {
    font-size: 1.1rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.guide-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.guide-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.specialty {
    padding: 0.5rem 1rem;
    background: var(--soft-white);
    border: 1px solid var(--saffron);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* ===================================
   STORIES PAGE
   =================================== */
.stories-content {
    padding: 6rem 0;
    background: var(--soft-white);
}

.stories-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.story-list {
    max-width: 1000px;
    margin: 0 auto;
}

.story-item {
    background: var(--ivory);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--saffron);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--charcoal);
    font-style: italic;
    font-weight: 300;
}

.story-author {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.author-journey {
    font-size: 0.95rem;
    color: var(--saffron);
    font-weight: 500;
}

/* ===================================
   WHY INDIA PAGE
   =================================== */
.why-india-content {
    padding: 6rem 0;
    background: var(--ivory);
}

.why-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.why-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.why-section.reverse {
    direction: rtl;
}

.why-section.reverse .why-text {
    direction: ltr;
}

.why-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.why-text {
    padding: 2rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-hero {
    background-image: url('images/silent-retreat.jpg');
}

.contact-content {
    padding: 6rem 0;
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem 0;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.contact-note {
    padding: 2rem;
    background: var(--soft-white);
    border-radius: 8px;
    border-left: 4px solid var(--saffron);
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.contact-note strong {
    color: var(--saffron);
}

.contact-form-container {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--ivory);
    border: 1px solid rgba(44, 44, 44, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--charcoal);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--sunrise-gradient);
    color: var(--soft-white);
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.5);
}

/* ===================================
   RESPONSIVE - JOURNEY CARDS
   =================================== */
@media (max-width: 1200px) {
    .journey-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .journey-card-custom {
        grid-column: 1;
    }
    
    .custom-journey-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .journey-cards-section {
        padding: 3rem 0 4rem;
    }
    
    .journey-card-image {
        height: 240px;
    }
    
    .journey-card-content {
        padding: 1.75rem;
    }
    
    .journey-card-title {
        font-size: 1.65rem;
    }
    
    .journey-card-custom .journey-card-title {
        font-size: 2rem;
    }
    
    .journey-card-description {
        font-size: 0.95rem;
    }
    
    .journey-card-footer {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
    }
    
    .journey-pricing {
        justify-content: center;
    }
    
    .journey-cta-button {
        width: 100%;
        text-align: center;
    }
    
    .journey-card-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .journey-download-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .journey-cards-grid {
        gap: 2rem;
    }
    
    .journey-card-image {
        height: 200px;
    }
    
    .journey-card-content {
        padding: 1.5rem;
    }
    
    .journey-card-title {
        font-size: 1.5rem;
    }
    
    .journey-card-custom .journey-card-title {
        font-size: 1.75rem;
    }
    
    .journey-quick-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .highlight-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .custom-journey-content {
        padding: 2.5rem 1.5rem;
    }
    
    .details-content {
        padding: 1.5rem;
    }
    
    .details-heading {
        font-size: 1.2rem;
    }
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
    background-image: url('images/himalayan-monastery.jpg');
}

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-section-title.centered {
    text-align: center;
}

.about-story-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.about-values-section {
    padding: 6rem 0;
    background: var(--soft-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: var(--ivory);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--saffron);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
    background: var(--soft-white);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* Difference Section */
.about-difference-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.difference-content {
    max-width: 1200px;
    margin: 0 auto;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.difference-item {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--saffron);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.difference-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.difference-title {
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.difference-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
}

/* Team Section */
.about-team-section {
    padding: 6rem 0;
    background: var(--soft-white);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Fix for Elena's photo to show full head */
.team-member:nth-child(5) .team-photo {
    background-position: center top;
}

.team-member:hover .team-photo {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* ===================================
   JOURNEY OVERVIEW SECTION
   =================================== */
.journey-overview-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-main {
    max-width: 900px;
}

.overview-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.overview-description p:last-child {
    margin-bottom: 0;
}

.overview-description strong {
    color: var(--saffron);
    font-weight: 600;
}

.overview-sidebar {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--charcoal);
}

.info-value {
    color: var(--charcoal);
    opacity: 0.85;
    text-align: right;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

/* ===================================
   ITINERARY SECTION
   =================================== */
.itinerary-section {
    padding: 5rem 0;
    background: var(--soft-white);
}

.itinerary-day {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.itinerary-day:last-child {
    border-bottom: none;
}

.day-number {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--soft-white);
    background: var(--sunrise-gradient);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.day-content h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.day-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

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

.day-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.detail-item {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.85;
}

.detail-item strong {
    color: var(--saffron);
    font-weight: 600;
}

/* ===================================
   INCLUSIONS SECTION
   =================================== */
.inclusions-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inclusions-box {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inclusions-box h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}

.inclusions-box ul {
    list-style: none;
    padding: 0;
}

.inclusions-box li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.inclusions-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

/* ===================================
   RESPONSIVE - INNER PAGES
   =================================== */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-sidebar {
        position: static;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-feature,
    .journey-feature.reverse,
    .guide-profile,
    .why-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .journey-feature.reverse .journey-feature-text,
    .journey-feature.reverse .journey-feature-image {
        order: initial;
    }

    .journey-feature {
        margin-bottom: 5rem;
    }

    .image-wrapper img {
        height: 400px;
    }

    .feature-accent.left-accent,
    .feature-accent.right-accent {
        display: none;
    }

    .journey-feature.featured {
        padding: 3rem;
    }

    .guide-profile.reverse,
    .why-section.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 0;
    }

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

    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .itinerary-day {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .day-number {
        text-align: left;
    }
    
    .inclusions-box {
        padding: 2rem;
    }

    .journeys-intro-section {
        padding: 4rem 0 3rem;
    }

    .intro-text-large {
        font-size: 1.15rem;
    }

    .journey-features-section {
        padding: 3rem 0 4rem;
    }

    .journey-feature {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .journey-feature-text {
        padding: 1rem;
    }

    .feature-title {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .image-wrapper img {
        height: 350px;
    }

    .image-accent {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .image-accent.top-right,
    .image-accent.top-left,
    .image-accent.bottom-right,
    .image-accent.bottom-left {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .image-accent.top-right {
        top: -10px;
        right: -10px;
    }

    .image-accent.top-left {
        top: -10px;
        left: -10px;
    }

    .image-accent.bottom-right {
        bottom: -10px;
        right: -10px;
    }

    .image-accent.bottom-left {
        bottom: -10px;
        left: -10px;
    }

    .journey-feature.featured {
        padding: 2.5rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .guide-name {
        font-size: 1.75rem;
    }

    .contact-heading,
    .cta-title {
        font-size: 2rem;
    }

    .guide-image,
    .why-image {
        height: 300px;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section-title {
        font-size: 2rem;
    }

    .about-story-text p {
        font-size: 1.05rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        font-size: 3rem;
    }

    .difference-item {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-photo {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .about-story-section,
    .about-values-section,
    .about-difference-section,
    .about-team-section {
        padding: 3rem 0;
    }

    .about-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .about-story-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .value-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-title {
        font-size: 1.35rem;
    }

    .value-description {
        font-size: 0.95rem;
    }

    .difference-item {
        padding: 1.75rem;
    }

    .difference-title {
        font-size: 1.4rem;
    }

    .difference-text {
        font-size: 0.95rem;
    }

    .team-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .team-photo {
        height: 280px;
    }

    .team-name {
        font-size: 1.35rem;
    }

    .team-bio {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .journeys-intro-section {
        padding: 3rem 0 2rem;
    }

    .intro-text-large {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .decorative-motif svg {
        width: 60px;
        height: 30px;
    }

    .journey-features-section {
        padding: 2rem 0 3rem;
    }

    .container-wide {
        padding: 0 1rem;
    }

    .journey-feature {
        margin-bottom: 3rem;
    }

    .journey-feature-text {
        padding: 0.5rem;
    }

    .feature-title {
        font-size: 1.75rem;
    }

    .feature-meta {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .journey-feature-text.centered .feature-meta {
        align-items: center;
    }

    .meta-divider {
        display: none;
    }

    .feature-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-highlights li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .image-wrapper img {
        height: 280px;
    }

    .image-accent {
        display: none;
    }

    .corner-motif {
        display: none;
    }

    .journey-feature.featured {
        padding: 2rem 1.5rem;
    }

    .story-item {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   JOURNEY DETAIL PAGE STYLES
   =================================== */
.journey-detail-section {
    padding: 4rem 0;
}

.journey-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.journey-main-content {
    max-width: 800px;
}

.content-block {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--saffron);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

/* Itinerary Styles */
.itinerary-day {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.itinerary-day:last-child {
    border-bottom: none;
}

.day-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--saffron);
    text-align: center;
    padding: 1rem;
    background: var(--ivory);
    border-radius: 8px;
    height: fit-content;
}

.day-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.day-content p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

/* Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.included-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.included-column ul {
    list-style: none;
    padding: 0;
}

.included-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.85;
}

.included-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: bold;
}

/* Teacher Qualities */
.teacher-qualities {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quality-item {
    padding: 1rem;
    background: var(--ivory);
    border-left: 3px solid var(--saffron);
    border-radius: 4px;
}

.quality-item strong {
    color: var(--saffron);
}

/* Sidebar Styles */
.journey-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--charcoal);
}

.detail-item span {
    color: var(--charcoal);
    opacity: 0.75;
    text-align: right;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, var(--ivory) 0%, white 100%);
    border: 2px solid var(--saffron);
}

.price-display {
    text-align: center;
    margin: 1.5rem 0;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--saffron);
    margin: 0.5rem 0;
}

.price-per {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.75;
}

.price-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.75;
    text-align: center;
    margin: 1rem 0;
}

.cta-button-sidebar {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--sunrise-gradient);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

/* Date Items */
.date-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.date-item:last-of-type {
    border-bottom: none;
}

.date-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.availability {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--ivory);
    color: var(--saffron);
    font-size: 0.85rem;
    border-radius: 12px;
    font-weight: 500;
}

.date-note {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.75;
    font-style: italic;
    margin-top: 1rem;
}

/* Contact Methods */
.contact-methods {
    margin: 1.5rem 0;
}

.contact-method {
    padding: 0.75rem 0;
}

.contact-method strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-method span {
    color: var(--charcoal);
    opacity: 0.75;
}

.contact-link {
    display: inline-block;
    color: var(--saffron);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--saffron);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--marigold);
    border-bottom-color: var(--marigold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--ivory);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--saffron);
    font-weight: 500;
}

/* Responsive Design for Journey Detail */
@media (max-width: 1024px) {
    .journey-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-sidebar {
        position: static;
    }
    
    .highlights-grid,
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .itinerary-day {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .day-number {
        text-align: left;
    }
    
    .section-subtitle {
        font-size: 1.75rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .journey-detail-section {
        padding: 3rem 0;
    }
    
    .content-block {
        margin-bottom: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
}

/* ===================================
   INDIA MAGNIFICENT PAGE STYLES
   =================================== */
.journey-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.itinerary-section {
    margin: 3rem 0;
}

.itinerary-day {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.itinerary-day:last-child {
    border-bottom: none;
}

.day-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1.25rem;
}

.day-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

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

.day-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

.day-content em {
    font-style: italic;
    color: var(--saffron);
}

/* Journey Details Grid */
.journey-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.detail-box {
    background: var(--ivory);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.detail-box h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1.5rem;
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.detail-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

.detail-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-top: 1rem;
}

.detail-box em {
    font-style: italic;
    opacity: 0.85;
}

/* Visa Info Box */
.visa-info-box {
    background: var(--ivory);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--saffron);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.visa-info-box h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.visa-info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.visa-info-box p:last-child {
    margin-bottom: 0;
}

.visa-info-box a {
    color: var(--saffron);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.visa-info-box a:hover {
    color: var(--marigold);
}

/* Responsive for India Magnificent Page */
@media (max-width: 1024px) {
    .journey-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .day-title {
        font-size: 1.5rem;
    }
    
    .day-content p {
        font-size: 0.95rem;
    }
    
    .detail-box {
        padding: 2rem;
    }
    
    .detail-box h3 {
        font-size: 1.5rem;
    }
    
    .visa-info-box {
        padding: 2rem;
    }
    
    .visa-info-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .itinerary-section {
        margin: 2rem 0;
    }
    
    .itinerary-day {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .day-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .day-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-box {
        padding: 1.5rem;
    }
    
    .detail-box h3 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-box li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .visa-info-box {
        padding: 1.5rem;
    }
    
    .visa-info-box h3 {
        font-size: 1.35rem;
    }
    
    .visa-info-box p {
        font-size: 0.9rem;
    }
}

/* ===================================
   ANANDA SPA PROGRAMME STYLES
   =================================== */
.ananda-category {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--saffron);
}

.ananda-category h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.ananda-category ul {
    list-style: none;
    padding: 0;
}

.ananda-category li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.ananda-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

.ananda-programme {
    background: var(--ivory);
    padding: 1.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ananda-programme:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ananda-programme h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.ananda-programme p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* Responsive for Ananda Spa Programme */
@media (max-width: 768px) {
    .ananda-category {
        padding: 1.5rem;
    }
    
    .ananda-category h3 {
        font-size: 1.35rem;
    }
    
    .ananda-programme {
        padding: 1.5rem;
    }
    
    .ananda-programme h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ananda-category {
        padding: 1.25rem;
    }
    
    .ananda-category h3 {
        font-size: 1.2rem;
    }
    
    .ananda-category li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    
    .ananda-programme {
        padding: 1.25rem;
    }
    
    .ananda-programme h3 {
        font-size: 1.15rem;
    }
    
    .ananda-programme p {
        font-size: 0.95rem;
    }
}

/* ===================================
   TRIP DETAIL PAGE STYLES
   =================================== */
.trip-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 80px;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.trip-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.trip-hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

/* Trip Overview Section */
.trip-overview-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.trip-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.overview-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.country-highlights {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.country-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.country-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FF9933;
}

.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trip-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trip-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlights-list,
.includes-list {
    list-style: none;
    padding: 0;
}

.highlights-list li,
.includes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlights-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: bold;
}

.includes-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #FDB913;
}

/* Itinerary Timeline */
.itinerary-timeline {
    max-width: 900px;
    margin: 3rem auto;
}

.itinerary-day {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.itinerary-day:before {
    content: "";
    position: absolute;
    left: 50px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, #FF9933, #FDB913);
}

.itinerary-day:last-child:before {
    display: none;
}

.day-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF9933, #FDB913);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.day-content {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.day-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.day-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.day-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.meta-tag {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #FF9933;
    border: 1px solid #FF9933;
}

/* Practical Info Section */
.practical-info-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.info-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF9933;
}

/* Trip CTA Section */
.trip-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-primary {
    background: linear-gradient(135deg, #FF9933, #FDB913);
    color: white;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Journey Quick Info in Hero */
.journey-quick-info-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--marigold);
}

.hero-info-item {
    font-weight: 500;
}

.hero-info-divider {
    opacity: 0.6;
}

/* Journey Highlights Section */
.journey-highlights-section {
    padding: 5rem 0;
    background: var(--soft-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: var(--ivory);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 0.75rem;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
}

/* Day Highlights Tags */
.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.day-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--saffron);
    font-weight: 500;
}

/* Inclusions Column */
.inclusions-column {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inclusions-column h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}

.inclusions-list,
.exclusions-list {
    list-style: none;
    padding: 0;
}

.inclusions-list li,
.exclusions-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.inclusions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

.exclusions-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--charcoal);
    opacity: 0.5;
    font-weight: 600;
}

/* Accommodation Section */
.accommodation-section {
    padding: 5rem 0;
    background: var(--ivory);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.accommodation-item {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accommodation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accommodation-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 0.75rem;
}

.accommodation-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.85;
}

.accommodation-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
}

/* Best Time Section */
.best-time-section {
    padding: 5rem 0;
    background: var(--soft-white);
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.season-item {
    background: var(--ivory);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.season-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.season-item.recommended {
    border-color: var(--saffron);
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(253, 185, 19, 0.05) 100%);
}

.season-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.season-label {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--saffron);
    color: var(--soft-white);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.season-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trip-hero-title {
        font-size: 2rem;
    }
    
    .journey-quick-info-hero {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-info-divider {
        display: none;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-day {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }
    
    .day-number {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    
    .itinerary-day:before {
        left: 35px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }
}
