/* Papaya Tours and Safaris - Modern Website Styles */

/* CSS Variables */
:root {
    --primary-color: #D4A574;
    --primary-dark: #B8956A;
    --secondary-color: #2C5530;
    --secondary-dark: #1E3A21;
    --accent-color: #E07B39;
    --accent-light: #F5A25D;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #FAFAFA;
    --bg-cream: #F5F1EB;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 250px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-medium);
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

.btn-white {
    background: white;
    color: var(--secondary-color);
}

.btn-white:hover {
    background: var(--bg-cream);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(30, 58, 33, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/bb.html') center/cover;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-light {
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(224, 123, 57, 0.2));
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

.destination-badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.destination-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Safari Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.package-content {
    padding: 2rem;
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.package-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    background: var(--bg-cream);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-medium);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-cream);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.package-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Itinerary Timeline */
.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-day {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--bg-cream);
}

.day-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.day-content h3 {
    margin-bottom: 0.5rem;
}

.day-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.day-content li {
    list-style: disc;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

/* Park Page Styles */
.park-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 4rem;
}

.park-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.park-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.park-hero-content {
    position: relative;
    color: white;
}

.park-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.park-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.park-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.park-meta-item span {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.park-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.park-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: -4rem;
    position: relative;
    z-index: 1;
}

.park-main {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.park-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-cream);
}

.wildlife-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wildlife-tag {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.best-time-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-cream);
}

.time-item:last-child {
    border-bottom: none;
}

.time-month {
    font-weight: 600;
}

.time-rating {
    display: flex;
    gap: 0.25rem;
}

.time-rating span {
    color: var(--primary-color);
}

/* Kilimanjaro Routes */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.route-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.route-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 2rem;
}

.route-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.route-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.route-stat {
    font-size: 0.9rem;
}

.route-stat span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.route-body {
    padding: 2rem;
}

.route-features {
    margin: 1.5rem 0;
}

.route-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.route-feature span {
    color: var(--secondary-color);
}

/* Zanzibar Styles */
.zanzibar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.zanzibar-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.activities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.activity-text h4 {
    margin-bottom: 0.25rem;
}

.activity-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-icon {
    display: inline-flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 148, 70, 0.45);
    background: linear-gradient(135deg, #f4dfba, #c89446);
    color: #17251b;
    box-shadow: 0 10px 24px rgba(28, 36, 24, 0.12);
}

.review-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/bb.html') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-cream);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    transition: var(--transition);
}

.footer-social svg {
    width: 19px;
    height: 19px;
    display: block;
}

.footer-social svg * {
    fill: currentColor;
}

.footer-social a[aria-label="Instagram"] svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #111a13;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item span {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    
    .features-grid,
    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .park-info-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid var(--bg-cream);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid,
    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .zanzibar-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .itinerary-day {
        flex-direction: column;
        gap: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: white; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Home page redesign */
.home-page {
    --home-ink: #162018;
    --home-muted: #5f685f;
    --home-line: #e6ded2;
    --home-surface: #fbfaf7;
    --home-soft: #f4efe7;
    --home-green: #1f4d32;
    --home-gold: #c89446;
    --home-gold-light: #e7c586;
    overflow-x: hidden;
}

.home-page .navbar {
    top: 16px;
    right: 0;
    left: 0;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(10, 20, 14, 0.16);
}

.home-page .nav-container {
    width: 100%;
    gap: 1.25rem;
    padding: 0.55rem 0.75rem;
}

.home-page .site-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.home-page .logo-text {
    font-size: 1rem;
    line-height: 1.15;
}

.home-page .logo {
    min-width: 0;
}

.home-page .nav-links {
    gap: 0.35rem;
}

.home-page .nav-links a {
    padding: 0.62rem 0.78rem;
    border-radius: 6px;
    color: #253328;
    font-size: 0.82rem;
    font-weight: 600;
}

.home-page .nav-links a::after {
    display: none;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
    background: rgba(200, 148, 70, 0.12);
    color: #12351f;
}

.home-page .nav-cta {
    background: #14291b;
    color: #fff !important;
    padding: 0.72rem 1.05rem !important;
    border: 1px solid rgba(200, 148, 70, 0.42);
    border-radius: 6px;
}

.home-page .nav-cta::after {
    display: none;
}

.home-page .nav-cta:hover {
    color: #fff;
    background: #0d1d13;
}

.home-page .mobile-toggle {
    background: transparent;
    border: 0;
    flex-shrink: 0;
}

.brand-page .navbar {
    top: 16px;
    right: 0;
    left: 0;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(10, 20, 14, 0.16);
}

.brand-page .nav-container {
    width: 100%;
    gap: 1.25rem;
    padding: 0.55rem 0.75rem;
}

.brand-page .site-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-page .logo {
    min-width: 0;
}

.brand-page .logo-text {
    font-size: 1rem;
    line-height: 1.15;
}

.brand-page .nav-links {
    gap: 0.35rem;
}

.brand-page .nav-links a {
    padding: 0.62rem 0.78rem;
    border-radius: 6px;
    color: #253328;
    font-size: 0.82rem;
    font-weight: 600;
}

.brand-page .nav-links a::after {
    display: none;
}

.brand-page .nav-links a:hover,
.brand-page .nav-links a.active {
    background: rgba(200, 148, 70, 0.12);
    color: #12351f;
}

.brand-page .nav-cta {
    background: #14291b;
    color: #fff !important;
    padding: 0.72rem 1.05rem !important;
    border: 1px solid rgba(200, 148, 70, 0.42);
    border-radius: 6px;
}

.brand-page .nav-cta:hover {
    color: #fff;
    background: #0d1d13;
}

.brand-page .mobile-toggle {
    background: transparent;
    border: 0;
    flex-shrink: 0;
}

.home-page .hero {
    min-height: 92svh;
    align-items: center;
    padding: 130px 0 58px;
    background: #152118;
}

.home-page .hero .container {
    width: min(1280px, 100%);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-page .hero-bg {
    opacity: 1;
    background-position: center 48%;
    transform: scale(1.01);
}

.home-page .hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 14, 10, 0.88) 0%, rgba(8, 14, 10, 0.66) 44%, rgba(8, 14, 10, 0.22) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08));
}

