/* Custom Design System - Franky Tours */

:root {
    --primary-color: #2b475e; /* Slate-Steel Blue from Logo 'RANKY' */
    --primary-light: #e6f0fa; /* Soft Ice Blue */
    --primary-dark: #14212c; /* Deep Slate Navy */
    --accent-color: #00adef; /* Vibrant Cyan/Sky Blue from Logo 'f' and 'TOURS' */
    --accent-light: #e0f2fe; /* Soft Light Blue */
    --accent-dark: #0284c7; /* Medium Deep Cyan */
    --text-color: #334155; /* Neutral slate dark */
    --text-muted: #64748b;
    --bg-light: #f8fafc; /* Crisp light gray-blue background */
    --bg-white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Utility Containers */
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-dark); }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.py-4 { padding-top: 20px; padding-bottom: 20px; }
.py-5 { padding-top: 40px; padding-bottom: 40px; }

/* Section Title Divider */
.section-title {
    margin-bottom: 50px;
}
.section-title .sub-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}
.divider.align-left {
    margin: 0;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Sticky Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(20, 33, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: var(--font-body);
    color: #ffffff;
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* Hero Fullscreen Slider */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slide-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.2s;
}

.slide-title {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.4s;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.6s;
}

.slide-actions {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.8s;
}

.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
    transform: translateY(0);
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.slider-control:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.slider-control.prev { left: 30px; }
.slider-control.next { right: 30px; }

.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

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

.indicator-dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* Floating Quick Finder Over Slider */
.quick-finder-wrapper {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 50;
}

.quick-finder {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--accent-color);
}

.finder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 180px;
    gap: 20px;
    align-items: flex-end;
}

.finder-col {
    display: flex;
    flex-direction: column;
}

.finder-col label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finder-col select,
.finder-col input {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-color);
    background-color: #ffffff;
    height: 48px;
}

.finder-col select:focus,
.finder-col input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Booking Inquiry Banner */
.booking-banner-section {
    background-color: var(--bg-light);
    padding-top: 140px;
    padding-bottom: 60px;
}

.booking-banner-card {
    background: linear-gradient(rgba(20, 33, 44, 0.9), rgba(20, 33, 44, 0.95)), url('{{ asset("images/hero/hero2.jpg") }}'), url('{{ asset("images/hero/hero2.svg") }}');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    padding: 50px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.booking-banner-card h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.booking-banner-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Featured Tour Grid & Tour Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tour-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

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

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

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

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

.tour-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-details {
    padding: 25px;
}

.tour-title {
    font-size: 20px;
    margin-bottom: 12px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tour-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    height: 66px;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-bottom: 20px;
}

.tour-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.tour-duration i {
    color: var(--accent-color);
    margin-right: 4px;
}

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

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Testimonial Section & Slider */
.testimonial-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.testimonial-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
    flex: 0 0 calc(25% - 22.5px);
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    box-sizing: border-box;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
    }
}

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
}

.author-name {
    font-size: 16px;
    margin: 0;
    color: var(--primary-color);
}

.author-designation {
    font-size: 13px;
    color: var(--text-muted);
}

.lang-badge {
    background-color: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.slider-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.slider-nav:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(11, 46, 26, 0.2);
}

/* Recent Blog & Blog Cards */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
}

.blog-image {
    position: relative;
    height: 200px;
}

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

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.blog-content {
    padding: 25px;
}

.blog-author {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Newsletter Section */
.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-card h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.newsletter-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
}

/* Main Footer Styles */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-top {
    padding: 80px 0 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about {
    margin-top: 20px;
    line-height: 1.6;
}

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

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

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

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

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-col ul li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
}

.footer-bottom-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-container p {
    margin: 0;
}

/* Page Header Titles */
.page-title-banner {
    padding: 120px 0 60px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.page-title-banner h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-title-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filters & Tabs */
.filters-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: #ffffff;
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Tours Listing Cards (Vertical Row Style) */
.tours-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-row-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 360px 1fr;
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.tour-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.tour-row-image {
    position: relative;
    height: 100%;
    min-height: 260px;
}

.tour-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tour-row-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.tour-row-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.tour-row-header h2 {
    font-size: 26px;
    margin: 0;
}

.tour-duration-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    background-color: #f1f5f9;
    padding: 6px 12px;
    border-radius: 30px;
    white-space: nowrap;
}

.tour-duration-badge i {
    color: var(--accent-color);
    margin-right: 4px;
}

.tour-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tour-highlights-preview {
    margin-bottom: 25px;
}

