/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fafc;
    color: #333;
}

/* --- FIXED NAV RIGHT --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px; /* Creates clean space between FAQ, Notif, and User */
}

/* --- ACTIVE LINK HIGHLIGHT --- */
nav a.active {
    color: #ffc107 !important; /* Matches your hover color */
    font-weight: 600;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 2px;
}

/* 🔔 Professional Notif Button */
.notif-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding: 8px;
    transition: 0.3s;
}

.notif-btn:hover {
    color: #3b82f6;
}

/* 👤 Professional User Button */
.user-btn {
    background: rgba(255, 255, 255, 0.1); /* Subtle pill-shape background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
    align-items: center;
}

.navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #ffc107;
}

/* Hero Carousel */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-prev { left: 25px; }
.carousel-next { right: 25px; }

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: 78px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.hero-divider {
    width: 55px;
    height: 4px;
    background: #ffc107;
    border-radius: 2px;
    margin: 18px auto;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.55);
}

/* Sections */
section {
    padding: 100px 10%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

/* Unified Section Titles */
section h2,
.van-title,
.section-header h2 {
    font-size: 32px !important;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: center;
}

/* Features */
.features {
    background:#f8fafc;
    padding: 100px 5%;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

.feature-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #3b82f6;
    transform: translateY(-10px);
}

.features .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the header and the grid */
    text-align: center;
}

.section-header {
    margin-bottom: 60px; /* Space between title and the feature boxes */
}


.icon {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 15px;
}

/* Services */
.services {
    padding-top: 80px;
    padding-bottom: 100px; /* This adds the missing space at the bottom */
    background-color: #f8fafc;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0; /* Centers the grid and adds top margin from title */
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    height: 100%; /* Ensures all cards stay the same height */
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 40px;
    color: #1c6ea4;
}

/* Vans */
.van {
    background: #f9fafc;
}

.van-sub {
    color: #777;
    margin-bottom: 40px;
}

.price {
    color: #2563eb;
    font-weight: 600;
}

/* Buttons */
.book-btn, .btn.primary {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.book-btn:hover, .btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Joiner Trip Specific Buttons */
.btn-join {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-join:hover {
    background: #218838;
}

.btn-joined {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: not-allowed;
}

.btn-full {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: not-allowed;
}

/* Status Badges */
.status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: white;
}

.status.open { background: #28a745; }
.status.full { background: #6c757d; }

.section-header .sub-title {
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

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

.feedback-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feedback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #3b82f6;
}

/* Dropdown Logic */
.notification-wrapper, .user-menu {
    position: relative;
}

.notif-dropdown, .dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    width: 280px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.dropdown form {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.dropdown-item.logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px; /* Matches the padding of Profile and My Bookings */
    width: 100%;
    border: none;
    background: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    text-align: center; /* Ensures text stays left-aligned with icons */
}


.notif-dropdown.show, .dropdown.show {
    display: block;
}

/* --- INDUSTRY DROPDOWN --- */
.dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Soft shadow */
    border: 1px solid #eef2f6;
    overflow: hidden;
    padding: 8px 0; /* Space at top and bottom */
}

.dropdown-item {
    background: none;
    border: none;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;

    /* Alignment Logic */
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 20px !important;
    gap: 15px !important; /* Fixed gap between icon and span */
    color: #475569 !important;
    font-size: 14px !important;
    text-align: left !important;
    box-sizing: border-box !important;
}

.dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 8px 0;
}

.dropdown-item i {
    width: 20px !important;
    display: flex !important;
    justify-content: center !important;
    color: #94a3b8 !important;
    font-size: 16px !important;
}

.dropdown-item span {
    display: inline-block !important;
    line-height: 1 !important;
}


/* Red Logout Style */
.dropdown-item.logout:hover {
    color: #ef4444 !important;
    background: #fef2f2 !important;
}

.notif-item, .dropdown-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
}

.notif-item:hover, .dropdown-item:hover {
    background: #f5f7ff;
}

/* --- FEEDBACK SECTION --- */
.feedback-industry {
    padding: 100px 0; /* Vertical padding only */
    background-color: #f8fafc; /* Your light gray background */
    width: 100%;
    display: flex;
    justify-content: center;
}

.feedback-industry .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center; /* Centers cards if there are only 1 or 2 */
    margin-top: 50px;
}


.feedback-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1); /* Deep soft shadow */
}

/* Quote Icon Decoration */
.feedback-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: #f1f5f9;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.feedback-top {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.feedback-text {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* User Section (The modern look) */
.feedback-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 14px; /* Squircle shape instead of circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.user-info h4 {
    font-size: 16px;
    color: #0f172a;
    margin: 0;
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.stars i.fas { color: #f59e0b; font-size: 12px; }
.stars i.far { color: #e2e8f0; font-size: 12px; }

.verified {
    margin-left: auto; /* Pushes to the far right */
    background: #ecfdf5;
    color: #059669;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Empty State */
