/* ============================================
   Puppy Tours & Safaris - Airbnb-Inspired Theme
   ============================================ */

:root {
    --primary: #429629;
    --primary-dark: #367a21;
    --primary-light: #55ad3c;
    --secondary: #F98C15;
    --secondary-dark: #e07c0e;
    --accent: #F98C15;
    --dark: #222222;
    --dark-soft: #484848;
    --text: #222222;
    --text-secondary: #717171;
    --light: #f7f7f7;
    --gray: #717171;
    --gray-light: #EBEBEB;
    --gray-lighter: #F7F7F7;
    --white: #ffffff;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.2s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--secondary);
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

a {
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Navigation (Airbnb-style)
   ============================================ */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-links {
    display: flex;
    gap: 16px;
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.top-bar-links a:hover {
    color: var(--secondary);
}

.top-bar-social {
    display: flex;
    gap: 10px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.top-bar-social a:hover {
    color: var(--secondary);
}

.navbar-safari {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.navbar-safari.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-safari .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text) !important;
}

.navbar-safari .navbar-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.navbar-safari .brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.navbar-safari .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.navbar-safari .nav-link:hover {
    background: var(--gray-lighter);
    color: var(--text) !important;
}

.navbar-safari .nav-link.active {
    color: var(--text) !important;
    background: var(--gray-lighter);
    font-weight: 600;
}

.navbar-safari .btn-book {
    background: var(--secondary);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.navbar-safari .btn-book:hover {
    background: var(--secondary-dark);
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
}

.navbar-toggler {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34,34,34,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: 20px;
}

.navbar-contact a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-contact a:hover {
    color: var(--secondary);
}

.navbar-contact i {
    color: var(--secondary);
    font-size: 0.82rem;
}

/* ============================================
   Main Content Spacing
   ============================================ */
main {
    min-height: 60vh;
}

/* ============================================
   Section Utilities
   ============================================ */
.section-padding {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.section-title p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 1.625rem;
    margin-bottom: 0;
    font-weight: 600;
}

.section-header .view-all {
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--text);
    padding-bottom: 1px;
}

.section-header .view-all:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.bg-light-section {
    background: var(--gray-lighter);
}

/* ============================================
   Buttons (Airbnb-style)
   ============================================ */
.btn-primary-custom {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
}

.btn-green-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-green-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-outline-custom {
    border: 1px solid var(--text);
    color: var(--text);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    background: transparent;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--text);
    color: var(--white);
}

.btn-view-more {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-view-more:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

/* ============================================
   Hero Section (Slideshow)
   ============================================ */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content .hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 28px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   Page Hero (Inner Pages - lighter Airbnb feel)
   ============================================ */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 480px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-top: 14px;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Category Cards (Airbnb rounded cards)
   ============================================ */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-card .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.category-card .category-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.category-card .category-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.category-card .category-overlay .btn-view-more {
    width: fit-content;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--text);
    padding: 56px 0;
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 12px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.82rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ============================================
   Tour Cards (Airbnb listing card style)
   ============================================ */
.tour-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}

.tour-card:hover {
    box-shadow: var(--shadow-hover);
}

.tour-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
}

.tour-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .card-img-wrapper img {
    transform: scale(1.03);
}

.tour-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--text);
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.tour-card .card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--white);
    color: var(--text);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.tour-card .card-price-dual {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.3;
}

.tour-card .card-price-dual .usd {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
}

.tour-card .card-price-dual .kes {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--secondary-dark);
}

.tour-card .card-body {
    padding: 14px 4px;
}

.tour-card .card-body h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.tour-card .card-body > p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.tour-card .card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.tour-card .card-meta i {
    color: var(--secondary);
    margin-right: 3px;
}

.tour-card .card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tour-card .card-details span {
    background: var(--gray-lighter);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tour-card .card-details i {
    color: var(--secondary);
    font-size: 0.68rem;
}

.btn-card-book {
    display: block;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
}

.btn-card-book:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

/* ============================================
   Vacation Type Grid (Airbnb circular/rounded)
   ============================================ */
.vacation-type-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    transition: var(--transition);
    display: block;
}

.vacation-type-card:hover {
    box-shadow: var(--shadow-hover);
}

