/* Taotuengmork CSS - White & Navy Theme */
:root {
    --primary-color: #1a1a2e;
    --primary-dark: #0f0f1a;
    --primary-light: #2d2d4a;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --bg-light: #ffffff;
    --bg-cream: #f8f9fa;
    --bg-soft: #f1f3f5;
    --bg-card: #ffffff;
    --text-dark: #1a1a2e;
    --text-primary: #2d2d4a;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 50px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-primary: 'Kanit', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    padding: 8px 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-particles::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(22, 33, 62, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-title {
    margin-bottom: 28px;
}

.hero-title .title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title .title-sub {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 14px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.05rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--bg-cream);
}

.about-content {
    display: block;
}

.about-text h3 {
    font-size: 1.9rem;
    margin-bottom: 22px;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-image .image-placeholder {
    height: 100%;
    transition: 0.5s ease;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card:hover .image-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.gallery-date {
    font-size: 0.8rem;
    opacity: 0.75;
}

.gallery-date i {
    margin-right: 6px;
}

/* Upcoming Trips */
.upcoming {
    background: var(--bg-cream);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.trip-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.trip-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    padding: 8px 18px;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
}

.trip-badge.hot {
    background: #dc3545;
}

.trip-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.trip-image .image-placeholder {
    height: 100%;
    transition: 0.5s ease;
}

.trip-card:hover .image-placeholder {
    transform: scale(1.05);
}

/* Image Slider/Carousel */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-slider .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.image-slider .slide {
    min-width: 100%;
    height: 100%;
}

.image-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-dark);
    z-index: 5;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trip-card:hover .slider-btn,
.gallery-card:hover .slider-btn {
    opacity: 1;
}

.image-slider .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.image-slider .slider-btn.prev {
    left: 10px;
}

.image-slider .slider-btn.next {
    right: 10px;
}

.image-slider .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.image-slider .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.image-slider .slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.gallery-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.trip-content {
    padding: 28px;
}

.trip-meta {
    display: flex;
    gap: 22px;
    margin-bottom: 16px;
}

.trip-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trip-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

.trip-title {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.trip-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.trip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
}

.trip-price .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.trip-price .price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.contact .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

.contact-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 18px;
    font-size: 2rem;
    background: white;
}

.contact-card.facebook .contact-icon {
    color: #1877f2;
}

.contact-card.line .contact-icon {
    color: #00b900;
}

.contact-card.tiktok .contact-icon {
    color: #000;
}

.contact-card.instagram .contact-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743);
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    color: white;
}

.cta-content h3 {
    font-size: 1.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-content p {
    opacity: 0.85;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 70px 0 35px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-brand img {
    height: 55px;
    border-radius: 8px;
}

.footer-brand p {
    width: 100%;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

.admin-link {
    color: rgba(255, 255, 255, 0.25);
    transition: var(--transition-fast);
}

.admin-link:hover {
    color: white;
}

/* Trip Details Modal */
.trip-details-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.trip-details-modal.active {
    opacity: 1;
    visibility: visible;
}

.trip-details-content {
    background: white;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-normal);
}

.trip-details-modal.active .trip-details-content {
    transform: translateY(0) scale(1);
}

.trip-details-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-soft);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.trip-details-close:hover {
    background: var(--primary-color);
    color: white;
}

.trip-details-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-cream);
}

.trip-details-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-right: 40px;
    line-height: 1.3;
}

.trip-details-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.trip-details-images {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.trip-details-images img {
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.trip-details-images::-webkit-scrollbar {
    height: 8px;
}

.trip-details-images::-webkit-scrollbar-track {
    background: var(--bg-soft);
    border-radius: 4px;
}

.trip-details-images::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

.trip-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
}

.trip-details-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trip-details-meta i {
    color: var(--primary-color);
}

.trip-details-meta .trip-price-tag {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: auto;
}

.trip-details-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.trip-details-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    background: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-height: 80vh;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .floating-card {
        bottom: 20px;
        right: 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trip-footer {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .trip-footer .btn {
        width: 100%;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }
}

/* Van Layout */
.van-layout {
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 40px 40px 10px 10px;
    padding: 30px 20px 20px;
    margin: 0 auto;
    width: 320px;
}

.van-title-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.van-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.van-title .vip {
    color: #e74c3c;
}

.van-subtitle {
    font-size: 0.85rem;
    color: #e74c3c;
    font-weight: 500;
}

.van-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.van-front-row {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #ccc;
    align-items: center;
}

.driver {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    width: 150px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.driver-steering-wheel {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: transparent;
    position: relative;
}

.driver-steering-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    background-color: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.driver-steering-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
}

.seat {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #333;
    user-select: none;
}

.seat-staff {
    background-color: #00ff00;
    color: #e74c3c;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    cursor: default;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

.seat-available {
    background-color: #00ff00;
    color: #000;
}

.seat-available:hover {
    transform: scale(1.05);
}

.seat-booked {
    background-color: #e74c3c;
    color: #000;
}

.seat-booked:hover {
    transform: scale(1.05);
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #333;
}

.legend-available {
    background-color: #00ff00;
}

.legend-booked {
    background-color: #e74c3c;
}

.trip-details-seats .seat:hover {
    transform: none;
}

/* Add margin bottom to separate meta and seats in trip details */
#tripDetailsMeta {
    margin-bottom: 30px;
}