/* =============================================
   Africa Ghana Tours — Full Stylesheet
   Brand: Midnight Blue · Sky Blue · Khaki Brown
   Fonts: Playfair Display (serif) + DM Sans
============================================= */

/* ── VARIABLES ── */
:root {
    --midnight:     #0B3A5D;
    --midnight-dk:  #082d49;
    --sky:          #00A9D8;
    --brown:        #B98077;
    --brown-dk:     #9E6B63;
    --light:        #F6F7F9;
    --white:        #FFFFFF;
    --text:         #1A1A1A;
    --text-muted:   #6B7280;
    --border:       #E5E7EB;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --container:    1200px;
    --nav-h:        78px;
    --radius:       8px;
    --radius-lg:    16px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:       0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:    0 20px 40px rgba(0,0,0,0.12);
    --transition:   0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--midnight);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--brown); }

/* ── LAYOUT ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.section { padding: 90px 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--midnight); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn-large { padding: 15px 32px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.btn-primary {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}
.btn-primary:hover {
    background: var(--brown-dk);
    border-color: var(--brown-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185,128,119,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--midnight);
    border-color: var(--midnight);
}
.btn-secondary:hover {
    background: var(--midnight);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--midnight);
}

.btn-nav-cta {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
    padding: 9px 20px;
    font-size: 0.85rem;
}
.btn-nav-cta:hover { background: var(--brown-dk); }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--midnight);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    color: var(--white);
}
.logo-img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}
.logo-full {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
@media (max-width: 480px) {
    .logo-full { display: none; }
    .logo-img { max-width: 120px; height: 36px; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius);
}
.nav-item:hover, .nav-item.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── FLASH MESSAGES ── */
.flash-container {
    position: fixed;
    top: calc(var(--nav-h) + 15px);
    right: 15px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}
.flash {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}
.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}
.flash-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash-error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.flash-warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } }

/* ── HERO ── */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        rgba(11,58,93,0.92) 0%,
        rgba(11,58,93,0.65) 55%,
        rgba(11,58,93,0.15) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
}
.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sky);
    margin-bottom: 14px;
}
.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
}
.hero-content h1 em { color: var(--sky); }
.subheadline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
}
.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST BAR ── */
.trust-bar {
    padding: 18px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-item i { color: var(--brown); }
.trust-divider { color: var(--border); font-size: 1.2rem; }

/* ── ABOUT SECTION ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-images .img-stack {
    position: relative;
    padding-right: 35px;
    padding-bottom: 35px;
}
.img-main-about {
    width: 90%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.img-accent-about {
    position: absolute;
    bottom: 0; right: 0;
    width: 48%;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}
.experience-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--brown);
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.experience-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-display); }
.experience-badge span { font-size: 0.75rem; line-height: 1.3; }

.section-eyebrow {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brown);
    margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--sky); }

.about-text h2 { margin-bottom: 20px; }
.about-text .lead { font-size: 1.05rem; font-weight: 500; margin-bottom: 14px; }

.check-list { margin: 20px 0; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--brown); font-size: 1rem; flex-shrink: 0; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ── TOUR CARDS ── */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tours-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.tour-card, .tour-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tour-card:hover, .tour-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tour-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,58,93,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.tour-card:hover .tour-card-overlay,
.tour-card-full:hover .tour-card-overlay { opacity: 1; }

.tour-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--brown);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.tour-card-body { padding: 22px; }
.tour-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.tour-duration, .tour-category, .tour-guests {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.tour-category {
    background: rgba(0,169,216,0.1);
    color: var(--sky);
    padding: 2px 8px;
    border-radius: 20px;
}
.tour-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.tour-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 10px;
}
.tour-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.price-from { font-size: 0.75rem; color: var(--text-muted); }
.price-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight);
}
.price-per { font-size: 0.75rem; color: var(--text-muted); }
.tour-actions { display: flex; gap: 8px; }