.home-page .hero-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 0 0;
    padding: 0;
    text-align: left;
    min-width: 0;
}

.home-page .hero-badge {
    max-width: 100%;
    padding: 0 0 0.85rem;
    border: 0;
    border-bottom: 1px solid rgba(231, 197, 134, 0.58);
    border-radius: 0;
    background: transparent;
    color: var(--home-gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
}

.home-page .hero h1 {
    max-width: 780px;
    font-size: clamp(3.2rem, 6vw, 5.65rem);
    margin: 1.1rem 0 1.15rem;
    color: #fffdf6;
    line-height: 1.02;
    text-shadow: none;
}

.home-page .hero-description {
    width: 100%;
    max-width: 690px;
    margin-right: 0;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.16rem;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.home-page .hero-buttons {
    justify-content: flex-start;
    margin-top: 1.65rem;
}

.home-page .btn {
    min-height: 48px;
    border-radius: 6px;
    padding: 0.9rem 1.3rem;
}

.home-page .btn-primary {
    background: linear-gradient(135deg, var(--home-gold-light), var(--home-gold));
    color: #151515;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.home-page .btn-primary:hover {
    background: #e0ab61;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.home-page .btn-white {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-page .btn-white:hover {
    background: rgba(255, 255, 255, 0.18);
}

.home-page section {
    padding: 5rem 0;
}

.home-page .section-light {
    background: var(--home-soft);
}

.home-page .hero + .section-light {
    padding-top: 2.5rem;
}

.home-page .section-header {
    max-width: 760px;
    margin: 0 0 2.5rem;
    text-align: left;
}

.home-page .section-header h2 {
    margin-bottom: 0.75rem;
    font-size: 2.35rem;
}

.home-page .section-header p {
    max-width: 680px;
    color: var(--home-muted);
}

.home-page .section-badge {
    border: 1px solid var(--home-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #a86324;
    letter-spacing: 0;
}

.home-page .features-grid,
.home-page .packages-grid,
.home-page .testimonials-grid {
    gap: 1rem;
}

.home-page .feature-card,
.home-page .package-card,
.home-page .testimonial-card {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    box-shadow: none;
}

.home-page .package-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
    box-shadow: 0 18px 40px rgba(28, 36, 24, 0.08);
}

.home-page .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--home-gold), transparent);
    opacity: 0.82;
    z-index: 1;
}

.home-page .feature-card {
    padding: 1.5rem;
    text-align: left;
}

.home-page .feature-card:hover,
.home-page .package-card:hover,
.home-page .testimonial-card:hover {
    transform: none;
    box-shadow: 0 10px 28px rgba(22, 32, 24, 0.08);
}

.home-page .package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 148, 70, 0.5);
    box-shadow: 0 26px 54px rgba(28, 36, 24, 0.14);
}

.home-page .feature-kicker {
    display: block;
    margin-bottom: 0.65rem;
    color: #a86324;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-page .text-link {
    display: inline-flex;
    margin-top: 0.5rem;
    color: var(--home-green);
    font-weight: 700;
}

.home-page .destinations-section {
    position: relative;
    overflow: hidden;
    padding: 6.25rem 0;
    background: #f8f4ec;
}

.home-page .destinations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 37, 27, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 37, 27, 0.035) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    pointer-events: none;
}

.home-page .destinations-section .container {
    position: relative;
    z-index: 1;
}

.home-page .destinations-section .section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
    gap: 2rem 4rem;
    align-items: center;
    max-width: none;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 148, 73, 0.28);
}

.home-page .destinations-section .section-badge {
    width: max-content;
    border: 0;
    border-bottom: 1px solid rgba(155, 104, 47, 0.55);
    border-radius: 0;
    padding: 0 0 0.6rem;
    background: transparent;
    color: #8d5f2e;
    letter-spacing: 0.02em;
}

.home-page .destinations-section .section-header h2 {
    grid-column: 1;
    max-width: 720px;
    margin: 0;
    color: #102417;
    font-size: clamp(2.45rem, 4.4vw, 4.8rem);
    line-height: 1.04;
}

.home-page .destinations-section .section-header p {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 440px;
    margin: 0;
    color: #5d685e;
    font-size: 1.06rem;
    line-height: 1.85;
}

.home-page .destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.home-page .destination-card {
    isolation: isolate;
    border: 1px solid rgba(22, 37, 27, 0.14);
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    background: #111a13;
    box-shadow: 0 20px 46px rgba(22, 31, 22, 0.1);
}

.home-page .destination-card::before {
    content: '';
    position: absolute;
    inset: 0.8rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    pointer-events: none;
    opacity: 0.72;
    transition: var(--transition);
}

.home-page .destination-card img {
    filter: saturate(0.86) contrast(1.05);
}

.home-page .destination-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 1.4rem;
    transform: none;
    opacity: 1;
    background:
        linear-gradient(to top, rgba(9, 17, 12, 0.9) 0%, rgba(9, 17, 12, 0.6) 44%, rgba(9, 17, 12, 0.08) 100%),
        linear-gradient(135deg, rgba(238, 198, 132, 0.16), transparent 46%);
}

.home-page .destination-overlay h3 {
    max-width: 92%;
    margin-bottom: 0.55rem;
    color: #fffdf8;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    line-height: 1.08;
}

.home-page .destination-overlay p {
    max-width: 95%;
    margin-bottom: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.58;
}

.home-page .destination-card:hover img {
    transform: scale(1.045);
}

.home-page .destination-card:hover::before {
    opacity: 0.95;
}

.home-page .destination-badge,
.home-page .package-badge,
.home-page .package-duration,
.home-page .highlight-tag {
    border-radius: 6px;
}

