/* ============================================================
   Wild Thing Safaris — Static Site Stylesheet
   Theme: Adventure Tours (WordPress)
   Cleaned: ushort.info / urshort.com injections removed
   All external font/script CDN refs retained only for fonts
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Raleway:wght@400;600;700;800&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    background: #fff;
}

a {
    color: #e8a020;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #c47d0a;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

/* --- Layout Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- TOP BAR --- */
.top-bar {
    background: #2c2c2c;
    color: #ccc;
    font-size: 12px;
    padding: 8px 0;
}

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

.top-bar a {
    color: #ccc;
}

.top-bar a:hover {
    color: #e8a020;
}

.top-bar .phone {
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* --- HEADER --- */
.site-header {
    background: #fff;
    border-bottom: 3px solid #e8a020;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

/* --- NAVIGATION --- */
.site-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
}

.site-nav > ul > li {
    position: relative;
}

.site-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    color: #333;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s, background 0.2s;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li.current > a {
    color: #e8a020;
    background: #f9f4eb;
}

/* Dropdown */
.site-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 3px solid #e8a020;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 999;
}

.site-nav > ul > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav .dropdown li a {
    display: block;
    padding: 10px 18px;
    color: #555;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.site-nav .dropdown li a:hover {
    background: #f9f4eb;
    color: #e8a020;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

/* --- HERO / SLIDER (Homepage) --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-slide-overlay h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 12px;
}

.hero-slide-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-slide-overlay .btn {
    display: inline-block;
    padding: 12px 32px;
    background: #e8a020;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    border-radius: 2px;
    transition: background 0.2s;
}

.hero-slide-overlay .btn:hover {
    background: #c47d0a;
    color: #fff;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
}

.slider-dot.active {
    background: #e8a020;
}

/* --- SEARCH / FILTER WIDGET (Homepage & Sidebars) --- */
.search-safari-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #e8a020;
    padding: 24px;
    margin-bottom: 30px;
}

.search-safari-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-safari-widget .widget-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    margin-top: 16px;
}

.search-safari-widget select,
.search-safari-widget input[type="text"],
.search-safari-widget input[type="range"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 13px;
    color: #555;
    background: #fafafa;
    margin-bottom: 4px;
}

.search-safari-widget select:focus,
.search-safari-widget input:focus {
    outline: none;
    border-color: #e8a020;
}

.search-safari-widget .btn-search {
    display: block;
    width: 100%;
    padding: 11px;
    background: #e8a020;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s;
}

.search-safari-widget .btn-search:hover {
    background: #c47d0a;
}

.category-tree {
    font-size: 13px;
    color: #555;
    line-height: 2;
}

.category-tree .child {
    padding-left: 16px;
}

.category-tree a {
    color: #555;
}

.category-tree a:hover {
    color: #e8a020;
}

.category-tree .count {
    color: #aaa;
    font-size: 11px;
}

/* --- MAIN CONTENT AREA --- */
.site-main {
    flex: 1;
}

.content-area {
    padding: 40px 0;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.content-with-sidebar.sidebar-left {
    grid-template-columns: 300px 1fr;
}

/* --- PAGE TITLE BAR --- */
.page-title-bar {
    background: #f4f4f4;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

.page-title-bar h1 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 4px;
}

.breadcrumb {
    font-size: 12px;
    color: #aaa;
}

.breadcrumb a {
    color: #aaa;
}

.breadcrumb a:hover {
    color: #e8a020;
}

.breadcrumb span::before {
    content: ' › ';
    margin: 0 4px;
}

/* --- TOUR GRID (Category / Tag Archive) --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tour-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tour-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tour-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-body {
    padding: 16px;
}

.tour-card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tour-card-body h3 a {
    color: #333;
}

.tour-card-body h3 a:hover {
    color: #e8a020;
}

.tour-card-body p {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tour-card-footer {
    padding: 12px 16px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view {
    display: inline-block;
    padding: 7px 18px;
    background: #e8a020;
    color: #fff;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 1px;
    transition: background 0.2s;
}

.btn-view:hover {
    background: #c47d0a;
    color: #fff;
}

/* WooCommerce-style sort bar */
.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #888;
}

.archive-toolbar select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #555;
    background: #fafafa;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 36px;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
    background: #e8a020;
    border-color: #e8a020;
    color: #fff;
}

/* --- SINGLE TOUR PAGE --- */
.single-tour-hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.single-tour-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.single-tour-content {
    padding: 30px 0;
}

.tour-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    font-size: 13px;
    color: #777;
}

.tour-meta-bar .meta-item strong {
    color: #333;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.tour-itinerary {
    margin-top: 24px;
}

.itinerary-day {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e8e8e8;
}

