/* ==========================================================================
   Budget Arugambay Tours - Premium Design System
   Theme: Luxury Tropical Coastal & Wildlife Safari
   ========================================================================== */

:root {
    --primary: #0B2545;        /* Deep Ocean Navy */
    --primary-light: #133E6D;
    --secondary: #00A896;      /* Tropical Turquoise */
    --secondary-hover: #028072;
    --accent: #F4A261;         /* Warm Sunrise Gold */
    --accent-dark: #E76F51;    /* Sunset Coral */
    --safari-green: #1A4D2E;   /* Kumana Jungle Green */
    --dark: #121820;
    --light: #F8F9FA;
    --body-color: #334155;
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(11, 37, 69, 0.16);
    --border-radius: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--body-color);
    background-color: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-hover);
}

/* ==========================================
   Top Notification / Announcement Bar
   ========================================== */
.top-announcement {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement a {
    color: var(--accent);
}

.top-announcement a:hover {
    color: #fff;
}

/* ==========================================
   Navigation Bar (Glassmorphic & Sticky)
   ========================================== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 12px 0;
    z-index: 1040;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-book-nav {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: #fff !important;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.35);
    transition: var(--transition);
}

.btn-book-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 168, 150, 0.5);
    color: #fff !important;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-wrapper {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #0b2545 url('../images/hero_safari.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.8) 0%, rgba(11, 37, 69, 0.6) 50%, rgba(11, 37, 69, 0.85) 100%);
    z-index: 2;
}

.hero-video-controls {
    position: absolute;
    bottom: 25px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-video-btn {
    background: rgba(11, 37, 69, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.05rem;
}

.hero-video-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.4);
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: elemFadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both, elemGlowBorder 4s infinite ease-in-out;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: elemFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-title span {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #FFE3C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: elemFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-actions {
    animation: elemFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-badge-card {
    animation: elemZoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both, elemFloat 6s ease-in-out 1.25s infinite;
}

.hero-stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================
   Live Animated Weather & Surf Widget
   ========================================== */
.weather-widget-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    padding: 24px 22px 18px;
    background: linear-gradient(135deg, rgba(16, 37, 66, 0.88) 0%, rgba(10, 25, 47, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    max-width: 440px;
    margin: 0 auto;
    animation: elemFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.weather-widget-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Rain & Bokeh Overlay Background Effect */
.weather-bg-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.weather-bg-bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.3;
}

.bokeh-1 {
    width: 120px;
    height: 120px;
    background: #f7931e;
    top: -20px;
    right: -20px;
    animation: bokehPulse 6s infinite alternate ease-in-out;
}

.bokeh-2 {
    width: 90px;
    height: 90px;
    background: #00a896;
    bottom: 10px;
    left: -10px;
    animation: bokehPulse 8s infinite alternate-reverse ease-in-out;
}

.bokeh-3 {
    width: 70px;
    height: 70px;
    background: #4cc9f0;
    top: 45%;
    left: 40%;
    animation: bokehPulse 7s infinite alternate ease-in-out;
}

@keyframes bokehPulse {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(12px, -8px) scale(1.18); opacity: 0.38; }
    100% { transform: translate(-8px, 12px) scale(0.92); opacity: 0.2; }
}

/* Glass condensation droplets */
.glass-raindrop {
    position: absolute;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.drop-1 { width: 6px; height: 10px; top: 22%; left: 35%; border-radius: 40% 40% 60% 60%; animation: dropSlither 9s infinite; }
.drop-2 { width: 8px; height: 13px; top: 48%; right: 28%; border-radius: 40% 40% 60% 60%; animation: dropSlither 12s infinite 2.5s; }
.drop-3 { width: 5px; height: 8px; bottom: 25%; left: 18%; border-radius: 50%; }
.drop-4 { width: 9px; height: 14px; top: 62%; left: 68%; border-radius: 40% 40% 60% 60%; animation: dropSlither 10s infinite 4.5s; }

@keyframes dropSlither {
    0% { transform: translateY(0); opacity: 0.6; }
    80% { transform: translateY(14px); opacity: 0.85; }
    100% { transform: translateY(26px); opacity: 0; }
}

/* Weather Content Layout */
.weather-widget-content {
    position: relative;
    z-index: 2;
}

.weather-location-btn {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    background: transparent;
    padding: 0;
    border: none;
}

.weather-location-btn:hover {
    color: var(--accent);
}

.weather-temp-val {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.95;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    color: #ffffff;
}

.weather-temp-degree {
    font-size: 2.2rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.9);
}

.weather-unit-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(5px);
}