/* ── HOW IT WORKS ── */
.how-section { position: relative; overflow: hidden; }
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 50px;
}
.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: -10px;
}
.step-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(0,169,216,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
    margin: 0 auto 16px;
    background: rgba(0,169,216,0.08);
}
.step h4 { color: var(--white); margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(0,169,216,0.2);
    margin-top: 52px;
    flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.featured-testimonial {
    background: var(--midnight);
    border-color: transparent;
    position: relative;
    transform: scale(1.02);
}
.featured-testimonial blockquote { color: rgba(255,255,255,0.9); }
.featured-testimonial .testimonial-author strong { color: var(--white); }
.featured-testimonial .testimonial-author span { color: rgba(255,255,255,0.5); }
.featured-testimonial .testimonial-rating i { color: var(--brown); }
.testimonial-rating { margin-bottom: 16px; }
.testimonial-rating i { color: #f59e0b; font-size: 0.9rem; }
blockquote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 20px;
    color: var(--text);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA SECTION ── */
.cta-section { padding: 60px 0; background: var(--light); }
.cta-box {
    background: linear-gradient(135deg, var(--midnight) 0%, #1a5276 100%);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-text h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.75); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero-short { height: 240px; }
.page-hero-bg {
    position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(11,58,93,0.85) 0%, rgba(11,58,93,0.4) 100%);
}
.page-hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    padding-bottom: 40px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 6px; font-size: 2.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); margin: 0; }

/* ── FILTER BAR ── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}
.pill:hover { border-color: var(--midnight); color: var(--midnight); }
.pill.active {
    background: var(--midnight);
    border-color: var(--midnight);
    color: var(--white);
}

/* ── TOUR DETAIL ── */
.tour-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.tour-hero-bg { position: absolute; inset: 0; }
.tour-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(11,58,93,0.9) 0%, rgba(11,58,93,0.2) 100%);
}
.tour-hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    padding-bottom: 40px;
}
.tour-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.tour-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.tour-hero-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.badge-inline {
    background: var(--brown);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.tour-detail-section { padding-top: 60px; }
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}
.tour-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}
.detail-block { margin-bottom: 40px; }
.detail-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}
.detail-block h3 i { color: var(--brown); }
.highlights-list, .included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.highlights-list li, .included-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.highlights-list i { color: var(--brown); margin-top: 2px; flex-shrink: 0; }
.included-list i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.gallery-img { border-radius: var(--radius); height: 160px; object-fit: cover; width: 100%; }

/* Booking Sidebar */
.booking-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.sticky-card { position: sticky; top: calc(var(--nav-h) + 20px); }
.booking-card-header {
    background: var(--midnight);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.booking-price { color: var(--white); }
.price-from-sm { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.price-main {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.price-per-sm { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.booking-badge {
    background: var(--brown);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.booking-card-details { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--light);
}
.detail-row:last-child { border-bottom: none; }
.detail-row i { color: var(--brown); width: 16px; text-align: center; }
.booking-card .btn { margin: 0 24px 0; width: calc(100% - 48px); }
.booking-card .btn-primary { margin-top: 20px; }
.secure-payment-note {
    padding: 10px 24px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.booking-card .btn-secondary { margin-top: 10px; margin-bottom: 20px; }

.related-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-section h3 { margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── BOOKING FORM ── */
.booking-section { background: var(--light); }
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.form-card h2 { margin-bottom: 6px; }
.form-subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
}
.form-group label small { font-weight: 400; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--midnight);
    box-shadow: 0 0 0 3px rgba(11,58,93,0.08);
}
.price-summary {
    background: var(--light);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 20px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.price-total {
    font-size: 1.1rem;
    color: var(--midnight);
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 4px;
}
.secure-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Booking Tour Summary */
.summary-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--white); }
.summary-img { width: 100%; height: 200px; object-fit: cover; }
.summary-body { padding: 22px; }
.summary-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sky);
    margin-bottom: 6px;
    display: block;
}
.summary-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.summary-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.summary-details { font-size: 0.88rem; }
.summary-details div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--light);
}
.summary-details div:last-child { border-bottom: none; }
.summary-details i { color: var(--brown); width: 14px; }
.what-happens h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--midnight); }
.what-happens ol { padding-left: 18px; font-size: 0.85rem; color: var(--text-muted); list-style: decimal; }
.what-happens ol li { padding: 3px 0; }
.what-happens hr { margin: 14px 0; border: none; border-top: 1px solid var(--border); }