.itinerary-day:last-child {
    border-bottom: none;
}

.itinerary-day h4 {
    color: #e8a020;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

/* Booking / enquiry sidebar box */
.booking-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #e8a020;
    padding: 24px;
    position: sticky;
    top: 90px;
}

.booking-box h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
}

.booking-box .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8a020;
    margin-bottom: 6px;
}

.booking-box .price-note {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
}

.booking-box .btn-enquire {
    display: block;
    width: 100%;
    padding: 12px;
    background: #e8a020;
    color: #fff;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: background 0.2s;
}

.booking-box .btn-enquire:hover {
    background: #c47d0a;
    color: #fff;
}

.booking-box .highlights {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.booking-box .highlights li {
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.booking-box .highlights li::before {
    content: '✓';
    color: #e8a020;
    font-weight: 700;
    flex-shrink: 0;
}

/* Related tours */
.related-tours {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f0f0f0;
}

.related-tours h3 {
    margin-bottom: 24px;
}

/* --- HOMEPAGE SECTIONS --- */
.home-section {
    padding: 60px 0;
}

.home-section.bg-light {
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color: #888;
    max-width: 560px;
    margin: 0 auto;
    font-size: 15px;
}

.section-title .title-rule {
    display: block;
    width: 60px;
    height: 3px;
    background: #e8a020;
    margin: 12px auto 0;
}

/* Homepage intro (homepage search block) */
.home-search-block {
    background: #fff;
    padding: 40px 0 50px;
    border-bottom: 1px solid #eee;
}

.home-search-block h2 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 24px;
}

/* Why choose us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Popular locations grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.location-item {
    text-align: center;
}

.location-item a {
    display: block;
    color: #333;
}

.location-item a:hover {
    color: #e8a020;
}

.location-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid transparent;
    transition: border-color 0.2s;
}

.location-item a:hover img {
    border-color: #e8a020;
}

.location-item span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Raleway', sans-serif;
}

/* Safari types list */
.safari-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.safari-type-card {
    padding: 20px;
    border-left: 4px solid #e8a020;
    background: #fafafa;
}

.safari-type-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.safari-type-card h3 a {
    color: #333;
}

.safari-type-card h3 a:hover {
    color: #e8a020;
}

.safari-type-card p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* --- SIDEBAR --- */
.sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 28px;
    overflow: hidden;
}

.sidebar-widget .widget-title {
    background: #333;
    color: #fff;
    padding: 12px 18px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.sidebar-widget .widget-body {
    padding: 18px;
}

.sidebar-tour-card {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-tour-card:last-child {
    border-bottom: none;
}

.sidebar-tour-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-tour-card h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.sidebar-tour-card h4 a {
    color: #333;
}

.sidebar-tour-card h4 a:hover {
    color: #e8a020;
}

/* --- STANDARD PAGE (About, Info, School trips etc.) --- */
.standard-page-content {
    max-width: 860px;
}

.standard-page-content h2 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.standard-page-content h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #e8a020;
}

.standard-page-content p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.standard-page-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 1rem;
}

.standard-page-content ul li {
    margin-bottom: 6px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555;
    margin-bottom: 5px;
    margin-top: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #555;
    font-family: 'Open Sans', sans-serif;
    background: #fafafa;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e8a020;
    background: #fff;
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    margin-top: 18px;
    padding: 12px 32px;
    background: #e8a020;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button[type="submit"]:hover {
    background: #c47d0a;
}

.contact-offices h3 {
    font-size: 1rem;
    color: #e8a020;
    margin-bottom: 8px;
    margin-top: 24px;
}

.contact-offices h3:first-child {
    margin-top: 0;
}

.contact-offices address {
    font-style: normal;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* --- GALLERY PAGE --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* --- NEWSLETTER BAR --- */
.newsletter-bar {
    background: #333;
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.newsletter-bar h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.newsletter-bar p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 14px;
    color: #333;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #e8a020;
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #c47d0a;
}

/* --- FOOTER --- */
.site-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8a020;
    display: inline-block;
}

.footer-col address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.9;
    color: #999;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #999;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #e8a020;
}

.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom a {
    color: #666;
}

.footer-bottom a:hover {
    color: #e8a020;
}

.payment-logos img {
    height: 30px;
    width: auto;
    opacity: 0.6;
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(3, 1fr); }
    .safari-types-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .content-with-sidebar.sidebar-left { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; }
    .site-nav > ul > li > a { border-bottom: 1px solid #f0f0f0; }
    .site-nav .dropdown { position: static; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; background: #f9f9f9; }
    .site-header { position: relative; }
    .hero-slider { height: 320px; }
    .hero-slide-overlay h2 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .safari-types-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { width: 100%; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    .tours-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