.home-page .destination-badge {
    width: max-content;
    max-width: 100%;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(238, 198, 132, 0.46);
    background: rgba(248, 244, 236, 0.9);
    color: #17301f;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.home-page .destination-link {
    width: max-content;
    border-bottom: 1px solid rgba(238, 198, 132, 0.62);
    color: var(--home-gold-light);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-page .package-image {
    height: 238px;
}

.home-page .package-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 12, 0.44), transparent 58%);
    pointer-events: none;
}

.home-page .package-card:hover .package-image img {
    transform: scale(1.04);
}

.home-page .package-badge,
.home-page .package-duration {
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
}

.home-page .package-badge {
    background: rgba(231, 197, 134, 0.92);
    color: #1f241b;
    text-transform: uppercase;
}

.home-page .package-duration {
    background: rgba(17, 31, 21, 0.82);
    color: #fff7e6;
    font-weight: 700;
}

.home-page .package-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.45rem;
}

.home-page .package-kicker {
    display: block;
    margin-bottom: 0.52rem;
    color: #a86324;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-page .package-title {
    margin-bottom: 0.65rem;
    color: #17251b;
    font-size: 1.25rem;
}

.home-page .package-description {
    color: #5b655d;
    font-size: 0.92rem;
    line-height: 1.65;
}

.home-page .package-highlights {
    gap: 0.45rem;
    margin-top: 0.15rem;
    margin-bottom: 1.35rem;
}

.home-page .highlight-tag {
    border: 1px solid rgba(200, 148, 70, 0.22);
    background: rgba(255, 255, 255, 0.68);
    color: #455143;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-page .package-footer {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(200, 148, 70, 0.22);
    gap: 1rem;
    margin-top: auto;
}

.home-page .package-footer .btn {
    width: 100%;
    min-height: 46px;
    border-color: #173b27;
    background: #173b27;
    color: #fff;
    font-size: 0.9rem;
}

.home-page .package-footer .btn:hover {
    border-color: #0f281a;
    background: #0f281a;
    color: #fff;
}

.home-page .zanzibar-grid {
    gap: 2rem;
}

.home-page .zanzibar-image {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    box-shadow: none;
}

.home-page .zanzibar-image img {
    height: 100% !important;
    object-fit: cover;
}

.home-page .activities-list {
    gap: 1rem;
}

.home-page .activity-item {
    min-height: 96px;
    padding: 1rem;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    background: var(--bg-white);
}

.home-page .activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f0dfc7;
}

.home-page .testimonial-card {
    padding: 1.5rem;
}

.home-page .cta-section {
    background: #173b27;
}

.home-page .cta-section::before {
    background: none;
}

.home-page .cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.home-page .cta-section .hero-buttons {
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 2rem auto 0;
}

.home-page .footer .logo img,
.brand-page .footer .logo img {
    width: 72px;
    height: 72px !important;
    border-radius: 50%;
    object-fit: cover;
}

.home-page #whatsappBtn,
.brand-page #whatsappBtn {
    position: fixed;
    right: 20px !important;
    left: auto !important;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page #whatsappBtn:hover,
.brand-page #whatsappBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.home-page #whatsappBtn .whatsapp-float-icon,
.brand-page #whatsappBtn .whatsapp-float-icon {
    width: 22px;
    height: 22px;
    display: block;
    flex: 0 0 22px;
    fill: currentColor;
}

iframe[src*="tawk.to"],
iframe[title*="chat"]:not([src*="whatsapp"]) {
    display: none !important;
    visibility: hidden !important;
}

/* Safari Packages Page */
.packages-page {
    background: #f6f1e8;
}

.packages-hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 86px;
    color: #fff;
}

.packages-hero-media,
.packages-hero-overlay {
    position: absolute;
    inset: 0;
}

.packages-hero-media {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.packages-hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 35, 24, 0.9) 0%, rgba(9, 35, 24, 0.68) 42%, rgba(9, 35, 24, 0.18) 100%),
        linear-gradient(180deg, rgba(9, 35, 24, 0.18), rgba(9, 35, 24, 0.62));
}

.packages-hero .container {
    position: relative;
    z-index: 1;
}

.packages-hero-content {
    max-width: 780px;
}

.packages-hero h1 {
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 6.7rem);
    line-height: 0.96;
    margin: 1.15rem 0;
    letter-spacing: 0;
}

.packages-hero p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.8;
}

.packages-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2.1rem;
}

.package-intro {
    padding: 5.5rem 0 4.5rem;
    background: #f6f1e8;
}

.package-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: 4rem;
    align-items: end;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(19, 52, 37, 0.16);
}

.package-intro-grid h2 {
    max-width: 720px;
    color: #143828;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1;
}

.package-intro-grid p {
    color: #5d665d;
    font-size: 1.03rem;
    line-height: 1.85;
}

.package-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.package-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1.15rem;
    border: 1px solid rgba(19, 52, 37, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #143828;
    font-size: 0.86rem;
    font-weight: 700;
}

.signature-packages {
    padding: 6rem 0;
}

.luxury-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
}

.luxury-package-card {
    overflow: hidden;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 22px 60px rgba(19, 52, 37, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.luxury-package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 166, 94, 0.58);
    box-shadow: 0 28px 74px rgba(19, 52, 37, 0.14);
}

.featured-package {
    background: #123525;
}

.featured-package .luxury-package-content h3,
.featured-package .package-kicker,
.featured-package .package-link {
    color: #f8ead1;
}

.featured-package .luxury-package-content p,
.featured-package .luxury-package-tags span {
    color: rgba(255, 255, 255, 0.78);
}

.featured-package .luxury-package-tags span {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.luxury-package-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.18 / 0.78;
}

.luxury-package-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 52, 37, 0.02), rgba(19, 52, 37, 0.32));
}

.luxury-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.luxury-package-image span {
    position: absolute;
    z-index: 1;
    top: 1rem;
    right: 1rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.92);
    color: #143828;
    font-size: 0.78rem;
    font-weight: 800;
}

.luxury-package-content {
    padding: 1.55rem;
}