/* ── CONFIRMATION ── */
.confirmation-section { min-height: 80vh; display: flex; align-items: center; background: var(--light); }
.confirmation-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
}
.confirmation-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}
.confirmation-icon.success { background: #d4edda; color: #28a745; }
.confirmation-icon.pending { background: #fff3cd; color: #f59e0b; }
.confirmation-icon.cancel { background: #f8d7da; color: #dc3545; }
.conf-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 25px; }
.booking-ref-display { margin: 25px 0; }
.ref-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--midnight);
    letter-spacing: 4px;
    background: var(--light);
    padding: 15px 25px;
    border-radius: var(--radius);
    display: inline-block;
    margin: 8px 0;
}
.ref-note { font-size: 0.82rem; color: var(--text-muted); }
.confirmation-details {
    text-align: left;
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}
.conf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}
.conf-row:last-child { border-bottom: none; }
.conf-row span { color: var(--text-muted); }
.total-row { font-size: 1.05rem; color: var(--midnight); border-top: 2px solid var(--border); margin-top: 4px; padding-top: 12px; }
.confirmation-next-steps { text-align: left; margin: 30px 0; }
.confirmation-next-steps h3 { text-align: center; margin-bottom: 20px; font-size: 1.2rem; }
.next-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.next-step {
    display: flex;
    gap: 12px;
    background: var(--light);
    border-radius: var(--radius);
    padding: 14px;
}
.step-icon-sm {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(11,58,93,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    flex-shrink: 0;
}
.next-step p { font-size: 0.85rem; margin: 0; line-height: 1.45; }
.confirmation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0 15px;
}
.confirmation-contact { font-size: 0.85rem; color: var(--text-muted); }
.confirmation-contact a { color: var(--midnight); font-weight: 600; }
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
}
.status-confirmed { background: #d4edda; color: #155724; }
.status-pending { background: #fff3cd; color: #856404; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-items { margin-top: 30px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(11,58,93,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item strong { display: block; margin-bottom: 3px; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── EMPTY STATE ── */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; display: block; }
.empty-state h3 { margin-bottom: 8px; color: var(--text-muted); }

/* ── FOOTER ── */
.footer { background: var(--midnight-dk); color: #9ca3af; padding: 70px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--brown); color: var(--white); }
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: 0.9rem; color: #9ca3af; }
.footer-col a:hover { color: var(--white); }
.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
}
.contact-list i { color: var(--brown); width: 14px; }
.trust-badges { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.trust-badge i { color: var(--brown); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 10px;
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .tour-detail-grid { grid-template-columns: 1fr 340px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .featured-testimonial { transform: none; }
}

@media (max-width: 768px) {
    :root { --nav-h: 65px; }
    body { padding-bottom: 70px; }

    .mobile-menu-btn { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--midnight);
        padding: 20px;
        gap: 5px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-item { display: block; padding: 12px 16px; text-align: center; }
    .btn-nav-cta { display: block; text-align: center; margin-top: 10px; }

    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { gap: 20px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-images { display: none; }

    .tours-grid, .tours-grid-full { grid-template-columns: 1fr; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { width: 2px; height: 40px; margin: 0; }

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

    .cta-box { flex-direction: column; text-align: center; padding: 36px 24px; }

    .tour-detail-grid { grid-template-columns: 1fr; }
    .booking-sidebar { order: -1; }
    .sticky-card { position: static; }

    .booking-layout { grid-template-columns: 1fr; }
    .booking-tour-summary { display: none; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .highlights-list, .included-list { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }

    .next-steps-grid { grid-template-columns: 1fr; }
    .confirmation-actions { flex-direction: column; }

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

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

    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        background: var(--white);
        padding: 12px 16px;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .trust-items { gap: 12px; }
    .trust-divider { display: none; }
    .page-hero { height: 260px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .tour-hero { height: 300px; }
    .confirmation-wrap { padding: 30px 20px; }
}

/* ══════════════════════════════════════════════════════
   NEW SECTIONS — INDEX & FAQ
══════════════════════════════════════════════════════ */

/* ── HERO CHIPS ── */
.hero-chips {
    position: absolute;
    bottom: 110px;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 30px;
}
.hero-chip {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.hero-chip i { color: var(--sky); font-size: 0.7rem; }
.hero-chip:hover { background: rgba(255,255,255,0.22); transform: translateX(-4px); }

/* ── WHY GHANA ── */
.why-ghana-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.why-ghana-text h2 { margin-bottom: 16px; }
.why-ghana-text p { margin-bottom: 14px; color: var(--text-muted); }
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}
.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--light);
    transition: var(--transition);
}
.why-feature:hover { border-color: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.why-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: rgba(11,58,93,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    font-size: 1rem;
    flex-shrink: 0;
}
.why-feature strong { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.why-feature p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Mosaic */
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}
.mosaic-grid img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 180px;
    transition: transform 0.4s ease;
}
.mosaic-grid img:hover { transform: scale(1.03); }
.mosaic-tall { height: 100% !important; grid-row: 1 / 3; min-height: 370px; }
.mosaic-wide { grid-column: 1 / 3; height: 150px !important; }

/* ── CATEGORIES ── */
.categories-section { padding: 80px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 520px;
    margin-top: 40px;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}
.category-card-lg { grid-row: 1 / 3; }
.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.category-card:hover .category-bg { transform: scale(1.06); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11,58,93,0.85) 0%, rgba(11,58,93,0.1) 100%);
    transition: var(--transition);
}
.category-card:hover .category-overlay { background: linear-gradient(0deg, rgba(11,58,93,0.92) 0%, rgba(11,58,93,0.3) 100%); }
.category-body {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: var(--white);
    width: 100%;
}
.category-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sky);
    transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--brown); color: var(--white); }
.category-body h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 5px; }
.category-card-lg .category-body h3 { font-size: 1.5rem; }
.category-body p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.category-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sky);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.category-card:hover .category-link { color: var(--white); gap: 10px; }