.tour-highlights-preview strong {
    font-size: 14px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.tour-highlights-preview ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.tour-highlights-preview ul li {
    font-size: 13px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-highlights-preview ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    color: var(--accent-color);
}

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

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.action-box {
    display: flex;
    gap: 10px;
}

/* Tour Detail Section & sticky sidebar */
.tour-detail-banner {
    padding: 180px 0 100px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.tour-detail-banner h1 {
    font-size: 54px;
    color: #ffffff;
    margin-bottom: 15px;
}

.category-label-banner {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.banner-meta-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
    font-weight: 600;
}

.banner-meta-grid i {
    color: var(--accent-color);
    margin-right: 4px;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.detail-block {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
}

.detail-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.overview-text {
    font-size: 16px;
    line-height: 1.8;
}

/* Itinerary Accordion with details/summary */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.itinerary-day {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.itinerary-day summary {
    padding: 18px 24px;
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    background-color: #ffffff;
}

.itinerary-day summary::-webkit-details-marker {
    display: none;
}

.day-number {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
    white-space: nowrap;
}

.day-title {
    font-size: 16px;
    color: var(--primary-color);
    flex-grow: 1;
}

.summary-arrow {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.itinerary-day[open] .summary-arrow {
    transform: rotate(180deg);
}

.itinerary-day[open] summary {
    border-bottom: 1px solid #e2e8f0;
    background-color: var(--bg-light);
}

.day-content {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    background-color: #ffffff;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inc-exc-grid h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-exc-grid ul {
    list-style: none;
}

.inc-exc-grid ul li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.inc-exc-grid ul li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    margin-top: 3px;
}

/* Sticky Booking Form Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-booking-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    border-top: 4px solid var(--accent-color);
}

.sidebar-booking-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-intro {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: #334155;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 71, 94, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    box-sizing: border-box;
}

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

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

.overlay-content {
    text-align: center;
    color: #ffffff;
}

.gallery-cat-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.gallery-caption {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.zoom-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* About Page Styles */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    text-align: center;
    padding: 35px 25px;
}

.member-image-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.member-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.member-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Sustainability & Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pillar-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.pillar-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* FAQ list */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.faq-item summary {
    padding: 24px 30px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 18px;
    margin: 0;
}

.faq-item[open] summary {
    border-bottom: 1px solid #edf2f7;
    background-color: var(--bg-light);
}

.faq-content {
    padding: 25px 30px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-content ul li {
    margin-bottom: 8px;
}

/* Contact Page Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-cards h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.office-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 25px;
    border: 1px solid #edf2f7;
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f8fafc;
    padding-bottom: 10px;
}

.office-card-header i {
    font-size: 24px;
    color: var(--accent-color);
}

.office-card-header h3 {
    font-size: 18px;
    margin: 0;
}

.office-details {
    list-style: none;
}

.office-details li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.office-details li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    border-top: 4px solid var(--accent-color);
}

.contact-form-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.form-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Blog Detail Layout */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.article-area {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
}

.article-title {
    font-size: 38px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.article-featured-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.sidebar-recent-posts {
    list-style: none;
}

.sidebar-recent-posts li {
    margin-bottom: 20px;
}

.post-item-link {
    display: flex;
    gap: 15px;
    align-items: center;
}

.post-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.post-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.cta-widget {
    border-top: 4px solid var(--accent-color);
}

.cta-widget h3 {
    border: none;
    padding: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 45px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 420px;
    border-left: 5px solid var(--success);
    animation: slideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toast.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 28px;
    color: var(--success);
}

.toast-message h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.toast-message p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #a0aec0;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Responsive Overrides */
@media (max-width: 992px) {
    .slide-title { font-size: 42px; }
    .finder-grid { grid-template-columns: 1fr 1fr; }
    .finder-col.button-col { grid-column: span 2; }
    .quick-finder-wrapper { bottom: -120px; }
    .booking-banner-section { padding-top: 180px; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1.2fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .tour-detail-grid { grid-template-columns: 1fr; }
    .blog-detail-layout { grid-template-columns: 1fr; }
    .inc-exc-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        z-index: 999;
        padding: 100px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .inquire-btn-header { display: none; }
    .tour-row-card { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; text-align: center; gap: 10px; }
}

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

/* WhatsApp Integrations CSS */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.whatsapp-trigger-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-trigger-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappPulse 2s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}

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

.whatsapp-popup-card {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.whatsapp-popup-card.open {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-popup-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-avatar-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    position: relative;
    border: 2px solid rgba(255,255,255,0.2);
}

.whatsapp-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4ade80;
    border: 2px solid var(--primary-color);
}

.whatsapp-header-info h4 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.whatsapp-header-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

.whatsapp-popup-body {
    padding: 20px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-choice-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
}

.whatsapp-choice-btn:hover {
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.whatsapp-choice-icon {
    font-size: 20px;
    color: #25d366;
    margin-top: 2px;
}

.whatsapp-choice-content h5 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-weight: 600;
}

.whatsapp-choice-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Page WhatsApp styles */
.whatsapp-office-card {
    border-top: 5px solid #25d366 !important;
}

.whatsapp-office-card:hover {
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.1) !important;
}

.whatsapp-options-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.btn-whatsapp-link {
    background-color: #e8fcf0;
    color: #128c7e;
    border: 1px solid #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-link:hover {
    background-color: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Tour Page WhatsApp Booking styles */
.tour-whatsapp-booking {
    margin-top: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.tour-whatsapp-booking p {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 10px;
}

.btn-whatsapp-outline {
    background-color: transparent;
    color: #128c7e;
    border: 2px solid #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.btn-whatsapp-outline:hover {
    background-color: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Colorful Tour Categories & Badges */
.category-adventure {
    --category-color: #0ea5e9; /* Sky Blue */
    --category-bg: #e0f2fe;
}
.category-cultural {
    --category-color: #f59e0b; /* Amber Gold */
    --category-bg: #fef3c7;
}
.category-honeymoon {
    --category-color: #ec4899; /* Romantic Pink */
    --category-bg: #fce7f3;
}
.category-wildlife {
    --category-color: #10b981; /* Forest Emerald Green */
    --category-bg: #d1fae5;
}

/* Applying colors to the Tour Cards */
.tour-card.category-adventure,
.tour-row-card.category-adventure {
    border-top: 4px solid #0ea5e9 !important;
}
.tour-card.category-cultural,
.tour-row-card.category-cultural {
    border-top: 4px solid #f59e0b !important;
}
.tour-card.category-honeymoon,
.tour-row-card.category-honeymoon {
    border-top: 4px solid #ec4899 !important;
}
.tour-card.category-wildlife,
.tour-row-card.category-wildlife {
    border-top: 4px solid #10b981 !important;
}

/* Category Badge custom styles */
.category-adventure .tour-category-tag,
.category-adventure .category-badge {
    background-color: #0ea5e9 !important;
    color: #ffffff !important;
}
.category-cultural .tour-category-tag,
.category-cultural .category-badge {
    background-color: #f59e0b !important;
    color: #ffffff !important;
}
.category-honeymoon .tour-category-tag,
.category-honeymoon .category-badge {
    background-color: #ec4899 !important;
    color: #ffffff !important;
}
.category-wildlife .tour-category-tag,
.category-wildlife .category-badge {
    background-color: #10b981 !important;
    color: #ffffff !important;
}

/* Hover glowing effects for cards */
.tour-card.category-adventure:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15) !important;
}
.tour-card.category-cultural:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15) !important;
}
.tour-card.category-honeymoon:hover {
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15) !important;
}
.tour-card.category-wildlife:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15) !important;
}