.empty-feedback {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .feedback-industry {
        padding: 60px 5%;
    }
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}



/* --- FAQ SECTION --- */
.faq-pretty {
    padding: 100px 5%;
    background-color: #f8fafc;
}

.faq-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.faq-pretty .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the header and the accordion block */
    width: 100%;
}

.faq-pretty .section-header {
    text-align: center;
    margin-bottom: 50px;
}


.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #3b82f6;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* Fixes the collision between number and text */
.faq-number {
    font-weight: 700;
    color: #3b82f6;
    margin-right: 15px;
}

.faq-question {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* The Icon (The two lines from your Blade) */
.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    margin-left: 15px;
}

.faq-icon .line {
    position: absolute;
    background: #94a3b8;
    transition: 0.3s;
}

.faq-icon .line:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon .line:last-child {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Active State for Icon */
.faq-item.active .faq-icon .line:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-text {
    padding: 0 25px 25px 65px; /* Aligns text under the question */
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* --- DROPDOWN MENU FIX --- */
.dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    padding: 5px 0;
    display: none;
    z-index: 1000;
}

.dropdown.show {
    display: block !important;
}

.dropdown-item {
    display: flex !important; /* Forces icon and text to stay together */
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important; /* This is the "Industry" standard spacing */
    width: 100% !important;
    border: none !important;
    background: none !important;
    color: #475569 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.dropdown-item:hover {
    background-color: #f8fafc !important;
    color: #3b82f6 !important;
}

.dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 8px 0;
}

/* --- INDUSTRY STYLE FOOTER --- */
.site-footer {
    background: #0f172a; /* Your main navy color */
    color: #cbd5e1;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none; /* Industry footers usually use Title Case */
}

.footer-column p {
    line-height: 1.8;
    font-size: 14px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #3b82f6;
    padding-left: 5px; /* Subtle interaction */
}

/* Clean Bottom Bar */
.footer-bottom {
    background: #0f172a; /* Matched to .site-footer */
    padding: 30px 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5); /* Slightly faded text for copyright */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle divider line */
}

/* --- CLEAN DROPDOWN BOXES --- */
.notif-dropdown, .dropdown {
    position: absolute;
    top: 55px; /* Distance from navbar */
    right: 0;
    background: white;
    border-radius: 12px;
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Deep shadow for elevation */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: none;
}

/* Add a header to notifications */
.notif-header {
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    color: #0f172a;
}

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

/* --- TOURS SECTION STYLES --- */
.tours-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tours-section .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tours-section .section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.section-header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* THE GRID SYSTEM */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* THE CARD */
.tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

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

/* IMAGE HANDLING - FIXES THE GIANT PHOTO ISSUE */
.tour-image {
    position: relative;
    width: 100%;
    height: 230px; /* Fixed height for all cards */
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the magic line that crops images perfectly */
    transition: transform 0.5s ease;
}

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

/* BADGES */
.best-seller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fbbf24;
    color: #000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.tour-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #2563eb;
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* DETAILS AREA */
.tour-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.meta-item i {
    color: #3b82f6;
    margin-right: 5px;
}