/* ── NUMBERS SECTION ── */
.numbers-section {
    background: var(--midnight);
    padding: 60px 0;
}
.numbers-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.number-item { text-align: center; flex: 1; min-width: 120px; }
.number-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.number-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}
.number-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.number-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── TEAM ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-social {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--midnight);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.team-social a:hover { background: var(--brown); }
.team-body { padding: 18px; }
.team-body h4 { font-size: 1rem; margin-bottom: 3px; }
.team-role { display: block; font-size: 0.78rem; color: var(--brown); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.team-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.team-langs { display: flex; gap: 6px; flex-wrap: wrap; }
.team-langs span { font-size: 0.75rem; background: var(--light); padding: 2px 8px; border-radius: 20px; color: var(--text-muted); }

/* ── TESTIMONIALS EXTRAS ── */
.reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.agg-stars i { color: #f59e0b; font-size: 1rem; }
.reviews-aggregate strong { color: var(--midnight); }
.review-platforms { display: flex; gap: 12px; }
.review-platforms span { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.review-platforms .fa-tripadvisor { color: #00af87; }
.review-platforms .fa-google { color: #ea4335; }

.mini-reviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.mini-review {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
}
.mini-stars { margin-bottom: 8px; }
.mini-stars i { color: #f59e0b; font-size: 0.75rem; }
.mini-review p { font-size: 0.84rem; font-style: italic; color: var(--text); margin-bottom: 8px; line-height: 1.55; }
.mini-review span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.testimonial-platform { margin-top: 14px; font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.testimonial-platform .fa-tripadvisor { color: #00af87; }
.testimonial-platform .fa-google { color: #ea4335; }

/* ── GALLERY STRIP ── */
.gallery-strip-section { background: var(--light); padding-bottom: 60px; }
.gallery-strip {
    display: flex;
    gap: 6px;
    overflow: hidden;
}
.gallery-strip-item {
    flex: 1;
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-strip-item:hover img { transform: scale(1.08); }
.gallery-strip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,58,93,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.8rem;
}
.gallery-strip-item:hover .gallery-strip-overlay { opacity: 1; }

/* ── FAQ PREVIEW ── */
.faq-preview-section { background: var(--white); }
.faq-preview-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: start;
}
.faq-preview-text h2 { margin-bottom: 14px; }
.faq-preview-text p { color: var(--text-muted); margin-bottom: 0; }
.faq-contact-nudge {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 24px;
    border-left: 4px solid #25d366;
}
.faq-contact-nudge .fa-whatsapp { font-size: 1.4rem; color: #25d366; margin-top: 2px; }
.faq-contact-nudge strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.faq-contact-nudge p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* FAQ Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--midnight); box-shadow: 0 4px 12px rgba(11,58,93,0.08); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--midnight);
    transition: var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-item.active .faq-question { background: var(--midnight); color: var(--white); }
.faq-icon { font-size: 0.8rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--sky); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--white);
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p, .faq-answer ul {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}
.faq-answer p + p { padding-top: 0; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section { padding: 60px 0; }
.newsletter-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-sm);
}
.newsletter-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(11,58,93,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    font-size: 1.6rem;
    flex-shrink: 0;
}
.newsletter-text { flex: 1; }
.newsletter-text h3 { margin-bottom: 5px; font-size: 1.3rem; }
.newsletter-text p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }
.newsletter-form { flex: 1.2; }
.newsletter-input-wrap { display: flex; gap: 10px; }
.newsletter-input-wrap input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.newsletter-input-wrap input:focus { outline: none; border-color: var(--midnight); }
.newsletter-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 5px; }

/* ── FINAL CTA ── */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.final-cta-bg {
    position: absolute; inset: 0;
}
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,58,93,0.88) 0%, rgba(8,45,73,0.82) 100%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-reassurance {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}
.final-cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
}
.final-cta-reassurance i { color: var(--sky); }

/* ══════════════════════════════════════════════════════
   FAQ PAGE SPECIFIC
══════════════════════════════════════════════════════ */
.faq-page-section { background: var(--light); padding-top: 50px; }
.faq-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.faq-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}
.faq-sidebar-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.faq-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.faq-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.faq-nav-link i { width: 14px; color: var(--brown); font-size: 0.8rem; }
.faq-nav-link:hover { background: var(--light); color: var(--midnight); }
.faq-nav-link.active { background: rgba(11,58,93,0.08); color: var(--midnight); font-weight: 700; }
.faq-sidebar-cta { padding-top: 18px; border-top: 1px solid var(--border); }
.faq-sidebar-cta h5 { font-size: 0.9rem; margin-bottom: 4px; }
.faq-sidebar-cta p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