.vacation-type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vacation-type-card:hover img {
    transform: scale(1.04);
}

.vacation-type-card .vt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.vacation-type-card .vt-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.vacation-type-card .vt-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 400;
}

/* ============================================
   Feature Boxes (Airbnb clean card style)
   ============================================ */
.feature-box {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-light);
    height: 100%;
}

.feature-box:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.feature-box:hover .feature-icon {
    background: var(--secondary);
}

.feature-box:hover .feature-icon i {
    color: var(--white);
}

.feature-box h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    overflow: hidden;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.about-img-wrapper .experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    padding: 18px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper .experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-img-wrapper .experience-badge .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.about-content .lead-text {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.925rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.about-values .value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.about-values .value-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================
   Destination Cards
   ============================================ */
.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    box-shadow: var(--shadow-hover);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.04);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.dest-tag {
    background: var(--secondary);
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   Testimonial Cards (Airbnb review style)
   ============================================ */
.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.quote-icon {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.4;
}

.stars {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.testimonial-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h6 {
    font-size: 0.875rem;
    margin-bottom: 1px;
    font-weight: 600;
}

.client-info small {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

/* ============================================
   CTA Section (Airbnb minimal overlay)
   ============================================ */
.cta-section {
    background: url('https://images.unsplash.com/photo-1534188753412-3e26d0d618d6?w=1920&h=600&fit=crop') center/cover fixed;
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.7);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-info-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.contact-info-card .contact-icon,
.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--gray-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.contact-info-card .contact-icon i,
.icon-circle i {
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-info-card h5,
.contact-info-card h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-card p, .contact-info-card a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--text);
    box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

/* ============================================
   Gallery (Airbnb photo grid - rounded, clean)
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, brightness 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    brightness: 0.9;
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 1.5rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Tour Filters (Airbnb pill tabs)
   ============================================ */
.tour-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tour-filters .filter-btn {
    background: transparent;
    border: 1px solid var(--gray-light);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.tour-filters .filter-btn:hover {
    border-color: var(--text);
}

.tour-filters .filter-btn.active {
    background: var(--text);
    border-color: var(--text);
    color: var(--white);
}

/* ============================================
   Tour Detail Cards (Tours Page)
   ============================================ */
.tour-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.tour-detail-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.tour-detail-card .tour-img {
    overflow: hidden;
}

.tour-detail-card .tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    transition: transform 0.4s ease;
}

.tour-detail-card:hover .tour-img img {
    transform: scale(1.03);
}

.tour-detail-card .tour-content {
    padding: 24px;
}

.tour-detail-card .tour-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.tour-detail-card .tour-content > p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.tour-features span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-features i {
    color: var(--secondary);
    font-size: 0.78rem;
}

.tour-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}

.tour-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.tour-price small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================
   Destination Detail Cards
   ============================================ */
.dest-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-light);
    margin-bottom: 24px;
}

.dest-detail-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.dest-detail-card .dest-img {
    height: 200px;
    overflow: hidden;
}

.dest-detail-card .dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dest-detail-card:hover .dest-img img {
    transform: scale(1.03);
}

.dest-detail-card .dest-content {
    padding: 24px;
}

.dest-detail-card .dest-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.dest-detail-card .dest-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.dest-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.dest-highlights .highlight-tag {
    background: var(--gray-lighter);
    color: var(--text);
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 500;
}

/* ============================================
   Footer (Airbnb-style light footer)
   ============================================ */
