/* ===========================================
   CSS VARIABLES & GLOBAL RESETS
   =========================================== */
:root {
    --primary-color: #0d9488;
    /* Teal / Green */
    --primary-dark: #0f766e;
    --secondary-color: #f97316;
    /* Vibrant Orange */
    --secondary-dark: #ea580c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

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

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.pl-2 {
    padding-left: 2rem;
}

/* Section Titles */
.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    font-size: 1.1rem;
}

.section-title.text-center p {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0b5e58);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

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

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}


/* ===========================================
   1. NAVBAR
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 1000;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo .accent {
    color: var(--secondary-color);
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary-color);
}

.lang-selector {
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.navbar.scrolled .lang-selector a {
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--text-dark);
}

/* ===========================================
   2. HERO SECTION
   =========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0;
    animation: heroSlideshow 25s infinite;
}

.hero-bg-1 {
    animation-delay: 0s;
}

.hero-bg-2 {
    animation-delay: 5s;
}

.hero-bg-3 {
    animation-delay: 10s;
}

.hero-bg-4 {
    animation-delay: 15s;
}

.hero-bg-5 {
    animation-delay: 20s;
}

@keyframes heroSlideshow {
    0% {
        opacity: 1;
        transform: scale(1.05);
    }

    16% {
        opacity: 1;
        transform: scale(1.01);
    }

    20% {
        opacity: 0;
        transform: scale(1);
    }

    96% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

.hero-content {
    color: #fff;
    z-index: 1;
    max-width: 800px;
    padding-top: 80px;
    /* Offset for fixed navbar */
}

.hero-content .sub-heading {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
}

.main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.main-heading .highlight {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding-top to account for fixed navbar */
    padding-top: 80px; 
    margin-bottom: 50px;
}


/* ===========================================
   3. GRID UTILITIES
   =========================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

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

.align-center {
    align-items: center;
}

/* ===========================================
   4. TOUR PACKAGES
   =========================================== */
.tour-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-info {
    padding: 25px;
}

.tour-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tour-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tour-features li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-features li i {
    color: var(--primary-color);
}

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ===========================================
   5. WHY CHOOSE US & ABOUT
   =========================================== */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 15px;
}

.collage-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.collage-grid img:hover {
    transform: scale(1.05);
}

.collage-grid .img-1 {
    grid-row: 1 / 3;
}

.collage-grid .img-2 {
    grid-row: 1 / 2;
}

.collage-grid .img-3 {
    grid-row: 2 / 4;
}

.collage-grid .img-4 {
    grid-row: 3 / 4;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* About overlap images */
.about-images {
    position: relative;
    height: 400px;
}

.main-img {
    width: 80%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: var(--box-shadow);
}

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

.overlap-img-1 {
    width: 60%;
    height: 60%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 10px solid var(--bg-white);
    box-shadow: var(--box-shadow-hover);
}

.overlap-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   6. CLIENTS GRID
   =========================================== */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.client-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.client-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow-hover);
    z-index: 10;
}


/* ===========================================
   7. STATS
   =========================================== */
.stats-bg {
    background-image: url('assets/images/tour1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(15, 118, 110, 0.9));
}

.relative-z {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   8. FEATURES & 9. CTA BANNER
   =========================================== */
.collage-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.collage-grid-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.collage-grid-4 img:nth-child(2) {
    transform: translateY(30px);
}

.collage-grid-4 img:nth-child(4) {
    transform: translateY(30px);
}


.cta-banner {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    padding: 60px 0;
    color: #fff;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-flex h2 {
    font-size: 2rem;
    font-weight: 600;
}


/* ===========================================
   10. TESTIMONIALS
   =========================================== */
.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

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

.quote-icon {
    font-size: 2.5rem;
    color: rgba(13, 148, 136, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Reviews Marquee Animation */
.reviews-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 40px;
}
.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}
.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}
.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}
.reviews-track:hover {
    animation-play-state: paused;
}
.reviews-track .testimonial-card {
    width: 350px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}


/* ===========================================
   11. FOOTER
   =========================================== */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding-top: 80px;
}

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

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: var(--secondary-color);
}

.footer h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #030712;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* ===========================================
   MEDIA QUERIES FOR RESPONSIVENESS
   =========================================== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .main-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a,
    .lang-selector {
        width: 100%;
        text-align: center;
        padding: 15px;
        color: var(--text-dark);
        border-bottom: 1px solid #eee;
    }

    .nav-links a::after {
        display: none;
    }

    .navbar {
        background-color: var(--primary-dark);
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 15px 0;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

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

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    body {
        text-align: center;
    }

    .feature-item {
        text-align: left;
    }

    .section-title.text-center p {
        margin: 0 auto;
    }

    .cta-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .collage-grid-4 img:nth-child(2),
    .collage-grid-4 img:nth-child(4) {
        transform: translateY(0);
    }

    .pl-2 {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .client-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        display: none;
    }

    /* Simplify on super small screens */
    .about-images {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===========================================
   12. TOUR DETAIL PAGE
   =========================================== */
.tour-detail-container {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

.itinerary-section {
    flex: 2;
}

.booking-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.booking-sidebar h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.sidebar-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    left: 11.5px;
    top: 5px;
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.timeline-header h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.timeline-header .day-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.timeline-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.timeline-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .tour-detail-container {
        flex-direction: column;
    }
    .booking-sidebar {
        position: static;
        width: 100%;
        margin-top: 40px;
    }
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===========================================
   FLOATING WHATSAPP BUTTON
   =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    animation: whatsappBounceIn 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes whatsappBounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1f2937;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1f2937;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}