/* === CSS Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === Header / Navigation === */
header {
    background-color: #122232;
    /* Dark blue background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo .highlight {
    color: #00d2ff;
    /* Bright blue for "Lucky" */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d2ff;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #00d2ff;
}

/* === Buttons === */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-quote {
    background-color: #f38210;
    /* Orange */
    color: #ffffff;
}

.btn-quote:hover {
    background-color: #d16e0c;
}

.btn-primary {
    background-color: #f38210;
    /* Orange */
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #d16e0c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* === Hero Section === */
.hero {
    position: relative;
    /* Using a placeholder nature image, replace url() with your local image path like 'images/sigiriya.jpg' */
    background-image: linear-gradient(rgba(18, 34, 50, 0.6), rgba(18, 34, 50, 0.6)), url('Src/img/cusom_wp.jpg');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 76px);
    /* Full height minus header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* === Modern Hero Animations & Effects === */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(243, 130, 16, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(243, 130, 16, 0.8);
    }

    100% {
        box-shadow: 0 0 15px rgba(243, 130, 16, 0.4);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.text-gradient {
    /* Bright, modern gradient from orange to yellow for the highlight text */
    background: linear-gradient(90deg, #f38210, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Enhanced modern button styles for the hero */
.btn-glow {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.5s infinite alternate;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    /* slightly popping effect */
}

/* Glass table effect for secondary button */
.glass-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-3px) scale(1.02);
    border-color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);

    /* Shape of the Mouse */
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    display: flex;
    justify-content: center;
}

/* The Animated Wheel */
.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    margin-top: 10px;
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

/* Movement Animation */
@keyframes scroll-anim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* === Floating Chat Widget === */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* === Responsive Design === */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* === Layout Utility === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === About / Guide Section === */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* -- Left Column: Image -- */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    /* Let badge break out */
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, #f38210, #ffaa00);
    color: #ffffff;
    padding: 22px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(243, 130, 16, 0.4);
    z-index: 5;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
}

/* -- Right Column: Content -- */
.about-content h2 {
    color: #122232;
    /* Dark blue */
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* -- Credentials Card -- */
.credentials-card {
    border: 2px solid rgba(0, 210, 255, 0.5);
    /* Modern soft border */
    border-radius: 16px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credentials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00d2ff, #f38210);
}

.credentials-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.15);
    border-color: #00d2ff;
}

.highlight-cyan {
    color: #00d2ff;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-cyan::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 2px;
    left: 0;
    background-color: rgba(0, 210, 255, 0.2);
    z-index: -1;
}

/* --- Global Scroll & Float Animations --- */
.scroll-reveal {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

.scroll-reveal.active {
    opacity: 1;
    visibility: visible;
}

.fade-up {
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.8s;
}

.fade-up.active {
    transform: translateY(0);
}

.fade-right {
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.8s;
}

.fade-right.active {
    transform: translateX(0);
}

.fade-left {
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.8s;
}

.fade-left.active {
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-anim {
    animation: floatAnim 4s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header i {
    font-size: 24px;
    color: #00d2ff;
}

.card-header h3 {
    color: #122232;
    font-size: 1.3rem;

}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease;
}

.credentials-list li:hover {
    transform: translateX(5px);
}

.credentials-list li i {
    color: #f38210;
    /* Orange */
    font-size: 18px;
    margin-top: 3px;

}

.cred-text h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 4px;

}

.cred-text p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

/* === Responsive Adjustments for About Section === */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .experience-badge {
        right: 20px;
        /* Pulls the badge inside the wrapper slightly on smaller screens */
        bottom: -30px;
    }
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f8fb;
    margin: 0;
    padding: 0;
    color: #333;
}

/* SECTION */

.adventures-section {
    padding: 70px 0;
}

.container {
    width: 90%;
    margin: auto;
}

/* SLIDER */