.package-kicker {
    margin-bottom: 0.65rem;
    color: #a66f3e;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.luxury-package-content h3 {
    margin-bottom: 0.8rem;
    color: #143828;
    font-size: 1.45rem;
    line-height: 1.16;
}

.luxury-package-content p {
    color: #5d665d;
    line-height: 1.72;
    font-size: 0.96rem;
}

.luxury-package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.2rem 0 1.35rem;
}

.luxury-package-tags span {
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 999px;
    background: rgba(246, 241, 232, 0.75);
    color: #4f5b50;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-link {
    display: inline-flex;
    color: #143828;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.package-planning {
    padding: 6rem 0;
    background: #f6f1e8;
}

.package-planning-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 3rem;
    align-items: center;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.95), rgba(238, 225, 203, 0.8)),
        #fffaf1;
    box-shadow: 0 28px 80px rgba(19, 52, 37, 0.08);
}

.package-planning-card h2 {
    max-width: 760px;
    color: #143828;
    line-height: 1.05;
}

.package-planning-card p {
    max-width: 760px;
    color: #5d665d;
    line-height: 1.78;
}

.package-planning-list {
    display: grid;
    gap: 0.75rem;
}

.package-planning-list span {
    display: block;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(19, 52, 37, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.56);
    color: #143828;
    font-weight: 700;
}

/* Kilimanjaro and Zanzibar Experience Pages */
.experience-page {
    overflow-x: hidden;
    background: #f6f1e8;
}

.experience-hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 86px;
    color: #fff;
}

.experience-hero-media,
.experience-hero-overlay {
    position: absolute;
    inset: 0;
}

.experience-hero-media {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.experience-hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 35, 24, 0.9) 0%, rgba(9, 35, 24, 0.66) 45%, rgba(9, 35, 24, 0.14) 100%),
        linear-gradient(180deg, rgba(9, 35, 24, 0.1), rgba(9, 35, 24, 0.58));
}

.zanzibar-overlay {
    background:
        linear-gradient(90deg, rgba(8, 38, 36, 0.88) 0%, rgba(11, 63, 58, 0.58) 45%, rgba(11, 63, 58, 0.1) 100%),
        linear-gradient(180deg, rgba(8, 38, 36, 0.08), rgba(8, 38, 36, 0.5));
}

.experience-hero .container {
    position: relative;
    z-index: 1;
}

.experience-hero-content {
    max-width: 830px;
}

.experience-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(3.1rem, 6vw, 6.4rem);
    line-height: 0.98;
    margin: 1.15rem 0;
    letter-spacing: 0;
}

.experience-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.82;
}

.experience-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 900px;
    margin-top: 1.7rem;
}

.experience-meta-grid span {
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
}

.experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2rem;
}

.experience-intro,
.experience-routes,
.experience-highlights,
.experience-timeline,
.experience-planning,
.zanzibar-story {
    padding: 6rem 0;
}

.experience-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
    gap: 4rem;
    align-items: end;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(19, 52, 37, 0.16);
}

.experience-intro-grid h2 {
    max-width: 760px;
    color: #143828;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1;
}

.experience-intro-grid p,
.story-grid p {
    color: #5d665d;
    font-size: 1.03rem;
    line-height: 1.84;
}

.experience-feature-grid,
.experience-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
}

.experience-feature-grid article,
.experience-card {
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 22px 60px rgba(19, 52, 37, 0.08);
}

.experience-feature-grid article {
    padding: 1.6rem;
}

.experience-feature-grid h3,
.experience-card h3 {
    color: #143828;
}

.experience-feature-grid p,
.experience-card p {
    color: #5d665d;
    line-height: 1.72;
}

.experience-card {
    padding: 1.55rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 166, 94, 0.58);
    box-shadow: 0 28px 74px rgba(19, 52, 37, 0.14);
}

.featured-experience-card {
    background: #123525;
}

.featured-experience-card h3,
.featured-experience-card .package-link {
    color: #f8ead1;
}

.featured-experience-card p,
.featured-experience-card .experience-card-top span,
.featured-experience-card .experience-tags span {
    color: rgba(255, 255, 255, 0.78);
}

.featured-experience-card .experience-card-top span,
.featured-experience-card .experience-tags span {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.experience-card-top,
.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-card-top {
    margin-bottom: 1.05rem;
}

.experience-card-top span,
.experience-tags span {
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 999px;
    background: rgba(246, 241, 232, 0.75);
    color: #4f5b50;
    font-size: 0.75rem;
    font-weight: 800;
}

.experience-tags {
    margin: 1.15rem 0 1.35rem;
}

.compact-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.compact-timeline div {
    padding: 1.4rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
}

.compact-timeline span {
    display: block;
    margin-bottom: 0.7rem;
    color: #a66f3e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compact-timeline p {
    margin: 0;
    color: #5d665d;
    line-height: 1.7;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.story-image {
    overflow: hidden;
    aspect-ratio: 0.92 / 1;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(19, 52, 37, 0.14);
}

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

/* Booking Page */
.booking-page {
    overflow-x: hidden;
    background: #f6f1e8;
}

.booking-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 72px;
    color: #fff;
}

.booking-hero-media,
.booking-hero-overlay {
    position: absolute;
    inset: 0;
}

.booking-hero-media {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.booking-hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 35, 24, 0.92) 0%, rgba(9, 35, 24, 0.66) 48%, rgba(9, 35, 24, 0.16) 100%),
        linear-gradient(180deg, rgba(9, 35, 24, 0.08), rgba(9, 35, 24, 0.56));
}

.booking-hero .container {
    position: relative;
    z-index: 1;
}

.booking-hero-content {
    max-width: 820px;
}

.booking-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(3.1rem, 6vw, 6.2rem);
    line-height: 0.98;
    margin: 1.15rem 0;
    letter-spacing: 0;
}

.booking-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.82;
}

