/* Virunga Trails Safari - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0F6B4B;
    --primary-dark: #0a5239;
    --secondary: #C9A227;
    --background: #FAF8F2;
    --text: #1F2937;
    --footer: #0C3B30;
    --footer-dark: #082820;
    --footer-muted: #9ec9b8;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }

/* Hero — no image overlay; text sits in front */
.hero-content {
    position: relative;
    z-index: 10;
}

.image-foreground-text {
    color: #fff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 2px 10px rgba(0, 0, 0, 0.85),
        0 4px 28px rgba(0, 0, 0, 0.65);
}

.dest-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--primary);
    padding: 1rem 1rem 1.125rem;
}

.dest-card-desc {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--primary);
    padding: 2rem 0;
}

.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    display: flex;
    align-items: center;
}

.cta-section .cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.cta-section .cta-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Parallax — fixed background, scrolling text */
.parallax-section {
    position: relative;
    min-height: 28rem;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.parallax-section .parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-section .parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(12, 59, 48, 0.45) 0%,
        rgba(12, 59, 48, 0.65) 45%,
        rgba(12, 59, 48, 0.82) 100%
    );
}

.parallax-section .parallax-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 5rem 0;
}

@media (max-width: 768px), (hover: none) {
    .parallax-section .parallax-bg {
        background-attachment: scroll;
    }
}

/* Transparent glass search panel on hero */
.hero-search-panel {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-form-label {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-form-input {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
}

.hero-form-input:focus {
    border-color: rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15) !important;
}

.hero-form-input option {
    color: #1f2937;
    background: #fff;
}

/* Homepage hero extends under transparent header */
.page-home .hero-slider {
    margin-top: 0;
}

.page-home .hero-slider-home .hero-content {
    padding-top: 6rem;
}

.page-home .hero-slider-page .hero-content-page {
    padding-top: 5.5rem;
}

.tagline-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--secondary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-slider {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-slider-page {
    min-height: 42vh;
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(12, 59, 48, 0.35) 0%,
        rgba(12, 59, 48, 0.55) 50%,
        rgba(12, 59, 48, 0.75) 100%
    );
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 0.5rem;
}

.hero-slider-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.active {
    background: var(--secondary);
    transform: scale(1.15);
}

/* Cards */
.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 107, 75, 0.15);
}

.tour-card img {
    transition: transform 0.5s ease;
}

.tour-card:hover img {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #0F6B4B;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a5239;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #C9A227;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    background-color: #b08f1f;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--primary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0F6B4B;
    color: #0F6B4B;
    background-color: transparent;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background-color: #0F6B4B;
    color: #fff;
}

/* Sticky Header */
.header-sticky {
    background: rgba(255, 255, 255, 0.98);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 100;
}

