:root {
    --primary: #00897b;
    --primary-light: #4db6ac;
    --secondary: #263238;
    --accent: #ffb300;
    --bg-color: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-main: #37474f;
    --text-muted: #78909c;
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism Classes */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 80px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-bottom: none;
}

.navbar.transparent {
    background: transparent;
}

.navbar.transparent .nav-links a, 
.navbar.transparent .logo,
.navbar.transparent .nav-icon-btn {
    color: white;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo,
.navbar.scrolled .nav-icon-btn {
    color: var(--secondary, #111);
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 240px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333 !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    height: auto;
    position: relative;
}

.dropdown a:hover {
    background: rgba(var(--primary-rgb, 4, 57, 39), 0.05);
    color: var(--primary) !important;
    padding-left: 32px;
}

/* Accent Indicator */
.dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: all 0.3s ease;
}

.dropdown a:hover::before {
    height: 60%;
}

.nav-links li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nested Dropdowns (Grandchildren) - Open to the side */
.dropdown li > .dropdown {
    left: 100%;
    top: 0;
    transform: translateX(10px);
    margin-top: -10px; /* Align with parent li padding */
}

.dropdown li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

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

.mobile-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

/* Main Layout */
/* Cinematic Hero/Slider */
.premium-slider-wrapper {
    margin-top: -100px; /* Pull under transparent navbar */
}

.premium-slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

.premium-slider .slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.premium-slider .slide-content {
    max-width: 900px;
    padding: 40px;
    z-index: 5;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.4s;
}

.premium-slider .slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.premium-slider .subtitle {
    display: block;
    color: var(--primary, #D4AF37);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.premium-slider h1 {
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.4);
    letter-spacing: -2px;
}

/* Premium Tour Cards */
.lux-tour-card {
    border-radius: 30px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.lux-tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.lux-tour-img {
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.lux-tour-card:hover .lux-tour-img img {
    transform: scale(1.1);
}

.lux-tour-category {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-info {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-block {
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* Tour Cards */
.tour-card {
    transition: transform 0.3s;
    overflow: hidden;
}

/* Enquiry Modal Styles */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: white;
    color: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.close-modal {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #111;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 0, 137, 123), 0.1);
}

.modal-body .form-actions {
    margin-top: 20px;
    text-align: center;
}

.modal-body .btn-premium {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 8px;
    background: var(--primary, #D4AF37);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-body .btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    height: 200px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-body {
    padding: 24px;
}

.tour-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Premium Splash Screen Overlay */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Use white or #000 depending on branding */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1), transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}

#splash-screen.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.splash-inner {
    text-align: center;
    animation: splash-entrance 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

#splash-logo-wrapper {
    margin-bottom: 30px;
}

#splash-logo-wrapper img, #splash-logo-wrapper i {
    height: 120px;
    width: auto;
    object-fit: contain;
    animation: logo-heartbeat 3s ease-in-out infinite 1.2s;
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: rgba(0,0,0,0.05);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--primary, #D4AF37);
    left: -50%;
    animation: loader-slide 1.5s infinite ease-in-out;
}

.splash-text {
    margin-top: 25px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

@keyframes splash-entrance {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes logo-heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes loader-slide {
    0% { left: -100%; width: 30%; }
    50% { width: 60%; }
    100% { left: 100%; width: 30%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--secondary);
    color: #cfd8dc;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer h3 {
    color: white;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

/* Premium Slider */
.premium-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.premium-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.slides-container {
    height: 100%;
    width: 100%;
}

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

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-content {
    max-width: 900px;
    padding: 0 40px;
    color: white;
    text-align: center;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
    opacity: 0;
    z-index: 20;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.slide-content .title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-content .location {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slide-content .description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 30;
}

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

.nav-dot.active {
    background: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slide-content .title {
        font-size: 2.5rem;
    }
    .slide-content .description {
        font-size: 1rem;
    }
}

/* Grid & Block Styling */
.block-grid {
    width: 100%;
}

@media (max-width: 992px) {
    .block-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.grid-column {
    min-width: 0;
}

.block-header h2, .block-text p {
    margin: 0;
    transition: all 0.3s ease;
}

/* Premium Tour Block */
.cms-block-tour {
    margin: 40px 0;
}

.premium-tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.premium-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.premium-tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tour-content {
    padding: 24px;
}

.tour-meta {
    margin-bottom: 12px;
}

.tour-rating {
    color: #FFB300;
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.tour-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.tour-price .label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-price .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-premium {
    background: var(--primary, #00897b);
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-premium:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tours Grid */
.tours-grid-container {
    padding: 60px 0;
}

.grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.grid-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Explorer Tour Card */
.explorer-tour-card {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.explorer-tour-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.explorer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.explorer-badge {
    position: absolute;
    top: 25px;
    left: 0;
    background: #b5a489; /* Luxury Tan */
    color: white;
    padding: 8px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.explorer-content {
    position: relative;
    z-index: 2;
    color: white;
}

.explorer-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.explorer-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: white;
}

.explorer-divider {
    width: 60px;
    height: 3px;
    background: white;
    margin-bottom: 25px;
    border-radius: 2px;
}

.explorer-duration {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 35px;
    opacity: 0.95;
}

.explorer-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}

.explorer-btn:hover {
    opacity: 0.8;
}

.explorer-plus {
    width: 45px;
    height: 45px;
    background: white;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.explorer-btn-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.tour-loading-placeholder {
    padding: 60px;
    text-align: center;
    background: rgba(0,0,0,0.02);
    border-radius: 20px;
    border: 2px dashed rgba(0,0,0,0.05);
    color: #999;
    font-style: italic;
}

@media (max-width: 992px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tours-grid { grid-template-columns: 1fr; }
}
/* Premium Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                visibility 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    animation: logo-pulse 2s infinite ease-in-out;
}

@keyframes logo-pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.loader-bar {
    width: 150px;
    height: 2px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary, #043927);
    animation: loader-slide 1.5s infinite ease-in-out;
}

@keyframes loader-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Site-wide Fade-In Transitions */
body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.site-ready {
    opacity: 1;
}

/* Hide content during splash */
#splash-screen ~ * {
    visibility: hidden;
}

body.site-ready #splash-screen ~ * {
    visibility: visible;
}

/* Tour Duration Overview Section */
.duration-overview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
}

.duration-badge {
    background: #f9f9f9;
    padding: 12px 20px;
    border-radius: 12px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.duration-badge:hover {
    background: #fff;
    border-color: var(--primary, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.duration-badge .badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    font-weight: 800;
    margin-bottom: 5px;
}

.duration-badge .badge-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

.duration-badge i {
    font-size: 0.9rem;
    color: var(--primary, #D4AF37);
}

/* Premium Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    visibility: hidden;
}

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

.search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
    line-height: 1;
}

.search-overlay-close:hover {
    transform: rotate(90deg);
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-title {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--primary, #D4AF37);
    margin-bottom: 20px;
    font-weight: 800;
}

.search-input-wrapper {
    position: relative;
    border-bottom: 2px solid #222;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 60px 20px 0;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    outline: none;
    color: #111;
}

.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-submit:hover {
    color: var(--primary, #D4AF37);
}

.search-hint {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .search-input-wrapper input {
        font-size: 1.6rem;
    }
    .search-overlay-close {
        top: 25px;
        right: 25px;
        font-size: 2.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: whatsapp-pop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

.whatsapp-float i {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pop {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }
}

/* Floating Social Sidebar - Enhanced Premium Version */
.floating-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.35) !important; /* Significant translucency for glass effect */
    backdrop-filter: blur(35px) saturate(180%) !important; /* Extreme blur for premium glass */
    -webkit-backdrop-filter: blur(35px) saturate(180%) !important;
    padding: 24px 14px;
    border-radius: 35px 0 0 35px; /* Softer corners */
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.4) !important; /* White edge light */
    border-right: none;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.2) !important;
    animation: sidebar-slide-in 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes sidebar-slide-in {
    from { transform: translate(100%, -50%); opacity: 0; }
    to { transform: translate(0, -50%); opacity: 1; }
}

.floating-social-sidebar a {
    color: var(--primary, #00897b); /* Use Theme Color */
    font-size: 1.4rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; /* Slightly larger */
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid rgba(var(--primary-rgb, 0, 137, 123), 0.15); /* Soft border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateX(20px) scale(0.8);
    animation: icon-pop-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes icon-pop-in {
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Staggered Entry Animation */
.floating-social-sidebar a:nth-child(1) { animation-delay: 0.3s; }
.floating-social-sidebar a:nth-child(2) { animation-delay: 0.45s; }
.floating-social-sidebar a:nth-child(3) { animation-delay: 0.6s; }
.floating-social-sidebar a:nth-child(4) { animation-delay: 0.75s; }
.floating-social-sidebar a:nth-child(5) { animation-delay: 0.9s; }

.floating-social-sidebar a:hover {
    color: white;
    background: var(--primary);
    transform: scale(1.2) translateX(-8px);
    box-shadow: 0 12px 25px rgba(var(--primary-rgb, 0, 137, 123), 0.25), 
                0 0 15px rgba(var(--primary-rgb, 0, 137, 123), 0.15);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .floating-social-sidebar {
        padding: 15px 8px;
        gap: 15px;
        border-radius: 20px 0 0 20px;
    }
    .floating-social-sidebar a {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .floating-social-sidebar {
        padding: 18px 10px;
        gap: 18px;
        border-radius: 18px 0 0 18px;
    }
    .floating-social-sidebar a {
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
}
