/* ==========================================================================
   Base & Variables
   ========================================================================== */
   :root {
    /* Colors */
    --primary-color: #0d2242; /* Deep Navy Blue */
    --secondary-color: #1e4a8c; /* Brighter Blue */
    --accent-color: #2e8b57; /* Green for buttons */
    --accent-hover: #246e45;
    --accent-orange: #f59e0b; /* Orange/Yellow for client CTAs */
    --accent-orange-hover: #d97706;
    --bg-light-blue: #f0f9ff; /* Soft blue background */
    --text-dark: #0f172a; /* Sleeker slate/dark color */
    --text-muted: #64748b;
    --text-light: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Others */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-whatsapp:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

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

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Transparent on top */
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(13, 34, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Pages without a full-bleed hero (e.g. Paket Tour, now that its title card
   lives inline in the content) need the navbar solid from the start, since
   there's no photo/color backdrop behind it to keep the white logo/text legible. */
.navbar.navbar-solid {
    background-color: rgba(13, 34, 66, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 58px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.25rem 0;
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    min-width: 220px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu a {
    color: var(--text-dark);
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light-blue);
    color: var(--primary-color);
}

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

/* WhatsApp Contact Card in Header */
.nav-contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: var(--text-dark);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.nav-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-contact-icon {
    font-size: 1.6rem;
    color: #22c55e; /* WhatsApp green */
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.nav-contact-phone {
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-contact-label {
    font-size: 0.7rem;
    color: #16a34a; /* Green fast response label */
    font-weight: 600;
}

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

/* ==========================================================================
   Hero Section & Slider
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    color: var(--text-light);
}

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

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

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

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    text-align: left;
    padding: 0 var(--spacing-sm);
}

.hero-subtitle {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-light);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 580px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

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

/* Slider arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.hero-arrow:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow-left {
    left: 2rem;
}

.hero-arrow-right {
    right: 2rem;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background-color: var(--accent-orange);
    transform: scale(1.2);
}

/* ==========================================================================
   Page Hero (Secondary / Detail Pages)
   ========================================================================== */
.hero-sm {
    height: 50vh;
    min-height: 400px;
}

.hero-sm .hero-content {
    padding-top: 100px;
    text-align: center;
    margin: 0 auto;
}

.hero-sm .hero-subtitle {
    font-size: 1.1rem;
}

.hero-sm .hero-title {
    font-size: 2.75rem;
}

.hero-sm .hero-desc {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-sm {
        height: auto;
        min-height: 0;
        padding: 6.5rem 0 2.5rem;
    }

    .hero-sm .hero-content {
        padding-top: 0;
    }

    .hero-sm .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-sm .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-sm .hero-desc {
        font-size: 0.85rem;
        line-height: 1.55;
    }
}

@media (max-width: 400px) {
    .hero-sm .hero-title {
        font-size: 1.3rem;
    }
}

/* Solid-color hero variant (no photo) — used on Tour detail, Blog, and Airport
   Transfer. Sized to hug its content (title/subtitle) instead of the tall
   min-height reserved for photo heroes, since there's no image to fill. */
.hero-plain.hero-sm {
    height: auto;
    min-height: 0;
    padding: 7rem 0 3rem;
}

.hero-plain {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-plain .hero-content {
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero-plain.hero-sm {
        padding: 4rem 0 1.75rem;
    }
}

/* Tour detail title+gallery card — lives inline in tour-main-content instead
   of a full-bleed hero, so the price sidebar is visible without scrolling. */
.tour-header-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.tour-header-card .hero-subtitle {
    display: block;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    text-shadow: none;
    margin-bottom: 0.6rem;
}

.tour-header-card .hero-title {
    font-size: 2.1rem;
    color: var(--text-light);
    text-shadow: none;
    margin-bottom: 0.75rem;
}

.tour-header-card .hero-desc {
    color: var(--text-light);
    text-shadow: none;
    max-width: 100%;
    margin-bottom: 0;
}

.tour-header-card .tour-gallery {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .tour-header-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .tour-header-card .hero-title {
        font-size: 1.4rem;
    }

    .tour-header-card .hero-desc {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Tour Gallery Slider
   ========================================================================== */
.tour-gallery {
    position: relative;
    height: 420px;
    margin-top: 2.5rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    z-index: 5;
}

.tour-gallery-slider {
    position: absolute;
    inset: 0;
}

.tour-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease-in-out;
}

.tour-gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.tour-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.tour-gallery-arrow:hover {
    background-color: var(--text-light);
    color: var(--accent-orange-hover);
}

.tour-gallery-arrow-left {
    left: 1.25rem;
}

.tour-gallery-arrow-right {
    right: 1.25rem;
}

.tour-gallery-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.tour-gallery-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.tour-gallery-dot.active {
    background-color: var(--accent-orange);
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .tour-gallery {
        height: 280px;
        margin-top: 1.5rem;
        border-radius: var(--border-radius-sm);
    }

    .tour-gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .tour-gallery-arrow-left {
        left: 0.75rem;
    }

    .tour-gallery-arrow-right {
        right: 0.75rem;
    }
}

/* ==========================================================================
   Search Box
   ========================================================================== */
.search-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.search-box {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: end;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    transition: var(--transition);
    width: 100%;
}

.input-group:focus-within {
    border-color: var(--secondary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(30, 74, 140, 0.15);
}

.input-group i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.input-group select,
.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e4a8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.1em;
    padding-right: 1.5rem;
}

/* ==========================================================================
   Trust Badges Bar
   ========================================================================== */
.trust-bar-section {
    background-color: var(--bg-light-blue);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.trust-bar-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.trust-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item:hover .trust-icon-wrapper {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.trust-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

/* ==========================================================================
   Our Services Grid
   ========================================================================== */
.services-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

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

.service-card {
    position: relative;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(226, 232, 240, 0.8);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-badge-icon {
    position: relative;
    margin-top: -22px;
    margin-bottom: -22px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    border: 3px solid var(--bg-white);
    z-index: 5;
    transition: var(--transition);
}

.service-card:hover .service-badge-icon {
    background-color: var(--accent-orange);
    transform: rotate(360deg);
}

.service-content {
  padding: 1.7rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.35;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: var(--accent-orange-hover);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Destinasi Unggulan
   ========================================================================== */
.destinations-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 190px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

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

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 0.5rem;
}

.destination-name {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2px;
}

/* ==========================================================================
   Testimonial Section ("Apa Kata Mereka?")
   ========================================================================== */
.testimonials-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(14, 165, 233, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-orange);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

.cta-banner-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    background: url('../img/komodo-hero.png') center/cover no-repeat;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 34, 66, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
}

.cta-banner-desc {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 580px;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.cta-button-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-white {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: var(--spacing-xl);
    border-top: 5px solid var(--accent-orange);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.brand-column .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 82px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

.links-column ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}

.links-column ul a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-list li i {
    color: var(--accent-orange);
    margin-top: 4px;
    font-size: 1rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--text-light);
}

.separator {
    margin: 0 0.5rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .trust-bar-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-links {
        gap: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
     }
     
     .navbar.scrolled .logo-img {
        height: 46px;
     }

    .nav-links, .nav-actions .nav-contact-card {
        display: none; /* Hide standard links & contact card on mobile */
    }
    
    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Menu active state class (added via JS) */
    .navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 2rem;
        gap: 1.5rem;
        align-items: flex-start;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .navbar.menu-open .dropdown-menu {
        display: none;
        position: static;
        opacity: 0;
        visibility: hidden;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin-top: 0.5rem;
        transform: none;
        width: 100%;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.5rem 0;
        transition: none;
    }

    .navbar.menu-open .dropdown.open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar.menu-open .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }

    .navbar.menu-open .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: var(--accent-orange) !important;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .search-wrapper {
        margin-top: 2rem;
    }
    
    .search-box {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .trust-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

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

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

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

    .cta-banner-card {
        padding: 3rem 1.5rem;
    }

    .cta-banner-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-banner-actions {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 1rem;
    }

    .cta-banner-actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .cta-button-row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .cta-button-row .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.25rem 1.5rem;
    }

    .brand-column {
        grid-column: span 2;
    }

    .contact-column {
        grid-column: span 2;
    }

    .footer-column p,
    .footer-desc {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .contact-list li {
        font-size: 0.8rem;
        gap: 0.75rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Tour Detail Pages Styles
   ========================================================================== */
.tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

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

.details-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.details-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.details-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

.aio-facts-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.aio-facts-table th, .aio-facts-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 0.95rem;
}

.aio-facts-table th {
    font-weight: 600;
    color: var(--primary-color);
    width: 35%;
    background-color: #f8fafc;
}

.aio-facts-table td {
    color: var(--text-dark);
}

.aio-facts-table th i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #cbd5e1;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--accent-orange);
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.inc-list, .exc-list {
    list-style: none;
    padding: 0;
}

.inc-list li, .exc-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.inc-list li i {
    color: #22c55e;
    margin-top: 0.25rem;
}

.exc-list li i {
    color: #ef4444;
    margin-top: 0.25rem;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    border: 2px solid var(--accent-orange);
    overflow: hidden;
}

.price-card-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
}

.price-card-header h4 {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-align: left;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.price-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

.price-card-body {
    padding: 2rem;
}

.btn-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background-color: #22c55e;
    color: var(--text-light);
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    text-decoration: none;
}

.btn-booking:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
    color: var(--text-light);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tour-grid {
        margin-top: 2rem;
        margin-bottom: 2.5rem;
        gap: 1.5rem;
    }

    .details-card {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        border-radius: var(--border-radius-sm);
    }

    .details-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.1rem;
    }

    .aio-facts-table th, .aio-facts-table td {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .aio-facts-table th {
        width: 42%;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -1.5rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-desc {
        font-size: 0.85rem;
    }

    .sidebar-sticky {
        position: static;
    }

    .price-card-body {
        padding: 1.5rem;
    }
}

/* WordPress admin bar offset (logged-in users) so the fixed navbar doesn't hide under it */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

/* ==========================================================================
   Blog Sidebar Widgets
   ========================================================================== */

.pkw-widget {
    margin-bottom: 1.75rem;
}

.pkw-widget:last-child {
    margin-bottom: 0;
}

.pkw-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Widget: WhatsApp Konsultasi Gratis */
.pkw-cta-whatsapp {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: var(--border-radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--box-shadow);
}

.pkw-cta-whatsapp-icon {
    font-size: 2.5rem;
    margin-bottom: 0.85rem;
}

.pkw-cta-whatsapp-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.pkw-cta-whatsapp-desc {
    font-size: 0.9rem;
    opacity: 0.92;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.pkw-cta-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-white);
    color: var(--accent-hover);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
}

.pkw-cta-whatsapp-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Widget: Search */
.pkw-search-form {
    display: flex;
    gap: 0.5rem;
}

.pkw-search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.7rem 1rem;
    min-width: 0;
}

.pkw-search-input-group i {
    color: var(--text-muted);
    flex-shrink: 0;
}

.pkw-search-field {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    min-width: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pkw-search-submit {
    flex-shrink: 0;
    width: 46px;
    border: none;
    border-radius: var(--border-radius-sm);
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.pkw-search-submit:hover {
    background: var(--accent-orange);
}

/* Widget: Paket Tour Populer */
.pkw-popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pkw-popular-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pkw-popular-item:first-child {
    padding-top: 0;
}

.pkw-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pkw-popular-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.pkw-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkw-popular-thumb i {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.pkw-popular-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.pkw-popular-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkw-popular-title:hover {
    color: var(--accent-orange-hover);
}

.pkw-popular-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-orange-hover);
}

/* Widget: Ikuti Kami (Social Follow) */
.pkw-social-follow {
    display: flex;
    gap: 0.6rem;
}

.pkw-social-follow a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.pkw-social-follow a:hover {
    background: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Default WP widgets (Categories, Archive, Recent Posts, Pages, Meta) inside the Blog sidebar */
.widget_categories ul,
.widget_archive ul,
.widget_recent_entries ul,
.widget_pages ul,
.widget_meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_categories ul li,
.widget_archive ul li,
.widget_recent_entries ul li,
.widget_pages ul li,
.widget_meta ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.widget_categories ul li:last-child,
.widget_archive ul li:last-child,
.widget_recent_entries ul li:last-child,
.widget_pages ul li:last-child,
.widget_meta ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_categories ul li a,
.widget_archive ul li a,
.widget_recent_entries ul li a,
.widget_pages ul li a,
.widget_meta ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover {
    color: var(--accent-orange-hover);
}

/* ==========================================================================
   Per-Vehicle Price Table (Tour transport & Airport Transfer)
   ========================================================================== */
.pkw-price-table-wrap {
    overflow-x: auto;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.pkw-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.pkw-price-table th,
.pkw-price-table td {
    padding: 0.85rem 1rem;
    text-align: center;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.pkw-price-table th {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pkw-price-table th:first-child,
.pkw-price-table td:first-child {
    text-align: left;
    white-space: normal;
}

.pkw-price-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.pkw-price-table tbody tr:last-child td {
    border-bottom: none;
}

.pkw-price-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.pkw-price-table--no-label th:first-child,
.pkw-price-table--no-label td:first-child {
    text-align: center;
    white-space: nowrap;
}