.tour-row-card.category-adventure:hover {
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1) !important;
}
.tour-row-card.category-cultural:hover {
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.1) !important;
}
.tour-row-card.category-honeymoon:hover {
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.1) !important;
}
.tour-row-card.category-wildlife:hover {
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1) !important;
}

/* Colorful Testimonial Cards */
.testimonial-carousel-track .testimonial-card:nth-child(5n+1) {
    border-top-color: #0ea5e9 !important;
    background-color: #f0f9ff !important; /* Soft Sky Blue Tint */
}
.testimonial-carousel-track .testimonial-card:nth-child(5n+2) {
    border-top-color: #a855f7 !important;
    background-color: #faf5ff !important; /* Soft Purple Tint */
}
.testimonial-carousel-track .testimonial-card:nth-child(5n+3) {
    border-top-color: #f97316 !important;
    background-color: #fff7ed !important; /* Soft Orange Tint */
}
.testimonial-carousel-track .testimonial-card:nth-child(5n+4) {
    border-top-color: #ec4899 !important;
    background-color: #fff1f2 !important; /* Soft Pink Tint */
}
.testimonial-carousel-track .testimonial-card:nth-child(5n+5) {
    border-top-color: #10b981 !important;
    background-color: #f0fdf4 !important; /* Soft Green Tint */
}