.slider {
    overflow: hidden;
    width: 100%;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.slide-track {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* CARD */

.tour-card {
    width: 350px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    -webkit-user-select: none;
    user-select: none;

}

/* IMAGE */

.card-image-gallery {
    position: relative;
}

.img-main {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.sub-images {
    display: flex;
}

.img-sub {
    width: 50%;
    height: 90px;
    object-fit: cover;
}

.img-sub.top-center {
    object-position: top center;
}

/* BADGES */

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 5px;
    color: white;
    letter-spacing: 0.5px;
}

.badge-orange {
    background: #ff7b00;
}

.badge-blue {
    background: #2196f3;
}

.badge-green {
    background: #4caf50;
}

.badge-purple {
    background: #9c27b0;
}

.badge-red {
    background: #e53935;
}

.badge-teal {
    background: #009688;
}

/* CONTENT */

.card-content {
    padding: 20px;
}

/* TITLE */

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d2b3a;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* META INFO */

.tour-meta {
    font-size: 14px;
    color: #6b7a8c;
    margin-bottom: 15px;
    line-height: 1.7;
}

.tour-meta p {
    margin: 0;
}

/* HIGHLIGHTS */

.tour-highlights h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1d2b3a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tour-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlights li {
    font-size: 14px;
    color: #5a6a7a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* BUTTON */

.btn-blue {
    display: block;
    margin-top: auto;
    text-align: center;
    background: #2f6fa5;
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.btn-blue:hover {
    background: #1e4f79;
}

.slider {
    overflow-x: auto;
    /* Allow native touch scroll */
    cursor: grab;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
    /* Smooth inertia scroll on iOS */
}

.swipe-hint {
    display: none;
    /* Hidden by default */
}

.slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

@media (max-width: 768px) {
    .adventures-section {
        padding: 50px 0;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    .adventures-header .section-title {
        font-size: 1.8rem;
    }

    .tour-card {
        width: 85vw;
        /* Show part of the next card */
        max-width: 320px;
    }

    .img-main {
        height: 180px;
    }

    .img-sub {
        height: 70px;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .tour-meta p {
        font-size: 13px;
    }

    .tour-highlights h4 {
        font-size: 12px;
    }

    .tour-highlights li {
        font-size: 13px;
    }

    .btn-blue {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Swipe Hint Styling */
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #8392ab;
        font-size: 13px;
        margin-top: 20px;
        font-style: italic;
    }

    .swipe-hint i {
        animation: swipe-move 1.5s infinite;
    }

    @keyframes swipe-move {

        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(10px);
        }
    }
}

.slider:hover .slide-track {
    animation-play-state: paused;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* FIX: Centering the Header */
.section-header {
    text-align: center;
    /* This keeps both words in the middle */
    margin-bottom: 50px;
}

.main-title {
    font-size: 32px;
    color: #050649;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    color: #8392ab;
    font-size: 16px;
}

/* FIX: Advanced Grid Layout */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 209, 249, 0.4);
}

/* Icon Styles */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.icon-box img {
    width: 28px;
}

/* Subtle gradients for icon boxes to make them premium */
.blue {
    background: linear-gradient(135deg, #0288d1, #29b6f6);
}

.light-blue {
    background: linear-gradient(135deg, #03a9f4, #4fc3f7);
}

.pale-blue {
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
}

/* Text inside cards */
.service-card h3 {
    color: #1e293b;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
    /* Left align is much cleaner for cards */
    line-height: 1.3;
}

.service-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
    /* Justified text makes awkward spacing, replaced with left */
}

/* Mobile Responsiveness for Services Grid */
@media screen and (max-width: 992px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 25px;
    }
}

/* Section Background with Dark Gradient */
.design-path {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header Styling */
.design-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #cbd5e1;
    /* Soft white/grey */
}

.design-header p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Form Container */
.form-card {
    text-align: left;
}

/* 3-Part Section styling */
.form-section {
    padding: 40px 45px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.section-1 {
    background-color: #ffffff;
}

.section-2 {
    background-color: #f8fafc;
}

.section-3 {
    background-color: #f0f9ff;
    border-color: #bae6fd;
}

.section-badge-wrap {
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.section-badge {
    background-color: #334155;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-blue {
    background-color: #0369a1;
}

.badge-orange {
    background-color: #ea580c;
}

.form-group {
    margin-bottom: 25px;
}

.form-card label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    color: #334155;
    letter-spacing: 0.5px;
}

/* Form Grid System */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Flex Wrappers */
.date-picker-wrap,
.group-size-wrap {
    display: flex;
    gap: 15px;
}

.date-input,
.counter-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flex-grow {
    flex: 1.5 !important;
}

.w-100 {
    width: 100% !important;
}

.date-label,
.counter-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Universal Input Styling */
input[type="date"],
input[type="number"],
.custom-select,
.text-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

/* Prevent native OS styling on dropdowns */
.custom-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    appearance: none;
    -webkit-appearance: none;
}

input[type="date"]:focus,
input[type="number"]:focus,
.custom-select:focus,
.text-input:focus,
textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Choice Chips (Interactive) */
.choice-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choice-chips label {
    background: #f1f5f9;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    user-select: none;
}

.choice-chips label:hover {
    background: #e2e8f0;
}

/* Magic CSS: When the hidden checkbox is checked, style the label! */
.choice-chips input[type="checkbox"]:checked+label {
    background: #f59e0b;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

/* Textarea Styling */
/* === Design Your Path: Multi-Step Form === */
.design-path {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.design-header {
    text-align: center;
    margin-bottom: 60px;
}

.design-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

/* Stepper / Progress Indicator */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #f38210;
    border-color: #f38210;
    color: #fff;
    box-shadow: 0 0 20px rgba(243, 130, 16, 0.4);
}

.step.completed .step-number {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-label {
    color: #fff;
}

/* Form Sections */
.form-step {
    display: none;
    animation: fadeInSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-wrap {
    margin-bottom: 30px;
}

.section-title-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title-wrap p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Grid & Inputs */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.input-style {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-style:focus {
    border-color: #f38210;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(243, 130, 16, 0.1);
}

/* Custom Select Styling */
.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    width: 100%;
}

.input-style option {
    background-color: #1e293b;
    color: #fff;
}

.select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Visual Selection Cards */
.card-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.selection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.selection-card i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.selection-card span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.selection-card.active {
    background: rgba(243, 130, 16, 0.1);
    border-color: #f38210;
    box-shadow: 0 0 20px rgba(243, 130, 16, 0.2);
}

.selection-card.active i {
    color: #f38210;
}

.selection-card.active span {
    color: #fff;
}

/* Custom Counters */
.counter-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.counter-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.counter-value {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

/* Modern Chip Selection */
.choice-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.choice-chip {
    cursor: pointer;
}

.choice-chip input {
    display: none;
}

.choice-chip span {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.choice-chip:hover span {
    background: rgba(255, 255, 255, 0.1);
}

.choice-chip input:checked+span {
    background: #f38210;
    border-color: #f38210;
    color: #fff;
    box-shadow: 0 4px 15px rgba(243, 130, 16, 0.3);
}

/* Multi-Step Navigation Buttons */
.step-nav-btns {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-step {
    padding: 16px 36px;
    border-radius: 50px;
    /* Fully rounded for a more modern premium feel */
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    outline: none;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateX(-5px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #f38210, #ff9800);
    color: #fff;
    box-shadow: 0 10px 25px rgba(243, 130, 16, 0.4);
    border: none !important;
    /* Force clear any browser defaults */
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(243, 130, 16, 0.5);
    background: linear-gradient(135deg, #e67600, #f38210);
}

.btn-submit .icon {
    font-size: 20px;
    transform: rotate(-15deg);
    /* Dynamic tilt for the plane icon */
}

/* Disclaimer text at bottom */
.disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .design-path {
        padding: 60px 0;
    }

    .design-header {
        margin-bottom: 40px;
    }

    .design-header h2 {
        font-size: 1.8rem;
    }

    .form-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .stepper {
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .stepper::before {
        left: 20px;
        right: 20px;
        top: 15px;
    }

    /* Simplify stepper on small mobile */
    .step-label {
        font-size: 8px;
        display: none;
        /* Hide labels if very tight, or show below circles */
    }

    .step.active .step-label {
        display: block;
        margin-top: 5px;
        font-size: 10px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .section-title-wrap {
        margin-bottom: 20px;
        text-align: center;
    }

    .section-title-wrap h3 {
        font-size: 1.1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Stack date pickers on mobile */
    .date-picker-wrap {
        flex-direction: column !important;
        width: 100%;
    }

    .date-picker-wrap input {
        width: 100% !important;
    }

    .card-selector-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .selection-card {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .selection-card i {
        font-size: 18px;
        width: 25px;
    }

    .selection-card span {
        font-size: 13px;
    }

    .choice-chips {
        gap: 8px;
        justify-content: center;
    }

    .choice-chip span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .step-nav-btns {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .btn-step {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 14px;
    }

    .counter-wrap {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .counter-btn {
        flex: 1;
        height: 48px;
    }

    .counter-value {
        padding: 0 15px;
    }
}

.testimonials {
    background-color: #f1f5f9;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Ribbon Header Styling */
.review-header {
    margin-bottom: 60px;
}

.review-header h2 {
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
}

.review-ribbon {
    background: #0ea5e9;
    /* Changed to a vibrant blue to match website theme, if user prefers green, will change */
    background: linear-gradient(135deg, #10b981, #059669);
    /* Beautiful vivid green matching screenshot */
    color: white;
    padding: 8px 35px;
    display: inline-block;
    font-weight: bold;
    font-size: 32px;
    /* Ribbon cut on both ends */
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 15px 100%, 0 50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Grid Layout */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.profile-img {
    margin: 0 auto 25px auto;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-name {
    font-size: 18px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 5px;
}

.stars {
    color: #f59e0b;
    /* Golden Orange */
    font-size: 18px;
    letter-spacing: 2px;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-ribbon {
        font-size: 26px;
        padding: 5px 25px;
    }
}

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    /* Classic WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The modern translucent halo effect */
.whatsapp-sticky::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-soft 2.5s infinite ease-in-out;
}

@keyframes pulse-soft {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-4px);
    background-color: #20b858;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}



/* Footer Styles */
.main-footer {
    background-color: #050a14;
    /* Deep dark blue */
    color: #94a3b8;
    /* Light grey text */
    padding: 80px 20px 30px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* Good for mobile */
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Brand Section */
.footer-logo {
    color: #e06767;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #0d5706;
    /* Teal color for 'Lucky' */
}

.brand-desc {
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 300px;
    text-align: justify;
}

/* Headings in Footer */
.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

/* Links and Lists */
.contact-links,
.quick-links {
    list-style: none;
    padding: 0;
}

.contact-links li,
.quick-links li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #06b6d4;
}

/* Copyright & Bottom bar */
.copyright {
    font-size: 12px;
    color: #475569;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: right;
    /* Matches the image */
}

.footer-bottom p {
    font-size: 12px;
    font-style: italic;
    color: #475569;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        text-align: center;
    }
}

.tour-card img {
    -webkit-user-drag: none;
    /* Prevents image dragging in Chrome/Safari */
    -webkit-user-select: none;
    user-select: none;
    /* Prevents accidental highlighting */
    pointer-events: none;
    /* Optional: completely ignores mouse events on images */
}

/* Hide scrollbar but keep functionality */
.slider {
    overflow-x: auto;
    cursor: grab;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Change cursor when actively dragging */
.slider:active {
    cursor: grabbing;
}

/* Prevent text highlighting and ghost image dragging */
.tour-card {
    -webkit-user-select: none;
    user-select: none;
}

.tour-card img {
    -webkit-user-drag: none;
    pointer-events: none;
    /* This ensures the mouse grips the card, not the image */
}

/* Adventure Section Header Styling */
.adventures-header {
    text-align: center;
    margin-bottom: 40px;
    /* Gives breathing room before the slider starts */
    padding: 0 20px;
}

.adventures-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Reusing your highlight concept from the main logo */
.adventures-header .section-title .highlight {
    color: #007BFF;
    /* Replace with the exact hex code of your blue/brand color */
}

.adventures-header .section-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    /* Keeps the paragraph centered */
    line-height: 1.6;
}

/* Mobile Responsiveness for the header */
@media (max-width: 768px) {
    .adventures-header .section-title {
        font-size: 2rem;
    }

    .adventures-header .section-subtitle {
        font-size: 1rem;
    }
}

/* --- TOUR SECTION STYLING --- */

.tour-section {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    width: 100% !important;
    display: block !important;
}

/* 1. The Container - Limits the total width to prevent stretching */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #1e3a8a;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. The Grid - Redesigned to 3-2 centered layout via Flexbox */
.tour-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    width: 100% !important;
}

/* 3. The Card - Fixed rectangular shape */
.tour-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex !important;
    flex-direction: column !important;
    flex: 0 1 calc(33.333% - 20px); /* Desktop: 3 per row minus gap compensation */
    min-width: 320px;
    align-self: stretch;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Tablet Layout (2 cards per row, centered) */
@media (max-width: 1024px) {
    .tour-card {
        flex: 0 1 calc(50% - 30px);
    }
}

/* This targets mobile phones */
@media screen and (max-width: 768px) {

    /* 1. Target the CONTAINER holding the 6 cards */
    .tour-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
    }

    /* 2. Target the INDIVIDUAL CARDS */
    .tour-card {
        width: 100% !important;
        /* Adjust to take full container space */
        max-width: 380px !important;
        margin: 0 auto !important;
        display: flex !important;
        /* Restores internal flexbox (buttons to bottom) */
    }
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* 4. Image Fix - Stops squashing */
.img-container {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.tour-card:hover .img-container img {
    transform: scale(1.05);
    /* Modern subtle zoom */
}

/* 5. Card Content Area */
.card-content {
    padding: 30px;
    flex-grow: 1;
    /* Pushes button to the bottom */
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.card-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 6. Key Location Tags */
.key-locations strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.tag-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag-group span {
    background: #f1f5f9;
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tag-group span:hover {
    background: #e2e8f0;
    color: #1d4ed8;
}

/* 7. Button */
a.view-btn-link {
    text-decoration: none;
    font-size: 0;
    margin-top: auto;
    align-self: flex-start;
}

.view-btn {
    margin-top: auto;
    background: #ff8c00;
    /* Match brand orange */
    border: 2px solid #000;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 12px;
    /* Modern rounded shape */
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 4px 4px 0px #000;
    align-self: flex-start;
    /* Ensure it stays left-aligned */
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.view-btn:hover {
    background: #e67e00;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}


:root {
    --primary-color: #0d5c46;
    /* Tropical green */
    --secondary-color: #f4a261;
    /* Sun-kissed orange */
    --bg-color: #f9fdfc;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.tour-section {
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* CRITICAL FIX: Increased max-width from 1200px to 1400px to match standard wide sections.
  If it's still slightly off, change this to 1320px or 1440px depending on your theme.
*/
.tour-container {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    max-width: 1400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex !important;
    flex-direction: column !important;
}

/* Header */
.tour-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.tour-title {
    font-size: 2.5rem;
    margin: 20px 0 10px;
    color: #1a202c;
}

.tour-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* CRITICAL FIX: Layout Grid updated to fill the new 1400px width.
  3fr (60%) for the left, 2fr (40%) for the right.
*/
.tour-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}

@media (max-width: 1024px) {
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

/* Accordion (Itinerary) */
.accordion-header {
    width: 100%;
    text-align: left;
    background: white;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-bottom: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:first-child {
    border-radius: 8px 8px 0 0;
}

.accordion-header:last-of-type {
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
}

.accordion-header:hover,
.accordion-header.active {
    background: #f1f8f6;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.accordion-content ul {
    padding: 20px 40px;
    margin: 0;
    color: var(--text-light);
}

/* Inclusions Box */
.inclusions-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    /* Helps it stretch naturally */
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.district-accordion {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.district-accordion summary {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary-green);
    cursor: pointer;
    list-style: none;
    /* Removes default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

/* Custom +/- Icons */
.district-accordion summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--accent-orange);
    font-family: monospace;
}

.district-accordion[open] summary::after {
    content: '-';
}

.district-accordion[open] {
    background: #f9fbf9;
    padding-bottom: 10px;
}

.district-accordion .price-row {
    margin: 0 20px;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.district-accordion .price-row:last-child {
    border-bottom: none;
}

/* CTA Button */
.book-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.book-btn:hover {
    background-color: #e09355;
    transform: translateY(-2px);
}

:root {
    --primary-green: #1a4d2e;
    --accent-orange: #f3a661;
    --text-dark: #333;
    --bg-light: #f9fbf9;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Itinerary Styles */
.section-title {
    color: var(--primary-green);
    margin-bottom: 25px;
}

details {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

summary {
    padding: 18px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

summary::after {
    content: '+';
    color: var(--primary-green);
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '-';
}

.details-content {
    padding: 0 18px 18px;
    color: #666;
    font-size: 0.95rem;
}

.stay-badge {
    display: inline-block;
    background: #e9f5ee;
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 10px;
}

/* Sidebar Styles */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-green);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 0;
}

.included-card ul {
    list-style: "✓ ";
    padding-left: 15px;
    color: #555;
    line-height: 2;
}

.price-row {
    display: block;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.9rem;
}

.cta-button {
    width: 100%;
    padding: 15px 20px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e0924d;
    transform: translateY(-2px);
}

@media (max-width: 1023px) {
    .tour-layout {
        grid-template-columns: 1fr;
        /* Switch to a single column */
        gap: 40px;
    }
}

.tour-map {
    padding-top: 1px;
    padding-bottom: 1px;
    width: 60%;
    height: 60%;
    border-radius: 1px;
    margin-left: auto;
    /* Pushes from left to middle */
    margin-right: auto;
    /* Pushes from right to middle */
    display: block;

    -webkit-mask-image: radial-gradient(circle,
            black 1%,
            rgba(0, 0, 0, 0.5) 85%,
            transparent 100%);
    mask-image: radial-gradient(circle,
            black 1%,
            rgba(0, 0, 0, 0.5) 85%,
            transparent 100%);
}


:root {
    --accent-color: #ff7675;
    /* Change this to your brand color */
    --text-main: #2d3436;
    --text-light: #636e72;
    --gap: 16px;
    --radius: 24px;
}

.travel-gallery {
    padding: 80px 20px;
    background-color: var(--bg-light);
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Header Section */
.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

.travel-gallery img {
    width: 100%;
    height: 100%;
    /* Or whatever height you set for the grid items */
    object-fit: cover;
    /* This prevents the squishing! */
    border-radius: 16px;
    /* Matches the nice rounded corners in your screenshot */
    display: block;
}

.sub-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.gallery-intro h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: var(--text-main);
    margin: 0;
    font-weight: 800;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto;
    border-radius: 2px;
}

.gallery-intro p {
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* The Fixed 4-Column Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Forces exactly 4 columns */
    grid-auto-rows: 250px;
    gap: var(--gap);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: auto;
    transition: transform 0.5s ease;
    display: block;
}

/* Content Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hover Logic */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Strict Spanning Logic for Desktop */
@media (min-width: 1024px) {
    .item-wide {
        grid-column: span 2;
    }
}

/* Responsive: 2 Columns for Tablets */
@media (max-width: 1023px) and (min-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-wide {
        grid-column: span 2;
        /* Still wide on tablet */
    }
}

/* Responsive: 1 Column for Mobile */
@media (max-width: 599px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .item-wide {
        grid-column: span 1;
    }
}

/* --- Social Icons Styling --- */
.footer-socials {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.fb:hover {
    background: #1877F2;
    /* Official Facebook Blue */
    transform: translateY(-3px);
}

.social-icon svg {
    transition: transform 0.3s ease;
}

/* --- Mobile Optimization Additions --- */
@media (max-width: 768px) {

    /* Header layout */
    header {
        padding: 15px 20px;
        flex-flow: row wrap;
        /* Override max-width: 900px column rule */
        justify-content: space-between;
        /* Space logo and hamburger */
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .logo {
        text-align: left;
        width: auto;
        margin-bottom: 0;
    }

    .hamburger {
        display: block;
    }

    nav {
        width: 100%;
        /* Force nav links to a new row below the logo and hamburger */
    }

    /* Beautiful Accordion Menu */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 15px;
        margin-bottom: 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: fadeInDown 0.3s ease-out forwards;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 10px;
        font-size: 16px;
        letter-spacing: 0.5px;
        color: #e0e0e0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .btn-quote {
        display: none;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        font-size: 16px;
        text-align: center;
        box-sizing: border-box;
        border-radius: 8px;
        /* Slightly softer corners for mobile button */
    }

    .btn-quote.active {
        display: block;
        animation: fadeIn 0.4s ease-out forwards;
    }

    /* Animations for the dropdown */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Hero Section */
    .hero {
        background-position: 25% center !important;
        /* Centers the character usually placed on the left side */
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        box-sizing: border-box;
    }

    /* Global paddings and typography */
    .about-section,
    .tour-section,
    .services-section,
    .design-path,
    .travel-gallery,
    .testimonials,
    .adventures-section {
        padding: 40px 15px !important;
        overflow: hidden;
    }

    .section-title,
    .main-title,
    .tour-title,
    .design-header h2,
    .about-content h2,
    .gallery-intro h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .section-subtitle,
    .subtitle,
    .design-header p,
    .about-content>p {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-container {
        gap: 40px !important;
    }

    .experience-badge {
        padding: 12px 15px;
        bottom: -15px;
        right: 10px;
    }

    .experience-badge .years {
        font-size: 20px;
    }

    .credentials-card {
        padding: 20px 15px;
    }

    /* Tour Itinerary Map */
    .tour-map {
        width: 100% !important;
        height: auto !important;
    }

    /* Services Grid */
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 15px;
    }

    .nav-arrows {
        gap: 70px;
        margin-top: 20px;
    }

    /* Interactive elements */
    .chat-widget,
    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    /* Footer adjustments */
    .footer-grid {
        gap: 30px;
    }

    .brand-desc {
        max-width: 100%;
    }

    .footer-col {
        text-align: center;
    }

    .contact-links li,
    .quick-links li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Ensure images never overflow */
img {
    max-width: 100%;
    height: auto;
}

/* =======================================================================
   UX/UI REDESIGN: THE ULTIMATE SRI LANKA EXPERIENCE
   ======================================================================= */

/* 1. Layout Adjustments */
.tour-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    /* Prevents sidebar from stretching and keeps it sticky-ready */
}

@media (max-width: 992px) {
    .tour-layout {
        flex-direction: column;
        gap: 30px;
    }

    .sidebar-column {
        position: static;
        /* Remove sticky on mobile */
        width: 100%;
    }

    .timeline-container {
        padding-left: 20px;
        margin-top: 15px;
    }

    .timeline-item::before {
        left: -15px;
    }

    .timeline-marker {
        left: -21px;
        width: 14px;
        height: 14px;
    }

    .day-badge {
        padding: 5px 10px;
        font-size: 10px;
        margin-right: 10px;
    }

    .summary-text {
        font-size: 15px;
    }

    .timeline-details {
        padding: 12px 15px;
    }

    .stay-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* 2. Timeline Itinerary */
.timeline-container {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

/* The continuous vertical line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 30px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e2e8f0;
    z-index: 1;
}

/* Hide line for the last item */
.timeline-item:last-child::before {
    display: none;
}

/* The node dot */
.timeline-marker {
    position: absolute;
    left: -31px;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f38210;
    border: 3px solid #fff;
    z-index: 2;
    box-shadow: 0 0 0 3px #ffe8cc;
}

.timeline-details {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.timeline-details:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
    border-color: #e0f2fe;
}

.timeline-details summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    outline: none;
}

.timeline-details summary::-webkit-details-marker {
    display: none;
}

.day-badge {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.summary-text {
    flex-grow: 1;
    font-weight: 700;
    color: #1e293b;
    font-size: 17px;
}

.toggle-icon {
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.timeline-details[open] .toggle-icon {
    transform: rotate(180deg);
    color: #f38210;
}

.timeline-details[open] {
    border-color: #cbd5e1;
}

.details-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    animation: fadeInDown 0.4s ease;
}

.stay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    font-size: 13.5px;
}

.stay-badge i {
    color: #f38210;
}

/* Map specific styling */
.modern-map {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    margin-top: 20px;
    width: 100%;
}

/* 3. Sidebar UI Improvements */
.sidebar-column {
    position: sticky;
    top: 100px;
    /* Makes the sidebar stay in view while scrolling timeline */
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.info-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #f38210;
}

/* Included List Customization */
.included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.included-card ul li::before {
    content: "\f058";
    /* fa-check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #10b981;
    /* Emerald green */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

/* Optional Activities Styles */
.district-accordion {
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.district-accordion summary {
    background: #f1f5f9;
    padding: 12px 15px;
    font-weight: 600;
    color: #334155;
    font-size: 14.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.district-accordion summary::-webkit-details-marker {
    display: none;
}

.district-accordion summary::after {
    content: "\f067";
    /* Plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #64748b;
}

.district-accordion[open] summary::after {
    content: "\f068";
    /* Minus icon */
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 13.5px;
    color: #475569;
    border-top: 1px dashed #e2e8f0;
}

.price-row .price {
    font-weight: 700;
    color: #0d5c46;
    /* Tropical green */
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #f57c00, #ff9800);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 124, 0, 0.5);
}

/* 4. Hide Ultimate Experience Section on Mobile */
@media screen and (max-width: 768px) {
    #ultimate-experience {
        display: none !important;
    }
}