.mobile-nav-panel {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1023px) {
    .mobile-nav-panel.is-open {
        display: block;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-panel {
        display: none !important;
    }
}

.header-menu-btn {
    position: relative;
    z-index: 101;
    min-width: 2.75rem;
    min-height: 2.75rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
}

.header-sticky.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Header over hero — transparent, shows image through */
.header-sticky.header-over-hero {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-sticky.header-over-hero .header-site-name,
.header-sticky.header-over-hero .header-nav-link {
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.header-sticky.header-over-hero .header-site-tag {
    color: rgba(255, 255, 255, 0.85) !important;
}

.header-sticky.header-over-hero .header-menu-btn {
    color: #fff;
}

.header-brand {
    position: relative;
}

.site-logo-cycle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: radial-gradient(circle at 50% 40%, #1a1a1a 0%, #000 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.site-logo-cycle::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(201, 162, 39, 0.7);
    border-right-color: rgba(15, 107, 75, 0.45);
    animation: logo-ring-cycle 3.5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.site-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    padding: 0.2rem;
}

.site-logo-animated {
    animation: logo-breathe 5s ease-in-out infinite;
}

@keyframes logo-ring-cycle {
    to { transform: rotate(360deg); }
}

@keyframes logo-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (min-width: 768px) {
    .site-logo-cycle {
        width: 5rem;
        height: 5rem;
    }
}

.header-sticky.header-over-hero .site-logo-cycle {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.header-sticky.header-over-hero .site-logo-animated {
    animation: logo-breathe 5s ease-in-out infinite;
}

.header-sticky.header-over-hero.scrolled .site-logo-cycle {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    background: radial-gradient(circle at 50% 40%, #fff 0%, #f3f4f6 100%);
}

.header-sticky.header-over-hero.scrolled .site-logo-cycle::after {
    border-top-color: rgba(201, 162, 39, 0.85);
    border-right-color: rgba(15, 107, 75, 0.55);
}

.header-sticky.header-over-hero .site-logo {
    filter: none;
}

.header-sticky.header-over-hero.scrolled .site-logo {
    filter: none;
}

.header-sticky.header-over-hero .header-logo {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.header-sticky.header-over-hero.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-sticky.header-over-hero.scrolled .header-site-name {
    color: var(--primary) !important;
    text-shadow: none;
}

.header-sticky.header-over-hero.scrolled .header-site-tag {
    color: #6b7280 !important;
}

.header-sticky.header-over-hero.scrolled .header-nav-link {
    color: #374151 !important;
    text-shadow: none;
}

.header-sticky.header-over-hero.scrolled .header-nav-link:hover {
    color: var(--primary) !important;
}

.header-sticky.header-over-hero.scrolled .header-menu-btn {
    color: #374151;
}

.header-sticky.header-over-hero.scrolled .header-logo {
    background: var(--primary);
    border-color: transparent;
}

/* Mega Menu */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, var(--background) 0%, #f0ebe0 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(15, 107, 75, 0.08);
    border: 1px solid rgba(15, 107, 75, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 107, 75, 0.14);
}

.testimonial-card .quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(201, 162, 39, 0.15);
    color: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    flex: 1;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--footer) 0%, var(--footer-dark) 100%);
    color: #fff;
}

.site-footer .footer-muted {
    color: var(--footer-muted);
}

.site-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.site-footer .footer-social {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.site-footer .footer-social:hover {
    background: var(--secondary);
}

.footer-logo {
    height: 4.5rem;
    width: 4.5rem;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, #1a1a1a 0%, #000 100%);
    padding: 0.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Testimonial slider — one at a time */
.testimonial-slider {
    max-width: 44rem;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-card-featured {
    text-align: center;
    padding: 2.5rem 2rem;
}

.testimonial-card-featured .quote-icon {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-featured .testimonial-author {
    justify-content: center;
    border-top: none;
    padding-top: 0;
}

.testimonial-text-featured {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary);
    color: #fff;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Safari Builder Steps */
.builder-step {
    display: none;
}

.builder-step.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.step-indicator .step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator .step.active {
    background: var(--primary);
    color: white;
}

.step-indicator .step.completed {
    background: var(--secondary);
    color: white;
}

/* Safari builder option cards (replaces Tailwind peer-checked) */
.safari-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.safari-option-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.safari-option input:checked + .safari-option-card,
.safari-option input:focus + .safari-option-card {
    border-color: #0F6B4B;
    background-color: rgba(15, 107, 75, 0.05);
}

.safari-option:hover .safari-option-card {
    border-color: rgba(15, 107, 75, 0.5);
}

/* Rating Stars */
.star-rating {
    color: var(--secondary);
}

/* Form */
.form-input,
input.form-input,
select.form-input,
textarea.form-input {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: #fff;
    color: #1F2937;
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
input.form-input:focus,
select.form-input:focus,
textarea.form-input:focus {
    border-color: #0F6B4B;
    box-shadow: 0 0 0 3px rgba(15, 107, 75, 0.15);
}

.form-input::placeholder {
    color: #9ca3af;
}

select.form-input {
    appearance: auto;
    cursor: pointer;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

/* Prose for blog */
.prose-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #0F6B4B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #0F6B4B;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose-content p {
    margin-bottom: 1rem;
    line-height: 1.625;
}

.prose-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-content img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.prose-content .story-video video {
    width: 100%;
    max-height: 32rem;
    background: #000;
}

/* Blog cards */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 107, 75, 0.08);
    box-shadow: 0 4px 20px rgba(12, 59, 48, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(12, 59, 48, 0.12);
}

.blog-card-featured {
    flex-direction: column;
}

@media (min-width: 768px) {
    .blog-card-featured {
        flex-direction: row;
        min-height: 20rem;
    }

    .blog-card-featured .blog-card-media-link {
        flex: 1.1;
    }

    .blog-card-featured .blog-card-body {
        flex: 1;
        justify-content: center;
        padding: 2rem 2.25rem;
    }

    .blog-card-featured .blog-card-media {
        height: 100%;
        min-height: 20rem;
    }
}

.blog-card-media-link {
    display: block;
    text-decoration: none;
}

.blog-card-media {
    position: relative;
    height: 13rem;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-card-featured .blog-card-media {
    height: 14rem;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 59, 48, 0.55) 0%, transparent 55%);
    pointer-events: none;
}

.blog-card-category {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    z-index: 2;
    padding: 0.3rem 0.75rem;
    background: var(--secondary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.65rem;
}

.blog-card-meta-dot {
    opacity: 0.5;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.blog-card-featured .blog-card-title {
    font-size: 1.75rem;
}

.blog-card-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--secondary);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #4b5563;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-cta:hover {
    color: var(--secondary);
    gap: 0.55rem;
}

.blog-card-cta-icon {
    width: 1rem;
    height: 1rem;
}

/* Blog article page */
.blog-hero {
    position: relative;
    min-height: 22rem;
    height: 48vh;
    max-height: 32rem;
    overflow: hidden;
    background: var(--footer);
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 59, 48, 0.92) 0%,
        rgba(12, 59, 48, 0.45) 45%,
        rgba(12, 59, 48, 0.2) 100%
    );
}

.blog-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2.5rem;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: var(--secondary);
}

.blog-hero-category {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: var(--secondary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    color: #fff;
    max-width: 48rem;
    margin-bottom: 1rem;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
}

.blog-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.55;
    color: #374151;
    border-left: 4px solid var(--secondary);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.blog-prose {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(15, 107, 75, 0.08);
    box-shadow: 0 2px 12px rgba(12, 59, 48, 0.04);
}

@media (min-width: 768px) {
    .blog-prose {
        padding: 2.25rem 2.5rem;
    }
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.blog-tags-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-right: 0.25rem;
}

.blog-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(15, 107, 75, 0.08);
    color: var(--primary);
    border-radius: 9999px;
}

.blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-back-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-back-link:hover {
    color: var(--secondary);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .blog-sidebar {
        position: sticky;
        top: 6rem;
    }
}

.blog-sidebar-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 107, 75, 0.08);
    box-shadow: 0 2px 12px rgba(12, 59, 48, 0.05);
}