.faq-content { display: flex; flex-direction: column; gap: 30px; }
.faq-category-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.faq-category-header {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--midnight);
}
.faq-cat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.faq-category-header h2 { font-size: 1.3rem; color: var(--white); margin-bottom: 3px; }
.faq-category-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }
.faq-category-block .faq-accordion { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.faq-category-block .faq-item { border-radius: var(--radius); }

.faq-still-questions {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--midnight);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    flex-wrap: wrap;
}
.still-q-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.still-q-text { flex: 1; }
.still-q-text h3 { color: var(--white); margin-bottom: 5px; font-size: 1.2rem; }
.still-q-text p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.9rem; }
.still-q-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── ABOUT CTA ROW ── */
.about-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr 1fr; height: auto; }
    .category-card-lg { grid-row: auto; }
    .why-ghana-grid { grid-template-columns: 1fr; gap: 40px; }
    .mosaic-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .mosaic-tall { min-height: 200px; grid-row: auto; }
    .mini-reviews { grid-template-columns: repeat(2, 1fr); }
    .faq-preview-grid { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; text-align: center; gap: 24px; }
    .newsletter-input-wrap { flex-direction: column; }
    .faq-page-layout { grid-template-columns: 1fr; }
    .faq-sidebar-card { position: static; }
    .faq-nav { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .hero-chips { display: none; }
    .why-features { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; height: auto; }
    .category-card { height: 180px; }
    .team-grid { grid-template-columns: 1fr; }
    .mini-reviews { grid-template-columns: 1fr; }
    .numbers-grid { flex-direction: column; gap: 30px; }
    .number-divider { width: 60px; height: 1px; }
    .gallery-strip { flex-wrap: wrap; }
    .gallery-strip-item { min-width: calc(33.33% - 4px); }
    .newsletter-box { padding: 28px 20px; }
    .faq-still-questions { flex-direction: column; text-align: center; }
    .faq-category-block .faq-accordion { padding: 12px; }
    .final-cta-section { padding: 80px 0; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════
   TOUR PHOTO GALLERY — Professional Masonry Grid
══════════════════════════════════════════════════════ */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}
.tour-gallery-grid .gallery-tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--border);
    border: none;
    padding: 0;
    display: block;
    aspect-ratio: 4/3;
    width: 100%;
}
.gallery-tile:first-child { aspect-ratio: auto; }
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 58, 93, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.gallery-tile:hover .gallery-tile-overlay,
.gallery-tile:focus .gallery-tile-overlay { opacity: 1; }
.gallery-tile:focus { outline: 3px solid var(--sky); outline-offset: 2px; }

@media (max-width: 640px) {
    .tour-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tour-gallery-grid .gallery-tile:first-child { grid-column: span 2; grid-row: auto; }
}

/* ══════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════ */
.lb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lb-backdrop.lb-open { display: flex; }
.lb-img-wrap {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    display: block;
}
.lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    white-space: nowrap;
}
@media (max-width: 540px) {
    .lb-nav { width: 38px; height: 38px; font-size: 1rem; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
}