.booking-section {
    padding: 6rem 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.booking-card,
.booking-side-card {
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 24px 70px rgba(19, 52, 37, 0.08);
}

.booking-card {
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.booking-card-header {
    max-width: 820px;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(19, 52, 37, 0.13);
}

.booking-card-header h2 {
    color: #143828;
    line-height: 1.05;
}

.booking-card-header p {
    color: #5d665d;
    line-height: 1.75;
}

.booking-form {
    max-width: none;
    margin: 0;
}

.form-section-title {
    margin: 1.8rem 0 1rem;
    color: #a66f3e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-form .form-section-title:first-child {
    margin-top: 0;
}

.booking-form .form-group label {
    color: #143828;
    font-size: 0.9rem;
    font-weight: 800;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    border: 1px solid rgba(19, 52, 37, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    color: #1d2c23;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    border-color: rgba(213, 166, 94, 0.95);
    box-shadow: 0 0 0 4px rgba(213, 166, 94, 0.14);
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.choice-grid label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(19, 52, 37, 0.13);
    border-radius: 8px;
    background: rgba(246, 241, 232, 0.62);
    cursor: pointer;
}

.choice-grid input {
    width: 16px;
    height: 16px;
    accent-color: #143828;
}

.booking-submit {
    width: 100%;
    min-height: 58px;
    margin-top: 0.4rem;
}

.form-note {
    margin: 1rem 0 0;
    color: #6a746b;
    font-size: 0.9rem;
    text-align: center;
}

.booking-sidebar {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 1rem;
}

.booking-side-card {
    padding: 1.45rem;
}

.booking-side-card h3 {
    color: #143828;
    line-height: 1.16;
}

.booking-side-card-dark {
    background: #123525;
}

.booking-side-card-dark h3 {
    color: #f8ead1;
}

.booking-side-card-dark .section-badge {
    color: #f0c77d;
}

.booking-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}

.booking-steps div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    align-items: start;
}

.booking-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #f8ead1;
    font-weight: 800;
}

.booking-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.booking-contact-list {
    display: grid;
    gap: 1rem;
}

.booking-contact-list p {
    margin: 0;
    color: #5d665d;
    line-height: 1.72;
}

.booking-contact-list strong {
    color: #143828;
}

/* Package Detail Pages */
.package-detail-page {
    overflow-x: hidden;
    background: #f6f1e8;
}

.package-detail-hero {
    position: relative;
    min-height: 82svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 80px;
    color: #fff;
}

.package-detail-media,
.package-detail-overlay {
    position: absolute;
    inset: 0;
}

.package-detail-media {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.package-detail-overlay {
    background:
        linear-gradient(90deg, rgba(9, 35, 24, 0.92) 0%, rgba(9, 35, 24, 0.68) 48%, rgba(9, 35, 24, 0.14) 100%),
        linear-gradient(180deg, rgba(9, 35, 24, 0.1), rgba(9, 35, 24, 0.6));
}

.package-detail-hero .container {
    position: relative;
    z-index: 1;
}

.package-detail-hero-content {
    max-width: 850px;
}

.package-detail-hero h1 {
    max-width: 960px;
    color: #fff;
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: 0.98;
    margin: 1.15rem 0;
    letter-spacing: 0;
}

.package-detail-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.82;
}

.package-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2rem;
}

.package-detail-overview {
    padding: 0 0 4rem;
    background: #f6f1e8;
}

.package-detail-overview .container {
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

.package-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.package-detail-grid div {
    min-height: 96px;
    display: flex;
    align-items: center;
    padding: 1.1rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 20px 55px rgba(19, 52, 37, 0.08);
}

.package-detail-grid span {
    color: #143828;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.35;
}

.package-detail-intro,
.package-days,
.package-detail-planning {
    padding: 6rem 0;
}

.package-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 3rem;
    align-items: start;
}

.package-detail-layout h2 {
    max-width: 780px;
    color: #143828;
    line-height: 1.05;
}

.package-detail-layout p {
    max-width: 820px;
    color: #5d665d;
    font-size: 1.03rem;
    line-height: 1.82;
}

.package-detail-side {
    position: sticky;
    top: 118px;
    padding: 1.4rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 20px 55px rgba(19, 52, 37, 0.08);
}

.package-detail-side h3 {
    color: #143828;
}

.package-day-timeline {
    display: grid;
    gap: 1.15rem;
    max-width: 1040px;
    margin: 0 auto;
}

.package-day-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.package-day-marker {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 166, 94, 0.55);
    border-radius: 50%;
    background: #123525;
    color: #f8ead1;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(19, 52, 37, 0.15);
}

.package-day-content {
    padding: 1.45rem;
    border: 1px solid rgba(19, 52, 37, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 20px 55px rgba(19, 52, 37, 0.08);
}

.package-day-content > span {
    display: inline-flex;
    margin-bottom: 0.55rem;
    color: #a66f3e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-day-content h3 {
    color: #143828;
}

.package-day-content p {
    color: #5d665d;
    line-height: 1.75;
}

.package-day-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.package-day-list div {
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(19, 52, 37, 0.12);
    border-radius: 8px;
    background: rgba(246, 241, 232, 0.72);
    color: #143828;
    font-size: 0.88rem;
    font-weight: 700;
}

/* Destinations page */
.destinations-page {
    overflow-x: hidden;
    background: #fbfaf7;
}

.destinations-hero {
    position: relative;
    min-height: 78svh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: #14291b;
}

.destinations-hero-bg,
.destinations-hero-overlay {
    position: absolute;
    inset: 0;
}

.destinations-hero-bg {
    background-size: cover;
    background-position: center 52%;
    transform: scale(1.02);
}

.destinations-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 14, 10, 0.86) 0%, rgba(8, 14, 10, 0.62) 48%, rgba(8, 14, 10, 0.16) 100%),
        linear-gradient(to top, rgba(8, 14, 10, 0.54), rgba(8, 14, 10, 0.08));
}

.destinations-hero .container {
    position: relative;
    z-index: 1;
}

.destinations-hero-content {
    max-width: 820px;
    color: #fffdf8;
}

.destinations-hero-content .section-badge {
    border: 0;
    border-bottom: 1px solid rgba(231, 197, 134, 0.62);
    border-radius: 0;
    padding: 0 0 0.75rem;
    background: transparent;
    color: #e7c586;
}