.weather-unit-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Animated Weather Icons Stage */
.weather-icon-stage {
    position: relative;
    width: 72px;
    height: 56px;
    display: inline-block;
}

.anim-sun {
    position: absolute;
    top: 2px;
    right: 8px;
    width: 34px;
    height: 34px;
    animation: rotateSun 14s linear infinite;
    transform-origin: center;
}

@keyframes rotateSun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.anim-cloud {
    position: absolute;
    bottom: 3px;
    right: 0;
    width: 56px;
    height: 36px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: driftCloud 3.5s ease-in-out infinite alternate;
}

@keyframes driftCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(-4px); }
}

.anim-rain-wrap {
    position: absolute;
    bottom: -6px;
    right: 14px;
    display: flex;
    gap: 7px;
}

.anim-rain-drop {
    width: 2.5px;
    height: 9px;
    background: #4cc9f0;
    border-radius: 2px;
    opacity: 0.85;
    animation: fallRain 1.1s linear infinite;
}

.anim-rain-drop.r2 { animation-delay: 0.35s; }
.anim-rain-drop.r3 { animation-delay: 0.7s; }

@keyframes fallRain {
    0% { transform: translateY(-4px) rotate(15deg); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(11px) rotate(15deg); opacity: 0; }
}

.weather-cond-desc {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.weather-surf-note {
    font-size: 0.78rem;
    color: #64dfdf;
    font-weight: 500;
}

/* Hourly Row */
.weather-hourly-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 6px;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 14px;
}

.hour-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hour-slot .time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hour-slot .icon {
    font-size: 1.18rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hour-slot:hover .icon {
    transform: scale(1.25);
}

.hour-slot .temp {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.hourly-arrow-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0 4px;
}

.hourly-arrow-btn:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Footer widget pill */
.weather-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.weather-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.weather-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}

/* ==========================================
   Element-Based Animation Keyframes & System
   ========================================== */
@keyframes elemFadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes elemFadeInRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes elemZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes elemFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes elemPulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes elemGlowBorder {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.25);
    }
    50% {
        border-color: rgba(247, 147, 30, 0.65);
    }
}

/* Scroll-Triggered Reveal Animations on Elements */
[data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition-property: opacity, transform;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"] {
    transform: translateY(40px);
}

[data-reveal="fade-down"] {
    transform: translateY(-40px);
}

[data-reveal="fade-left"] {
    transform: translateX(40px);
}

[data-reveal="fade-right"] {
    transform: translateX(-40px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.92);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ==========================================
   Quick Search / Booking Floating Card
   ========================================== */
.booking-search-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    margin-top: 0;
    position: relative;
    z-index: 20;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-field label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field .form-control,
.search-field .form-select {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
    transition: var(--transition);
}

.search-field .form-control:focus,
.search-field .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.15);
}

.btn-search-submit {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    width: 100%;
    transition: var(--transition);
    height: 48px;
}

.btn-search-submit:hover {
    background: linear-gradient(135deg, var(--secondary-hover), #016358);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 150, 0.35);
}

/* ==========================================
   Stats Banner
   ========================================== */
.stats-section {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid #EEF2F6;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   Tour Cards
   ========================================== */
.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.tour-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #EEF2F6;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 150, 0.3);
}

.tour-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 37, 69, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-badge.badge-popular {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.tour-rating-pill {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-rating-pill i {
    color: #FFB703;
}

.tour-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: #64748B;
    margin-bottom: 12px;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.tour-card-title a {
    color: var(--primary);
}

.tour-card-title a:hover {
    color: var(--secondary);
}

.tour-desc {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #EEF2F6;
    margin-top: auto;
}

.tour-price-box .price-prefix {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    display: block;
    margin-bottom: -2px;
}

.tour-price-box .price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.tour-price-box .price-unit {
    font-size: 0.8rem;
    color: #64748B;
}

.btn-view-tour {
    background: rgba(0, 168, 150, 0.1);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-view-tour:hover {
    background: var(--secondary);
    color: #fff;
}

/* ==========================================
   Trust & Awards Section
   ========================================== */
.trust-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #EEF2F6;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.trust-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(0, 168, 150, 0.1);
    color: var(--secondary);
}

.trust-card h5 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 0;
}

/* Badges showcase */
.badge-showcase {
    background: linear-gradient(135deg, #0B2545, #133E6D);
    border-radius: var(--border-radius);
    padding: 40px;
    color: #fff;
}

.badge-item img {
    max-height: 85px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: var(--transition);
}

.badge-item img:hover {
    transform: scale(1.05);
}

/* ==========================================
   Reviews / Testimonials
   ========================================== */
.review-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 28px;
    border: 1px solid #EEF2F6;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.review-stars {
    color: #FFB703;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.92rem;
    color: #475569;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-info h6 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-info span {
    font-size: 0.78rem;
    color: #94A3B8;
}

/* ==========================================
   Gallery Grid
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

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

/* ==========================================
   Tour Detail Timeline & Pricing Table
   ========================================== */
.timeline-item {
    position: relative;
    padding-left: 36px;
    padding-bottom: 30px;
    border-left: 2px solid #E2E8F0;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left: 2px solid transparent;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-time {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Pricing Tiers Table */
.pricing-pax-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EEF2F6;
    margin-bottom: 24px;
}

.pricing-pax-table thead {
    background: var(--primary);
    color: #fff;
}

.pricing-pax-table th {
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.pricing-pax-table td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 0.95rem;
}

.pricing-pax-table tr:hover td {
    background: rgba(0, 168, 150, 0.05);
}

/* Inclusions / Exclusions */
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.checklist-item i.bi-check-circle-fill {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item i.bi-x-circle-fill {
    color: #EF4444;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-tooltip {
    background: #fff;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #25D366;
}

.whatsapp-tooltip span.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    display: inline-block;
}

.btn-whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: elemPulseRing 2.4s infinite ease-out;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65);
    color: #fff !important;
}

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