.blog-sidebar-safari {
    background: linear-gradient(145deg, var(--primary) 0%, #0a5239 100%);
    border-color: transparent;
    color: #fff;
}

.blog-sidebar-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.blog-sidebar-safari .blog-sidebar-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.blog-sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.blog-sidebar-title-sm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.blog-sidebar-text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.blog-sidebar-text-sm {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.blog-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-sidebar-muted {
    background: rgba(15, 107, 75, 0.04);
}

.blog-sidebar-category-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-sidebar-category-link:hover {
    color: var(--secondary);
}

.prose-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--secondary);
    background: rgba(201, 162, 39, 0.08);
    font-style: italic;
    color: #374151;
}

.prose-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose-content a:hover {
    color: var(--secondary);
}

/* Homepage promo video */
.home-promo-video-wrap {
    width: 100%;
}

.home-promo-video {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 107, 75, 0.2);
    background: var(--primary-dark);
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 16rem;
}

.home-promo-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-promo-video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
}

.home-promo-video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.home-promo-placeholder-inner {
    text-align: center;
    padding: 2rem;
}

/* Tour itinerary — clean vertical trail */
.itinerary-trail {
    position: relative;
}

.itinerary-day {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0 1rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.itinerary-day:not(.is-last) .itinerary-marker::after {
    content: '';
    position: absolute;
    left: 1.125rem;
    top: 2rem;
    bottom: 0;
    width: 1px;
    background: #d1d5db;
    transform: translateX(-50%);
}

.itinerary-marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
}