.destinations-hero h1 {
    max-width: 780px;
    margin: 1.2rem 0 1.25rem;
    color: #fffdf8;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    line-height: 1.03;
}

.destinations-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.8;
}

.destinations-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.destinations-intro {
    padding: 5.5rem 0 2rem;
    background: #fbfaf7;
}

.destinations-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    gap: 2rem 4rem;
    align-items: end;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(200, 148, 70, 0.28);
}

.destinations-intro h2 {
    max-width: 760px;
    margin: 0.9rem 0 0;
    color: #12251a;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
}

.destinations-intro p {
    margin: 0;
    color: #5f685f;
    font-size: 1.03rem;
    line-height: 1.75;
}

.destinations-showcase {
    padding: 3rem 0 6rem;
    background: #fbfaf7;
}

.destination-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.portfolio-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(22, 37, 27, 0.14);
    border-radius: 8px;
    background: #111a13;
    box-shadow: 0 22px 48px rgba(22, 31, 22, 0.11);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0.8rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    pointer-events: none;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
    transition: transform 0.45s ease;
}

.portfolio-card:hover img {
    transform: scale(1.045);
}

.portfolio-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.45rem;
    color: #fffdf8;
    background:
        linear-gradient(to top, rgba(9, 17, 12, 0.92) 0%, rgba(9, 17, 12, 0.58) 45%, rgba(9, 17, 12, 0.08) 100%),
        linear-gradient(135deg, rgba(231, 197, 134, 0.14), transparent 44%);
}

.portfolio-card-content span {
    width: max-content;
    max-width: 100%;
    margin-bottom: 0.9rem;
    padding: 0.38rem 0.72rem;
    border-radius: 6px;
    background: rgba(248, 244, 236, 0.9);
    color: #17301f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portfolio-card-content h3 {
    max-width: 94%;
    margin-bottom: 0.55rem;
    color: #fffdf8;
    font-size: clamp(1.45rem, 2.1vw, 2.1rem);
    line-height: 1.08;
}

.portfolio-card-content p {
    max-width: 95%;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    line-height: 1.62;
}

.portfolio-card-content small {
    color: #e7c586;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
}

.portfolio-card-wide {
    grid-column: span 2;
    min-height: 360px;
}

.destination-planning {
    padding: 5.5rem 0;
}

.destination-notes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.destination-note {
    padding: 1.6rem;
    border: 1px solid #e6ded2;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
    box-shadow: 0 18px 40px rgba(28, 36, 24, 0.08);
}

.destination-note span {
    display: block;
    margin-bottom: 1rem;
    color: #c89446;
    font-size: 0.82rem;
    font-weight: 800;
}

.destination-note h3 {
    margin-bottom: 0.7rem;
    color: #17251b;
    font-size: 1.28rem;
}

.destination-note p {
    color: #5f685f;
    line-height: 1.7;
}

/* About page */
.about-page {
    overflow-x: hidden;
    background: #fbfaf7;
}

.about-hero {
    position: relative;
    min-height: 78svh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: #14291b;
}

.about-hero-bg,
.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-bg {
    background-size: cover;
    background-position: center 42%;
    transform: scale(1.02);
}

.about-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 14, 10, 0.9) 0%, rgba(8, 14, 10, 0.62) 48%, rgba(8, 14, 10, 0.16) 100%),
        linear-gradient(to top, rgba(8, 14, 10, 0.56), rgba(8, 14, 10, 0.12));
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 820px;
    color: #fffdf8;
}

.about-hero-content .section-badge {
    border: 0;
    border-bottom: 1px solid rgba(231, 197, 134, 0.62);
    border-radius: 0;
    padding: 0 0 0.75rem;
    background: transparent;
    color: #e7c586;
}

.about-hero h1 {
    max-width: 780px;
    margin: 1.2rem 0 1.25rem;
    color: #fffdf8;
    font-size: clamp(3rem, 5.8vw, 5.6rem);
    line-height: 1.03;
}

.about-hero p {
    max-width: 710px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-story {
    padding: 6rem 0;
    background: #fbfaf7;
}

.about-story-grid,
.about-difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
    gap: 4rem;
    align-items: center;
}

.about-story-copy h2,
.about-difference-content h2 {
    margin: 1rem 0 1.15rem;
    color: #12251a;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    line-height: 1.06;
}

.about-story-copy p,
.about-difference-content p {
    color: #5f685f;
    font-size: 1rem;
    line-height: 1.78;
}

.about-story-panel,
.about-difference-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(22, 37, 27, 0.14);
    border-radius: 8px;
    background: #14291b;
    box-shadow: 0 22px 48px rgba(22, 31, 22, 0.12);
}

.about-story-panel img,
.about-difference-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
}

.about-story-note {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(13, 29, 19, 0.78);
    color: #fffdf8;
    backdrop-filter: blur(12px);
}

.about-story-note span {
    display: block;
    margin-bottom: 0.45rem;
    color: #e7c586;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-story-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.about-stats {
    padding: 4.75rem 0;
}

.about-stats-grid,
.about-values-grid,
.about-office-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-stat,
.about-value-card,
.about-office-card {
    padding: 1.5rem;
    border: 1px solid #e6ded2;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
    box-shadow: 0 18px 40px rgba(28, 36, 24, 0.08);
}

.about-stat strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #c89446;
    font-size: 2.45rem;
    line-height: 1;
}

.about-stat span {
    color: #5f685f;
    line-height: 1.6;
}

.about-values {
    padding: 6rem 0;
    background: #fbfaf7;
}

.about-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-value-card span,
.about-office-card span {
    display: block;
    margin-bottom: 1rem;
    color: #c89446;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-value-card h3,
.about-office-card h3 {
    margin-bottom: 0.75rem;
    color: #17251b;
    font-size: 1.22rem;
}

.about-value-card p,
.about-office-card p {
    color: #5f685f;
    line-height: 1.7;
}

.about-difference {
    padding: 6rem 0;
}

.about-check-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.6rem;
}