/* Enhanced Micro-Interactions on Interactive Elements */
.tour-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 38px rgba(11, 37, 69, 0.12);
}

.tour-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.trust-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.trust-card .trust-icon-box {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, color 0.35s ease;
}

.trust-card:hover .trust-icon-box {
    transform: scale(1.12) rotate(5deg);
    background: var(--secondary);
    color: #fff;
}

.review-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 37, 69, 0.09);
}

.stat-item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.badge-item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.badge-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.btn-search-submit {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.45);
}

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-badge-card,
    .btn-whatsapp-float {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background: #07172C;
    color: #94A3B8;
    padding: 80px 0 30px;
    font-size: 0.92rem;
    border-top: 3px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/footer.jpeg') center/cover no-repeat;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.site-footer h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #94A3B8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ==========================================
   Responsive Utilities
   ========================================== */
@media (max-width: 991.98px) {
    .booking-search-card {
        margin-top: 0;
        padding: 20px;
    }
    .hero-wrapper {
        min-height: 75vh;
        padding: 80px 0 100px;
    }
    .navbar-custom {
        padding: 10px 0;
    }
}

/* ==========================================
   Standalone Weather Section
   ========================================== */
.weather-section-standalone {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.weather-section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.weather-section-bgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.weather-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,37,69,0.92) 0%, rgba(19,62,109,0.80) 100%);
}

.weather-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
}

/* ==========================================
   Currency Exchange Section
   ========================================== */
.currency-exchange-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.currency-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(11,37,69,0.10);
    border: 1px solid var(--border-color);
}

.currency-input {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 16px;
    transition: var(--transition);
}

.currency-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,168,150,0.12);
    outline: none;
}

.currency-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.currency-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,168,150,0.12);
    outline: none;
}

.currency-arrow {
    font-size: 1.6rem;
    color: var(--secondary);
    animation: arrowPulse 1.8s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(4px); opacity: 0.7; }
}

.currency-to-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.currency-result-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 18px;
    padding: 28px 32px;
    color: #fff;
}

.currency-result-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.currency-result-from {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    opacity: 0.85;
}

.currency-result-equals {
    font-size: 2rem;
    opacity: 0.6;
    color: var(--accent);
}

.currency-result-lkr {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lkr-amount {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.lkr-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.currency-rate-note {
    margin-top: 14px;
    font-size: 0.8rem;
    opacity: 0.65;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 14px;
}

.currency-quick-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.currency-quick-pill {
    background: transparent;
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.currency-quick-pill:hover,
.currency-quick-pill.active {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* Budget Guide Sidebar Card */
.currency-budget-card {
    background: linear-gradient(145deg, var(--primary), #1a4d80);
    border-radius: 20px;
    padding: 28px 24px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(11,37,69,0.20);
    height: 100%;
}

.currency-budget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.currency-budget-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.currency-budget-header h5 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.currency-budget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.currency-budget-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
}

.budget-label {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

.budget-label i { color: var(--accent); }

.budget-value {
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .currency-card {
        padding: 24px 18px;
    }
    .lkr-amount {
        font-size: 2.2rem;
    }
    .currency-result-from {
        font-size: 1.2rem;
    }
    .weather-section-standalone {
        padding: 60px 0;
    }
}
