/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --accent: #0d9488;
    --accent-hover: #0b7f74;
    --light: #f8f9fa;
    --dark: #0f0f1a;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

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

.btn-nav {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar.scrolled .logo-urban,
.navbar.scrolled .logo-stride {
    color: var(--primary);
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.navbar.scrolled .btn-nav {
    color: var(--white);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-urban {
    color: var(--white);
    font-family: var(--font-body);
}

.logo-stride {
    color: var(--accent);
    font-family: var(--font-body);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ===== FEATURES ===== */
.features {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== STATS ===== */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--light);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.cta-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ===== PLATFORMS ===== */
.platform-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--light);
    border-radius: var(--radius);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    font-weight: 600;
}

.platform-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.platform-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text ul {
    margin: 16px 0 24px;
}

.content-text li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.content-image {
    background: var(--light);
    border-radius: var(--radius);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray);
}

.contact-detail span:first-child {
    font-size: 1.2rem;
}

/* ===== TOUR CARDS ===== */
.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.tour-card-image {
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

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

.tour-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.tour-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-meta span {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: var(--light);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 24px;
}

.testimonial cite {
    color: var(--gray);
    font-style: normal;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--primary);
        font-size: 1rem;
    }

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

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

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

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

    .content-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-block.reverse {
        direction: ltr;
    }

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

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

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

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }
}

/* ===== ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    min-height: 280px;
}

.review-card {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.review-card.active {
    display: block;
}

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

.review-stars {
    color: #f5a623;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.review-card blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 24px;
}

.review-card cite {
    color: var(--gray);
    font-style: normal;
    font-size: 0.95rem;
    display: block;
}

.review-source {
    display: inline-block;
    background: var(--gray-light);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 8px;
    vertical-align: middle;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
}

/* ===== STATIC REVIEWS GRID ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.review-card-static {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.review-card-static:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-card-static .review-stars {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-card-static blockquote {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--primary);
    margin-bottom: 20px;
}

.review-card-static cite {
    color: var(--gray);
    font-style: normal;
    font-size: 0.85rem;
    display: block;
}

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

/* ===== REZGO TOUR CARDS ===== */
.tour-rating {
    color: #f5a623;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.tour-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.tour-times {
    font-size: 0.85rem;
    color: var(--gray);
}

.tour-book-btn {
    width: 100%;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.booking-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.booking-modal-close:hover {
    color: var(--primary);
}

.booking-tour-header {
    text-align: center;
    margin-bottom: 28px;
}

.booking-tour-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.booking-tour-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.booking-tour-times {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ===== CALENDAR ===== */
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-month {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cal-nav:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.cal-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    padding: 8px 0;
    text-transform: uppercase;
}

.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cal-day.empty {
    background: none;
}

.cal-day.available {
    background: #e8f5e9;
    color: #2e7d32;
    cursor: pointer;
    font-weight: 500;
}

.cal-day.available:hover {
    background: #c8e6c9;
    transform: scale(1.05);
}

.cal-day.available.selected {
    background: var(--accent);
    color: var(--white);
}

.cal-day.unavailable {
    color: #ccc;
}

.cal-day.past {
    color: #ddd;
}

.calendar-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray);
}

.legend-available, .legend-unavailable {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 4px;
    vertical-align: middle;
}

.legend-available { background: #e8f5e9; }
.legend-unavailable { background: #eee; }

/* ===== TIME OPTIONS ===== */
.date-selected-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.time-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 12px;
}

.time-option:hover {
    border-color: var(--accent);
}

.time-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.time-option-time {
    font-weight: 700;
    font-size: 1.05rem;
}

.time-option-name {
    font-size: 0.85rem;
    color: var(--gray);
}

.time-option-avail {
    font-size: 0.8rem;
    color: #2e7d32;
}

.time-option-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-option-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ===== POPULAR BADGE ===== */
.tour-card.popular {
    border: 2px solid var(--accent);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ===== TOUR DETAIL PAGE ===== */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.tour-detail-main h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 32px 0 16px;
}

.tour-detail-main h2:first-of-type {
    margin-top: 0;
}

.tour-detail-main p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.tour-detail-main ul {
    margin: 0 0 16px;
}

.tour-detail-main li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.tour-detail-main li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tour-detail-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gray);
}

.tour-detail-meta-bar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.itinerary-item {
    padding: 12px 0 12px 32px;
    position: relative;
    border-left: 2px solid var(--accent);
    color: var(--gray);
    font-size: 0.95rem;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.booking-sidebar-card {
    background: var(--light);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    position: sticky;
    top: 100px;
}

.booking-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.booking-sidebar-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tour-detail-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.tour-detail-images img {
    border-radius: var(--radius);
    width: 100%;
    object-fit: cover;
    height: 200px;
}

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

    .booking-sidebar-card {
        position: static;
    }
}

/* ===== CHECKOUT FORM ===== */
.checkout-form h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.checkout-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.checkout-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

.stripe-card-element {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    transition: var(--transition);
}

.stripe-card-element.StripeElement--focus {
    border-color: var(--accent);
}

.card-errors {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 20px;
}

.checkout-total {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 8px;
    border-top: 1px solid var(--gray-light);
}

.checkout-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
}

/* ===== BOOKING SUCCESS ===== */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.booking-success p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== GUEST PICKER ===== */
.guest-picker {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guest-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.guest-option:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.04);
}

.guest-option-count {
    font-weight: 600;
}

.guest-option-price {
    color: var(--accent);
    font-weight: 600;
}

.time-option-selectable {
    cursor: pointer;
}

.time-option-selectable:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.04);
}

.guest-pp {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    margin-left: 4px;
}
