@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #1e3a8a; /* Dark Blue */
    --secondary-blue: #2563eb; /* Lighter Blue */
    --accent-yellow: #eab308;
    --accent-green: #22c55e;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #fff;
}
.btn-yellow:hover {
    background-color: #ca8a04;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-blue {
    background-color: var(--primary-blue);
    color: #fff;
}
.btn-blue:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-green {
    background-color: var(--accent-green);
    color: #fff;
}
.btn-green:hover {
    background-color: #16a34a;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* --- Floating WhatsApp Button --- */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 50;
    transition: transform 0.3s ease;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* --- Navbar --- */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}
.logo-img {
    height: 120px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-blue);
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
}

/* --- Hero Slider Section --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: #f1f5f9;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* Strong white on left fading to transparent — keeps text readable, car visible on right */
    background: linear-gradient(to right,
        rgba(255,255,255,1)    0%,
        rgba(255,255,255,0.9) 25%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0)   70%
    );
    display: flex;
    align-items: center;
}

.hero-slide-content {
    max-width: 480px;
    padding: 2rem 0;
}

.hero-slide-content h1 {
    font-size: 3.25rem;
    color: #1e293b;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
}

.btn-orange {
    background: #ff5722;
    color: white;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255,87,34,0.4);
}
.btn-orange:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,87,34,0.5);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 10;
    color: #1e293b;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.hero-nav:hover {
    background: #ff5722;
    color: white;
    transform: translateY(-50%) scale(1.08);
}
.hero-nav.prev { left: 1.5rem; }
.hero-nav.next { right: 1.5rem; }

.hero-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.hero-dot.active {
    background-color: #ff5722;
    width: 26px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-nav { display: none; }
    .hero-slider { height: 55vh; }
    .hero-slide-overlay {
        background: linear-gradient(to right,
            rgba(255,255,255,0.95) 0%,
            rgba(255,255,255,0.7) 60%,
            rgba(255,255,255,0.1) 100%
        );
    }
}






/* --- Keunggulan (Advantages) --- */
.advantages {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.adv-icon {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.advantage-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Statistics Banner --- */
.stats {
    background-color: var(--primary-blue);
    color: white;
    padding: 3rem 0;
    margin: 2rem auto;
    border-radius: var(--radius-lg);
    width: 95%;
    max-width: 1280px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* --- Galeri Kendaraan --- */
.gallery {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.car-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.car-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}
.car-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    z-index: 2;
}
.car-image-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center center;
    background-size: 150%;
    z-index: 1;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.car-name-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1rem;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.car-name-banner h4 {
    color: white;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.car-name-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-style: italic;
}

.car-details {
    padding: 1.5rem;
}

.car-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.car-specs div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.car-price {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.car-price h3 {
    font-size: 1.5rem;
    font-weight: 800;
}
.car-price p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.car-note {
    font-size: 0.65rem;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.car-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .advantages-grid, .gallery-grid, .tour-grid, .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .advantages-grid, .gallery-grid, .tour-grid, .customer-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .lang-toggle, .d-none-mobile {
        display: none !important;
    }
    
    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    
    .nav-links.active {
        max-height: 500px;
        padding: 1rem 1.5rem;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .logo-img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .advantages-grid, .gallery-grid, .stats-grid, .customer-grid, .tour-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 5rem 0 2rem;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col-title i {
    color: var(--accent-yellow);
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-highlight {
    color: var(--accent-yellow);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-links a.active {
    color: var(--accent-yellow);
}

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

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-contact-list i {
    color: var(--accent-yellow);
    margin-top: 0.25rem;
}

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

.footer-social li {
    margin-bottom: 1rem;
}

.footer-social a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-yellow);
}

.footer-social i {
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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


/* --- Blog & Tips --- */
.blog-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}
.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.blog-featured-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.blog-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.blog-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-content h4 {
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}
.blog-card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.blog-action {
    text-align: center;
    margin-top: 3rem;
}

/* --- FAQ --- */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
}
.faq-question i {
    color: var(--text-muted);
}

/* --- Jelajahi Layanan --- */
.explore-services {
    padding: 4rem 0;
    background-color: var(--bg-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.service-link-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s;
}
.service-link-card:hover, .service-link-card.active {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-sm);
}
.service-link-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}
.service-link-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.specialist-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.pill {
    background-color: #e0e7ff;
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Hubungi Kami --- */
.contact-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.wa-card {
    background-color: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.wa-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}
.wa-card h3 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}
.wa-card p {
    font-size: 0.875rem;
    color: #166534;
    margin-bottom: 1.5rem;
}
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border-color);
}
.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.contact-form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}
.contact-form-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.875rem;
}
textarea.form-control {
    resize: vertical;
    min-height: 100px;
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* --- Galeri Pelanggan --- */
.customer-gallery {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.customer-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--accent-yellow);
}

.customer-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.customer-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-watermark .social-icons {
    display: flex;
    gap: 0.75rem;
}

/* --- Paket Wisata --- */
.tour-packages {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.tour-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.tour-image {
    position: relative;
    background-color: var(--primary-blue);
    height: 250px;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.tour-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
}
.tour-title-overlay {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    text-align: center;
}
.tour-title-overlay h4 {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.tour-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-price-banner {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}
.tour-price-banner small {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.25rem;
}
.tour-price-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.tour-info-title {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.tour-meta div {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.tour-highlight-badge {
    background-color: var(--accent-yellow);
    color: var(--text-main);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.tour-includes {
    list-style: none;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.tour-includes li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}
.tour-includes li::before {
    content: '•';
    color: var(--accent-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
    top: -2px;
}

.tour-action {
    margin-top: auto;
}
.tour-action .btn {
    width: 100%;
}

.custom-tour-card {
    border: 2px dashed var(--secondary-blue);
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--primary-blue);
    grid-column: span 1;
    min-height: 250px;
}
.custom-tour-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.custom-tour-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.custom-tour-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.custom-tour-card .btn {
    width: 100%;
}

.tour-footer-action {
    text-align: center;
    margin-top: 3rem;
}