.about-check {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.about-check > span {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e7c586, #c89446);
    position: relative;
}

.about-check > span::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 15px;
    width: 10px;
    height: 16px;
    border-right: 3px solid #132418;
    border-bottom: 3px solid #132418;
    transform: rotate(42deg);
}

.about-check h3 {
    margin-bottom: 0.35rem;
    color: #17251b;
    font-size: 1.12rem;
}

.about-offices {
    padding: 6rem 0;
    background: #fbfaf7;
}

.about-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-office-card a {
    display: block;
    margin-top: 0.45rem;
    color: #1f4d32;
    font-weight: 700;
}

/* Destination detail pages */
.destination-detail-page {
    overflow-x: hidden;
    background: #fbfaf7;
}

.detail-hero {
    position: relative;
    min-height: 82svh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: #14291b;
}

.detail-hero-bg,
.detail-hero-overlay {
    position: absolute;
    inset: 0;
}

.detail-hero-bg {
    background-size: cover;
    background-position: center 48%;
    transform: scale(1.02);
}

.detail-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 14, 10, 0.9) 0%, rgba(8, 14, 10, 0.62) 48%, rgba(8, 14, 10, 0.16) 100%),
        linear-gradient(to top, rgba(8, 14, 10, 0.56), rgba(8, 14, 10, 0.1));
}

.detail-hero .container {
    position: relative;
    z-index: 1;
}

.detail-hero-content {
    max-width: 860px;
    color: #fffdf8;
}

.detail-hero-content .section-badge {
    border: 0;
    border-bottom: 1px solid rgba(231, 197, 134, 0.62);
    border-radius: 0;
    padding: 0 0 0.75rem;
    background: transparent;
    color: #e7c586;
}

.detail-hero h1 {
    max-width: 820px;
    margin: 1.2rem 0 1.25rem;
    color: #fffdf8;
    font-size: clamp(3rem, 5.9vw, 5.8rem);
    line-height: 1.03;
}

.detail-hero p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.6rem;
}

.detail-meta-grid span {
    padding: 0.55rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-overview {
    padding: 6rem 0;
    background: #fbfaf7;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 4rem;
    align-items: start;
}

.detail-main h2 {
    max-width: 780px;
    margin: 1rem 0 1.25rem;
    color: #12251a;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    line-height: 1.06;
}

.detail-main p {
    color: #5f685f;
    font-size: 1rem;
    line-height: 1.82;
}

.detail-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 130px;
}

.detail-card,
.season-card,
.detail-planning-card {
    border: 1px solid #e6ded2;
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%);
    box-shadow: 0 18px 40px rgba(28, 36, 24, 0.08);
}

.detail-card {
    padding: 1.45rem;
}