.itinerary-day-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: #fff;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}

.itinerary-day.is-last .itinerary-day-badge {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.itinerary-content {
    background: var(--background);
    border-radius: 0.5rem;
    padding: 1rem 1.125rem;
    border-left: 2px solid var(--secondary);
}

.itinerary-day-label {
    display: none;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
    margin: 0 0 0.25rem;
}

.itinerary-day-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.itinerary-day-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

.itinerary-day-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.itinerary-tag {
    display: inline-block;
    font-size: 0.6875rem;
    color: #374151;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.2rem 0.6rem;
}

.itinerary-tag-meals {
    color: var(--primary);
    border-color: rgba(15, 107, 75, 0.2);
    background: rgba(15, 107, 75, 0.05);
}

@media (min-width: 641px) {
    .itinerary-day {
        grid-template-columns: 2.75rem 1fr;
        gap: 0 1.25rem;
        padding-bottom: 1.75rem;
    }

    .itinerary-day:not(.is-last) .itinerary-marker::after {
        left: 1.375rem;
    }

    .itinerary-day-badge {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }

    .itinerary-content {
        padding: 1.125rem 1.375rem;
    }

    .itinerary-day-title {
        font-size: 1.375rem;
    }

    .itinerary-day-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .itinerary-marker {
        display: none;
    }

    .itinerary-day {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 1.25rem;
    }

    .itinerary-day:not(.is-last) .itinerary-marker::after {
        display: none;
    }

    .itinerary-day-label {
        display: block;
    }

    .itinerary-content {
        padding: 0.875rem 1rem;
    }
}

/* Loading */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Admin sidebar */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #0F6B4B 0%, #0a5239 100%);
}

.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 3px solid #C9A227;
}