.footer-safari {
    background: var(--gray-lighter);
    color: var(--text-secondary);
    padding-top: 56px;
    border-top: 1px solid var(--gray-light);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-heading {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    display: none;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}

.footer-contact li a:hover {
    color: var(--text);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid var(--gray-light);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover {
    color: var(--text);
    text-decoration: underline;
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1da851;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--text);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 997;
    font-size: 0.85rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
}

/* ============================================
   Loading Overlay
   ============================================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-overlay .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-overlay .loader-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.spinner-safari {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Lightbox
   ============================================ */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.gallery-lightbox .close-btn {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 2.2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-lightbox .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.hero-buttons .btn-outline-custom:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.hero-slide-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-slide-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slide-indicators .indicator.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   Hotel Showcase Cards
   ============================================ */
.hotel-showcase-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-showcase-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.hotel-showcase-card .hotel-img {
    overflow: hidden;
    aspect-ratio: 3/2;
    position: relative;
}

.hotel-showcase-card .hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-showcase-card:hover .hotel-img img {
    transform: scale(1.03);
}

.hotel-showcase-card .hotel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 2;
}

.hotel-showcase-card .hotel-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-showcase-card .hotel-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hotel-showcase-card .hotel-location {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hotel-showcase-card .hotel-location i {
    color: var(--secondary);
    margin-right: 4px;
}

.hotel-showcase-card .hotel-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-showcase-card .hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.hotel-showcase-card .hotel-amenities span {
    background: var(--gray-lighter);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hotel-showcase-card .hotel-amenities i {
    color: var(--secondary);
    font-size: 0.68rem;
}

.hotel-showcase-card .hotel-price-dual {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-light);
}

.hotel-price-dual .hp {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.hotel-price-dual .currency {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.hotel-price-dual .currency.kes {
    color: var(--secondary-dark);
}

.hotel-price-dual .amount {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.hotel-price-dual .amount.kes {
    color: var(--secondary-dark);
    font-size: 0.92rem;
}

.hotel-price-dual small {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.hotel-showcase-card .hotel-stars {
    color: var(--secondary);
    font-size: 0.72rem;
    display: flex;
    gap: 2px;
}

/* ============================================
   Pricing Tables
   ============================================ */
.pricing-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.pricing-table thead {
    background: var(--dark);
    color: var(--white);
}

.pricing-table thead th {
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.pricing-table thead th.price-col {
    text-align: center;
    min-width: 160px;
}

.pricing-table thead th.action-col {
    text-align: center;
    min-width: 140px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--gray-lighter);
}

.pricing-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    font-size: 0.9rem;
}

.pricing-table tbody td.price-col {
    text-align: center;
}

.pricing-table tbody td.action-col {
    text-align: center;
}

.pricing-table .dest-name strong {
    font-weight: 600;
    color: var(--text);
}

.pricing-table .price-usd {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.pricing-table .price-kes {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary-dark);
}

.pricing-table small {
    color: var(--text-secondary);
    font-size: 0.78rem;
    margin-left: 3px;
}

.btn-request-booking {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
}

.btn-request-booking:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.pricing-category {
    margin-bottom: 40px;
}

.pricing-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.pricing-category-title i {
    color: var(--secondary);
}

.pricing-note {
    background: var(--gray-lighter);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 32px;
    border-left: 4px solid var(--secondary);
}

.pricing-note p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

.pricing-note i {
    color: var(--secondary);
}

/* ============================================
   Tour Dual Pricing
   ============================================ */
.tour-price-dual {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-price-dual .price-tag {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tour-price-dual .price-tag.kes {
    color: var(--secondary-dark);
    font-size: 0.88rem;
}

.tour-price-dual .price-tag small {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 3px;
}

/* ============================================
   Booking Form Styles
   ============================================ */
.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--secondary);
}

.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.booking-benefits li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-safari .navbar-collapse {
        background: var(--white);
        padding: 16px;
        border-radius: var(--radius);
        margin-top: 12px;
        border: 1px solid var(--gray-light);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .navbar-contact {
        display: none !important;
    }

    .top-bar {
        display: none;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .hero-subtitle {
        font-size: 0.78rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-padding {
        padding: 48px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .category-card {
        height: 240px;
    }

    .vacation-type-card {
        height: 170px;
    }

    .pricing-table thead th.action-col,
    .pricing-table tbody td.action-col {
        min-width: 110px;
    }

    .pricing-table thead th.price-col,
    .pricing-table tbody td.price-col {
        min-width: 120px;
    }

    .tour-price-dual .price-tag {
        font-size: 0.88rem;
    }

    .tour-price-dual .price-tag.kes {
        font-size: 0.78rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .hero-section {
        height: 55vh;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-up, .fade-left, .fade-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar-safari, .top-bar, .back-to-top, .whatsapp-btn,
    .loading-overlay, .gallery-lightbox, .hero-scroll {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .footer-safari {
        background: #fff;
        color: #333;
    }
}