.tour-name {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.tour-destination {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.tour-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.tour-date {
    display: flex;
    flex-direction: column;
}

.tour-date small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.tour-date span {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-book {
    background: #10b981;
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-book:hover {
    background: #059669;
}

/* EMPTY STATE */
.no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: #f8fafc;
    border-radius: 20px;
    color: #94a3b8;
}

/* Apply this to BOTH the Vans and Tours containers */
.vans-grid, .tours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the items horizontally */
    gap: 30px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Force both card types to have a consistent width */
.van-card, .tour-card {
    width: 350px;
    max-width: calc(100vw - 30px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* 1. Centering the Container */
.van-grid {
    display: flex;
    flex-wrap: wrap;        /* Allows cards to move to the next line on mobile */
    justify-content: center; /* THE MAGIC: Centers the cards horizontally */
    align-items: stretch;
    gap: 30px;              /* Space between cards */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;         /* Centers the grid block itself on the page */
}

/* --- VANS SECTION CENTERING --- */
.vans-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.vans-section .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the header and the grid */
}

.vans-section .section-header {
    text-align: center; /* Centers the text inside the div */
    margin-bottom: 50px;
}

.vans-section .section-subtitle {
    margin: 0 auto; /* Ensures the paragraph is centered if it wraps */
    max-width: 600px;
}


/* 2. Styling the Card for "Industry Style" */
.van-card {
    background: #ffffff;
    width: 340px;
    max-width: calc(100vw - 30px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.van-image-box {
    position: relative;
    background: #ffffff !important; /* Forces the image container to white */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9; /* Subtle divider for the white-on-white look */
}

.van-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.van-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.van-info {
    padding: 25px;
    text-align: left;
}

.van-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.van-meta span {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.van-meta i {
    color: #2563eb;
}

/* PRICE TAG */
.van-price {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.van-price small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.van-price p {
    font-weight: 800;
    color: #2563eb;
    font-size: 17px;
    letter-spacing: -0.5px;
}


/* BUTTON */
.btn-industry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-industry:hover {
    background: #1d4ed8;
}


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

/* 3. Fixing the Image */
.van-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;   /* Shows the full van without cropping */
    margin-bottom: 15px;
    background: #f8fafc;   /* Light gray background behind the van */
    border-radius: 10px;
}

/* Container and Wrapper */
.feedback-industry .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slider-relative-wrapper {
    position: relative;
    width: 100%;
    padding: 0 40px; /* Space for the arrows */
}

/* Slider Container */
.feedback-slider-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    /* Centers cards if there are only 1 or 2 */
    justify-content: flex-start;
}

.feedback-slider-container::-webkit-scrollbar {
    display: none;
}

.feedback-item {
    width: 350px;
    max-width: calc(100vw - 40px);
    margin: 0 10px;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Floating Side Controls */
.side-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.side-control.prev { left: -10px; }
.side-control.next { right: -10px; }

.side-control:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.feedback-viewport {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: #f8fafc; /* Light industry-style background */
}

.feedback-track {
    display: flex;
    width: calc(400px * 10); /* Adjust based on (card width * number of cards) */
    animation: scroll-smooth 40s linear infinite;
}

.feedback-track:hover {
    animation-play-state: paused;
}

/* --- JOINER TRIPS STYLING --- */
.joiners-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.joiner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.joiner-card {
    background: #fff;
    width: 350px;
    max-width: calc(100vw - 30px);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

.trip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-open { background: #dcfce7; color: #16a34a; }
.status-full { background: #fee2e2; color: #ef4444; }

.joiner-content .destination {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.trip-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.info-item i { color: #2563eb; }

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

.price-tag small { display: block; color: #94a3b8; font-size: 11px; }
.price-tag p { color: #2563eb; font-weight: 800; font-size: 1.1rem; }

.btn-action {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.btn-action.join { background: #2563eb; color: white; }
.btn-action.joined { background: #94a3b8; color: white; cursor: not-allowed; }
.btn-action.full { background: #f1f5f9; color: #94a3b8; cursor: not-allowed; }
.btn-action.login { background: #0f172a; color: white; }


/* --- JOINER SECTION CENTERING --- */
.joiners-section .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the header and the empty message */
    text-align: center;
}

.joiners-section .section-header {
    margin-bottom: 50px;
    width: 100%;
}

.joiners-section .section-subtitle {
    margin: 0 auto;
    max-width: 600px;
}

/* Ensure the 'No joiner trips' message is also centered */
.empty-state {
    padding: 40px;
    width: 100%;
    text-align: center;
    color: #94a3b8;
}

@keyframes scroll-smooth {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 5)); } /* Moves by half the track length */
}


/* ── HAMBURGER BUTTON (home navbar) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    margin-left: 6px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* ── MOBILE NAV MENU (controlled via JS style.display) ── */
.mobile-nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0f172a;
    z-index: 9998;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.mobile-nav-menu a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
    margin: 0 !important;
    transition: background 0.2s;
}

.mobile-nav-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffc107 !important;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Navbar: no overflow clipping so dropdowns aren't hidden */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 60px !important;
        padding: 0 14px !important;
        z-index: 9999;
        overflow: visible !important;
    }

    /* Hide direct nav links on mobile (NOT nav-right contents) */
    .navbar nav > a {
        display: none !important;
    }

    /* Logo */
    .logo {
        font-size: 15px !important;
        white-space: nowrap;
    }

    /* Show hamburger */
    .nav-hamburger {
        display: flex !important;
    }

    /* Icons row */
    .nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0;
    }

    .notif-btn, .user-btn {
        font-size: 16px !important;
        padding: 6px !important;
    }

    /* Hide user name text on mobile */
    .user-name-text {
        display: none !important;
    }

    /* Dropdowns: fixed so they escape navbar's stacking context */
    .notif-dropdown, .dropdown {
        position: fixed !important;
        top: 60px !important;
        right: 10px !important;
        left: auto !important;
        max-width: calc(100vw - 20px) !important;
        z-index: 10000 !important;
    }

    /* Body top padding */
    body {
        padding-top: 60px !important;
    }

    /* Hero text */
    .hero h1 {
        font-size: 30px !important;
        letter-spacing: -1px !important;
        line-height: 1.15;
    }

    .hero p {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .hero-badge {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        padding: 6px 14px !important;
    }

    .hero-btn {
        padding: 12px 28px !important;
        font-size: 13px !important;
    }

    /* Grids */
    .van-grid, .tours-grid, .joiner-container, .features-grid, .services-grid {
        grid-template-columns: 1fr !important;
        padding: 0 15px !important;
        gap: 20px !important;
    }

    .van-card, .tour-card, .feature-box, .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
}