.detail-card h3 {
    margin-bottom: 1rem;
    color: #17251b;
    font-size: 1.18rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.detail-tags span {
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background: #efe3d0;
    color: #385241;
    font-size: 0.82rem;
    font-weight: 700;
}

.detail-seasons {
    padding: 5.5rem 0;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.season-card {
    padding: 1.35rem;
}

.season-card span {
    display: block;
    margin-bottom: 0.75rem;
    color: #c89446;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.season-card p {
    color: #5f685f;
    line-height: 1.68;
}

.detail-planning {
    padding: 5.5rem 0;
    background: #fbfaf7;
}

.detail-planning-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

.detail-planning-card h2 {
    max-width: 760px;
    margin: 0.9rem 0 0.8rem;
    color: #12251a;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.08;
}

.detail-planning-card p {
    max-width: 780px;
    color: #5f685f;
    line-height: 1.75;
}

.detail-planning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .home-page .navbar,
    .brand-page .navbar {
        width: min(1000px, calc(100% - 28px));
    }

    .home-page .nav-links,
    .brand-page .nav-links {
        gap: 0.12rem;
    }

    .home-page .nav-links a,
    .brand-page .nav-links a {
        padding-right: 0.58rem;
        padding-left: 0.58rem;
    }

    .home-page .hero h1 {
        font-size: 3.8rem;
    }

    .home-page .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destinations-intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .destination-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-card-wide {
        grid-column: span 2;
    }

    .destination-notes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-intro-grid,
    .package-planning-card,
    .experience-intro-grid,
    .story-grid,
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-detail-layout {
        grid-template-columns: 1fr;
    }

    .package-detail-side {
        position: static;
    }

    .booking-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .luxury-package-grid,
    .experience-feature-grid,
    .experience-card-grid,
    .compact-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .detail-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-planning-card {
        grid-template-columns: 1fr;
    }

    .detail-planning-actions {
        justify-content: flex-start;
    }

    .about-story-grid,
    .about-difference-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stats-grid,
    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .destinations-section .section-header {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .home-page .destinations-section .section-header p {
        grid-column: 1;
        grid-row: auto;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .home-page .navbar,
    .brand-page .navbar {
        top: 10px;
        width: calc(100% - 24px);
        padding: 0;
    }

    .home-page .nav-container,
    .brand-page .nav-container {
        max-width: 100vw;
        padding: 0.45rem 0.65rem;
    }

    .home-page .site-logo,
    .brand-page .site-logo {
        width: 58px;
        height: 58px;
    }

    .home-page .logo-text,
    .brand-page .logo-text {
        font-size: 0.95rem;
    }

    .home-page .nav-links,
    .brand-page .nav-links {
        top: 82px;
        right: 12px;
        left: 12px;
        width: auto;
        align-items: stretch;
        border-radius: 8px;
    }

    .home-page .nav-cta {
        margin-top: 0.5rem;
        text-align: center;
    }

    .home-page .hero {
        min-height: 88svh;
        padding: 116px 0 42px;
    }

    .packages-hero {
        min-height: 78svh;
        padding: 120px 0 56px;
    }

    .packages-hero h1 {
        font-size: 2.65rem;
    }

    .packages-hero p {
        font-size: 1rem;
    }

    .packages-hero-actions,
    .package-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .package-intro,
    .signature-packages,
    .package-planning,
    .experience-intro,
    .experience-routes,
    .experience-highlights,
    .experience-timeline,
    .experience-planning,
    .zanzibar-story {
        padding: 3.75rem 0;
    }

    .luxury-package-grid,
    .experience-feature-grid,
    .experience-card-grid,
    .compact-timeline,
    .experience-meta-grid {
        grid-template-columns: 1fr;
    }

    .package-planning-card {
        padding: 1.35rem;
    }

    .experience-hero {
        min-height: 78svh;
        padding: 120px 0 56px;
    }

    .experience-hero h1 {
        font-size: 2.55rem;
    }

    .experience-hero p {
        font-size: 1rem;
    }

    .experience-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .booking-hero {
        min-height: 66svh;
        padding: 120px 0 56px;
    }

    .booking-hero h1 {
        font-size: 2.55rem;
    }

    .booking-hero p {
        font-size: 1rem;
    }

    .booking-section {
        padding: 3.75rem 0;
    }

    .booking-card,
    .booking-side-card {
        padding: 1.25rem;
    }

    .booking-sidebar,
    .choice-grid,
    .package-detail-grid,
    .package-day-list {
        grid-template-columns: 1fr;
    }

    .package-detail-hero {
        min-height: 76svh;
        padding: 120px 0 56px;
    }

    .package-detail-hero h1 {
        font-size: 2.45rem;
    }

    .package-detail-hero p {
        font-size: 1rem;
    }

    .package-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .package-detail-intro,
    .package-days,
    .package-detail-planning {
        padding: 3.75rem 0;
    }

    .package-day-card {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .package-day-marker {
        width: 50px;
        height: 50px;
    }

    .detail-hero {
        min-height: 78svh;
        padding: 120px 0 56px;
    }

    .detail-hero h1 {
        font-size: 2.55rem;
    }

    .detail-hero p {
        font-size: 1rem;
    }

    .detail-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .detail-overview,
    .detail-seasons,
    .detail-planning {
        padding: 3.75rem 0;
    }

    .detail-sidebar,
    .season-grid {
        grid-template-columns: 1fr;
    }

    .detail-planning-card {
        padding: 1.35rem;
    }

    .detail-planning-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page .hero .container {
        width: 100vw;
        max-width: 100vw;
        padding: 0 2rem;
    }

    .home-page .hero-overlay {
        background:
            linear-gradient(to top, rgba(8, 14, 10, 0.92), rgba(8, 14, 10, 0.44)),
            linear-gradient(90deg, rgba(8, 14, 10, 0.72), rgba(8, 14, 10, 0.2));
    }

    .home-page .hero h1 {
        font-size: 2.55rem;
    }

    .home-page .hero-badge {
        display: inline-block;
        width: auto;
        box-sizing: border-box;
        padding: 0 0 0.7rem;
        font-size: 0.9rem;
    }

    .home-page .hero-description {
        width: 100%;
        max-width: 100%;
        font-size: 1.03rem;
    }

    .home-page .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .destinations-hero {
        min-height: 78svh;
        padding: 120px 0 56px;
    }

    .destinations-hero h1 {
        font-size: 2.55rem;
    }

    .destinations-hero p {
        font-size: 1rem;
    }

    .destinations-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .destinations-intro {
        padding: 3.5rem 0 1.5rem;
    }

    .destinations-intro h2 {
        font-size: 2rem;
    }

    .destinations-showcase {
        padding: 2rem 0 4rem;
    }

    .destination-portfolio-grid,
    .destination-notes-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card-wide {
        grid-column: auto;
        min-height: 360px;
    }

    .portfolio-card-content {
        padding: 1.15rem;
    }

    .destination-planning {
        padding: 3.75rem 0;
    }

    .about-hero {
        min-height: 78svh;
        padding: 120px 0 56px;
    }

    .about-hero h1 {
        font-size: 2.55rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-story,
    .about-values,
    .about-difference,
    .about-offices {
        padding: 3.75rem 0;
    }

    .about-story-copy h2,
    .about-difference-content h2 {
        font-size: 2rem;
    }

    .about-story-panel img,
    .about-difference-image img {
        height: 380px;
    }

    .about-stats {
        padding: 3.5rem 0;
    }

    .about-stats-grid,
    .about-values-grid,
    .about-office-grid {
        grid-template-columns: 1fr;
    }

    .home-page section {
        padding: 3.5rem 0;
    }

    .home-page .destinations-section {
        padding: 3.75rem 0;
    }

    .home-page .destinations-section .section-header {
        padding-bottom: 1.35rem;
        margin-bottom: 1.65rem;
    }

    .home-page .destinations-section .section-header h2 {
        font-size: 2.25rem;
    }

    .home-page .section-header {
        margin-bottom: 2rem;
    }

    .home-page .section-header h2 {
        font-size: 1.85rem;
    }

    .home-page .features-grid,
    .home-page .destinations-grid,
    .home-page .packages-grid,
    .home-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-page .destinations-grid {
        gap: 0.9rem;
    }

    .home-page .destination-card {
        aspect-ratio: 4 / 3;
    }

    .home-page .destination-overlay {
        padding: 1.1rem;
    }

    .home-page .destination-overlay h3,
    .home-page .destination-overlay p {
        max-width: 100%;
    }

    .home-page .package-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-page .zanzibar-grid {
        gap: 1.5rem;
    }

    .home-page #whatsappBtn,
    .brand-page #whatsappBtn {
        right: 16px !important;
        left: auto !important;
        bottom: 16px !important;
        gap: 0 !important;
        padding: 12px !important;
        font-size: 0 !important;
    }

    .home-page #whatsappBtn img,
    .brand-page #whatsappBtn img {
        width: 22px !important;
        height: 22px !important;
    }

    .home-page #whatsappBtn .whatsapp-float-icon,
    .brand-page #whatsappBtn .whatsapp-float-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 420px) {
    .home-page .hero h1 {
        font-size: 2.1rem;
    }

}