/* Status badges */
.badge-pending { background-color: #fef3c7; color: #92400e; }
.badge-approved { background-color: #d1fae5; color: #065f46; }
.badge-rejected { background-color: #fee2e2; color: #991b1b; }
.badge-completed { background-color: #dbeafe; color: #1e40af; }
.badge-cancelled { background-color: #f3f4f6; color: #374151; }

.badge-traveler-story {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-traveler-story-inline {
    position: static;
    box-shadow: none;
    font-size: 0.625rem;
    padding: 0.2rem 0.6rem;
    vertical-align: middle;
}

/* Gallery */
.gallery-card {
    position: relative;
}

.gallery-card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-media {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 0.875rem 0.875rem;
    background: linear-gradient(to top, rgba(8, 40, 32, 0.94) 0%, rgba(8, 40, 32, 0.55) 55%, transparent 100%);
    color: #fff;
    pointer-events: none;
}

.gallery-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

.gallery-card-caption {
    font-size: 0.6875rem;
    line-height: 1.45;
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    padding-left: 0.15rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

/* Gallery lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image,
.lightbox-video {
    display: none;
}

.lightbox-meta {
    display: none;
    text-align: center;
    color: #fff;
    max-width: 36rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.lightbox.has-meta .lightbox-meta {
    display: block;
}

.lightbox-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
}

.lightbox-caption {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact page */
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(15, 107, 75, 0.1);
    color: var(--primary);
}

.contact-social-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    border: 1px solid rgba(15, 107, 75, 0.25);
    border-radius: 9999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-social-link:hover {
    background: var(--primary);
    color: #fff;
}

.contact-map-section {
    padding: 0 0 3rem;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 28rem;
    background: #e5e7eb;
}

.contact-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-caption {
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .contact-map-wrap {
        height: 20rem;
    }
}

/* Legal pages */
.legal-prose h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-prose p,
.legal-prose li {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-prose ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    background: rgba(12, 59, 48, 0.97);
    color: #f3f4f6;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .cookie-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-consent-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Trust strip (RDB registration) */
.trust-strip {
    padding: 1.25rem 0;
}

.trust-strip-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f0f7f4 0%, #faf8f2 100%);
    border: 1px solid rgba(15, 107, 75, 0.15);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(15, 107, 75, 0.06);
}

.trust-strip-compact .trust-strip-inner {
    padding: 1rem 1.25rem;
}

.trust-strip-badge {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-strip-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.trust-strip-title {
    margin: 0 0 0.35rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.trust-strip-text {
    margin: 0;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.55;
}

.trust-strip-meta {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.trust-strip-label {
    font-weight: 600;
    color: #374151;
}

/* Partners grid */
.partners-section {
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.partner-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
    border-color: rgba(15, 107, 75, 0.25);
    box-shadow: 0 8px 24px rgba(15, 107, 75, 0.08);
    transform: translateY(-2px);
}

.partner-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.partner-logo-wrap {
    width: 100%;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.partner-logo {
    max-width: 85%;
    max-height: 4rem;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.partner-card:hover .partner-logo {
    filter: none;
}

.partner-logo-placeholder {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #0F6B4B 0%, #0C3B30 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.partner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.35;
    margin: 0;
}

.partner-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
    margin: 0.35rem 0 0;
    font-weight: 600;
}

.partner-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.5rem 0 0;
    line-height: 1.45;
}

/* Booking deposit payment panel */
.booking-payment-panel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #faf8f2;
    border: 1px solid #e8e4d9;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

.booking-payment-panel-header {
    margin-bottom: 1rem;
}

.booking-payment-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e8e4d9;
}

.booking-payment-summary dt {
    color: #6b7280;
    margin-bottom: 0.15rem;
}

.booking-payment-summary dd {
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.booking-payment-deposit dd {
    color: var(--primary);
    font-size: 1.125rem;
}

.booking-payment-instructions-box {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
    font-family: ui-monospace, monospace;
    white-space: pre-wrap;
}

.badge-awaiting_deposit {
    background: #fef3c7;
    color: #92400e;
}

.badge-deposit_received {
    background: #d1fae5;
    color: #065f46;
}

.badge-fully_paid {
    background: #dbeafe;
    color: #1e40af;
}

.badge-none {
    background: #f3f4f6;
    color: #6b7280;
}

/* Partners marquee */
.partners-section {
    background: linear-gradient(180deg, #faf8f2 0%, #fff 45%, #faf8f2 100%);
    border-top: 1px solid rgba(15, 107, 75, 0.08);
    border-bottom: 1px solid rgba(15, 107, 75, 0.08);
}

.partners-marquee-band {
    position: relative;
    padding: 1.75rem 0 2rem;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.partners-slider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.partners-slider-viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.partners-slider-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.partners-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: inherit;
}

.partners-slider-logo {
    display: block;
    max-height: 4.25rem;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.partners-slider-item:hover .partners-slider-logo {
    opacity: 0.85;
}

.partners-slider-placeholder {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
}

.partners-slider-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #1f2937;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.partners-slider-btn:hover:not(:disabled) {
    color: var(--primary);
}

.partners-slider-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

@media (max-width: 768px) {
    .partners-slider-track {
        gap: 1.25rem;
    }

    .partners-slider-item {
        height: 4.5rem;
    }

    .partners-slider-logo {
        max-height: 3.5rem;
    }

    .partners-slider-btn {
        width: 2rem;
        height: 2rem;
    }

    .partners-slider-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-logo-animated,
    .site-logo-cycle::after {
        animation: none;
    }

    .partners-slider-track {
        transition: none;
        flex-wrap: wrap;
        justify-content: center;
        transform: none !important;
    }

    .partners-slider-btn {
        display: none;
    }
}
