:root {
    --primary: #2D5016;
    --primary-dark: #2D5016;
    --secondary: #8B4513;
    --accent: #E67E22;
    --accent-dark: #D35400;
    --bg-light: #F5F3EE;
    --bg-dark: #2D5016;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --cream: #F5F3EE;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Top Bar */
.top-bar {
    background: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.top-bar-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-item:hover {
    color: var(--primary);
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}


.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-tagline {
    color: var(--text-light);
    font-size: 0.75rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger svg {
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--accent);
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background: var(--cream);
    margin: 10px 0;
}

.dropdown-view-all {
    color: var(--accent) !important;
    font-weight: 600;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
        url('/assets/images/site/hero-gorillas.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accent {
    background: #22C55E;
    color: var(--white);
}

.btn-accent:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.arrow {
    margin-left: 5px;
}

/* Stats Row */
.stats-row {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-dark);
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

/* Trek Overview Cards */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(139,69,19,0.15);
}

.overview-card h3 {
    color: var(--primary);
    margin: 15px 0 10px;
}

.overview-card .icon {
    font-size: 3rem;
}

/* Highlights */
.highlights {
    background: var(--white);
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid rgba(139,69,19,0.15);
}

.highlight-item span {
    font-size: 1.5rem;
}

/* Trek Details Page */
.trek-header {
    background: linear-gradient(rgba(45,80,22,0.9), rgba(45,80,22,0.9));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.trek-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.trek-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trek-info-item {
    text-align: center;
}

.trek-info-item .value {
    font-size: 1.8rem;
    font-weight: bold;
}

.trek-info-item .label {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Itinerary */
.itinerary-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
    border: 1px solid rgba(139,69,19,0.15);
    border-left: 4px solid var(--secondary);
}

.itinerary-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Included Items */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 6px;
}

.included-item::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

/* Book Now CTA Section */
.book-now-cta {
    background: linear-gradient(135deg, #F5F3EE 0%, #E8E4DB 100%);
    padding: 80px 0;
}

.book-now-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.book-now-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.book-now-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #D35400 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-book-now:hover::before {
    left: 100%;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(230, 126, 34, 0.5);
}

.btn-book-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.btn-book-icon svg {
    stroke: white;
}

.btn-book-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-book-main {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-book-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-book-arrow {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.btn-book-now:hover .btn-book-arrow {
    transform: translateX(8px);
}

.book-now-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.book-now-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.book-now-features svg {
    stroke: var(--secondary);
}

/* Available Dates */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.date-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(139,69,19,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.date-info .spots {
    color: var(--text-light);
    font-size: 0.9rem;
}

.date-info .spots.low {
    color: var(--danger);
    font-weight: 600;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(139,69,19,0.15);
}

.form-container h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer a {
    color: var(--secondary);
    transition: color 0.3s;
}

.form-footer a:hover {
    color: var(--accent);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Dashboard */
.dashboard {
    padding: 40px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    color: var(--primary-dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.dashboard-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(139,69,19,0.15);
}

.dashboard-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream);
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.booking-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
}

.booking-card-body {
    padding: 25px;
}

.booking-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.booking-detail:last-child {
    border-bottom: none;
}

.booking-detail .label {
    color: var(--text-light);
}

.booking-detail .value {
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #cce5ff;
    color: #004085;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

table tr:hover {
    background: var(--bg-light);
}

/* Admin Sidebar */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    width: 250px;
    background: var(--primary);
    padding: 20px 0;
}

.admin-sidebar a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--accent);
}

.admin-content {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
}

.admin-content h1 {
    color: var(--primary-dark);
    margin-bottom: 25px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(139,69,19,0.15);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}

.stat-card .label {
    color: var(--text-light);
    margin-top: 5px;
}

/* Messages */
.message-list {
    max-height: 400px;
    overflow-y: auto;
}

.message-item {
    padding: 15px;
    border-bottom: 1px solid var(--bg-light);
}

.message-item.unread {
    background: #fff9e6;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.message-sender {
    font-weight: 600;
    color: var(--secondary);
}

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

.message-content {
    color: var(--text-dark);
}

.message-admin {
    background: var(--cream);
    border-left: 3px solid var(--secondary);
}

/* Payment Section */
.payment-summary {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(139,69,19,0.15);
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.payment-row.total {
    border-top: 2px solid var(--secondary);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Signature Experiences */
.signature-experiences {
    padding: 80px 0;
    background: var(--bg-light);
}

.signature-experiences h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.experience-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.experience-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.experience-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.experience-content {
    padding: 25px;
}

.experience-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.experience-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.experience-group {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.experience-desc {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.experience-highlights span {
    background: var(--cream);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary);
}

.experience-actions {
    display: flex;
    gap: 10px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    color: var(--primary);
    margin-bottom: 40px;
    text-align: left;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    color: var(--primary);
    stroke: var(--primary);
}

.why-text h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.why-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.experience-badge-large {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.footer-brand .logo-name {
    color: var(--white);
    font-weight: 600;
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,0.7);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.footer-contact svg {
    stroke: rgba(255,255,255,0.7);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--accent);
}

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

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

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Booking Page */
.booking-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3009 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.booking-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.booking-hero p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.booking-page {
    padding: 60px 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

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

.step.active .step-label {
    color: var(--primary);
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #E5E7EB;
    margin-bottom: 25px;
}

.booking-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-form-card h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.section-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-sidebar .help-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.help-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.info-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 25px;
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.next-steps .step-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.booking-success {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.booking-success .success-icon {
    color: var(--success);
    margin-bottom: 20px;
}

.booking-success .success-icon svg {
    stroke: var(--success);
}

.booking-success h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3009 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-hero p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-page {
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon svg {
    stroke: var(--primary);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-detail {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-detail a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--accent);
}

.contact-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 10px;
}

.whatsapp-banner {
    background: var(--cream);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.whatsapp-content h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.whatsapp-content p {
    color: var(--text-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-section .form-subtitle {
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-success {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
}

.contact-success .success-icon {
    color: var(--success);
    margin-bottom: 15px;
}

.contact-success .success-icon svg {
    stroke: var(--success);
}

.contact-success h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-success p {
    color: var(--text-light);
}

.faq-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(45, 80, 22, 0.85), rgba(45, 80, 22, 0.9)), url('https://ankoletravel.com/assets/safari-wildlife-Drw35isj.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founded-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--accent);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.founded-year {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.founded-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mission-values {
    padding: 80px 0;
    background: var(--cream);
}

.mission-values h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #3D6B1E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    stroke: white;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-statement {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-statement h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.mission-statement blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin: 0;
    text-align: left;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

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

.team-info {
    padding: 30px;
}

.team-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.impact-section h2 {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.impact-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.about-cta .btn-outline-light {
    border-color: white;
    color: white;
}

.about-cta .btn-outline-light:hover {
    background: white;
    color: var(--accent);
}

/* Team Admin Styles */
.team-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.team-admin-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-admin-card.inactive {
    opacity: 0.6;
    border: 2px dashed #ccc;
}

.team-admin-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

.team-admin-image .no-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
}

.team-admin-form .form-group {
    margin-bottom: 12px;
}

.team-admin-form label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-admin-form input,
.team-admin-form textarea {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.form-row-inline {
    display: flex;
    gap: 20px;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.team-admin-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.delete-form {
    margin-top: 10px;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c82333;
}

/* Fancy Navigation Toggle Links */
.nav-link-fancy,
.nav-link-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link-fancy {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary);
    border: 1px solid rgba(45, 80, 22, 0.2);
}

.nav-link-fancy:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.nav-link-fancy svg {
    transition: transform 0.3s ease;
}

.nav-link-fancy:hover svg {
    transform: rotate(20deg);
}

.nav-link-toggle {
    background: linear-gradient(135deg, var(--accent) 0%, #D35400 100%);
    color: white;
    border: none;
    box-shadow: 0 3px 12px rgba(230, 126, 34, 0.3);
}

.nav-link-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.nav-link-toggle:hover::before {
    left: 100%;
}

.nav-link-toggle:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: white;
}

.nav-link-toggle svg {
    transition: transform 0.4s ease;
}

.nav-link-toggle:hover svg {
    transform: rotate(45deg);
}

/* Admin Toggle in Customer Dashboard */
.admin-toggle {
    background: linear-gradient(135deg, var(--primary) 0%, #3D6B1E 100%);
    box-shadow: 0 3px 12px rgba(45, 80, 22, 0.3);
}

.admin-toggle:hover {
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.admin-toggle:hover svg {
    transform: scale(1.1);
}

.dashboard-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-header-top h1 {
    margin: 0;
}

/* Tour Detail Pages */
.tour-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.tour-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tour-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tour-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tour-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.9;
}

.tour-content {
    padding: 60px 0;
    background: var(--cream);
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.tour-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.tour-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cream);
}

.tour-description {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlights li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--cream);
    color: var(--text);
    font-size: 1.05rem;
}

.tour-highlights li:last-child {
    border-bottom: none;
}

.tour-highlights svg {
    stroke: var(--secondary);
    flex-shrink: 0;
}

.tour-itinerary {
    position: relative;
}

.itinerary-day {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    position: relative;
}

.itinerary-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--cream));
}

.day-marker {
    flex-shrink: 0;
}

.day-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, #D35400 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

.day-content p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.tour-included {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.included-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text);
}

.included-item svg {
    stroke: var(--secondary);
}

.tour-sidebar {
    position: sticky;
    top: 20px;
}

.tour-price-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.price-header {
    margin-bottom: 25px;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.price-per {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-book-tour {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, #D35400 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

.btn-book-tour:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.price-features {
    margin-top: 20px;
    text-align: left;
}

.price-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 8px 0;
}

.price-features svg {
    stroke: var(--secondary);
}

.tour-help-card {
    background: var(--primary);
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
}

.tour-help-card h3 {
    color: white;
    margin-bottom: 10px;
}

.tour-help-card p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-contact-tour {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-contact-tour:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.tour-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3D6B1E 100%);
    color: white;
    text-align: center;
}

.tour-cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.tour-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tours Listing Page */
.tours-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #3D6B1E 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.tours-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.tours-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.tours-listing {
    padding: 60px 0;
    background: var(--cream);
}

.tours-count {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

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

.tour-card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.tour-card-duration {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-card-price {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-card-location {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.tour-card-group {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.tour-card-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-card-highlights {
    margin-bottom: 20px;
}

.tour-card-highlights strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    background: var(--cream);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.tour-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-view-details {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.btn-book-now-card {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #D35400 100%);
    color: white;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-book-now-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.tours-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3D6B1E 100%);
    color: white;
    text-align: center;
}

.tours-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.tours-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        position: static;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        order: -1;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid-row {
        gap: 40px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-hero h1 {
        font-size: 2rem;
    }
    
    .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
        transform: none;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn-nav {
        display: none;
    }
    
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
    }
    
    .trek-info {
        gap: 20px;
    }
    
    .date-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-steps {
        flex-wrap: wrap;
    }
    
    .step-line {
        display: none;
    }
    
    .booking-form-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Tour cards: make images clear + fit (no crop) */
.tour-card-image {
  width: 100%;
  height: 220px;          /* adjust if you want taller/shorter */
  background: #f3f3f3;    /* nice neutral behind transparent gaps */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* key: FIT, not crop */
  object-position: center;
  image-rendering: auto;
}

/* CUSTOMER LAYOUT */
.cust-shell{
  display:flex;
  min-height:100vh;
  background:#f6f4ef;
}

.cust-sidebar{
  width:260px;
  background:#ffffff;
  border-right:1px solid rgba(0,0,0,0.06);
  padding:18px 14px;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
}

.cust-brand{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 8px 14px;
}

.cust-logo{
  width:44px;
  height:44px;
  object-fit:contain;
}

.cust-brand-title{ font-weight:700; font-size:16px; }
.cust-brand-sub{ font-size:12px; opacity:.65; margin-top:2px; }

.cust-user{
  background:#faf7f0;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:12px;
  padding:12px;
  margin:10px 8px 14px;
}

.cust-user-hello{ font-size:12px; opacity:.7; }
.cust-user-name{ font-size:14px; font-weight:700; margin-top:2px; }

.cust-nav{ display:flex; flex-direction:column; gap:6px; padding:0 6px; }

.cust-link{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  color:#1f2a1f;
  font-weight:600;
  font-size:14px;
}

.cust-link:hover{ background:#f3efe5; }
.cust-link.is-active{ background:#e9f1e6; border:1px solid rgba(0,0,0,0.06); }

.cust-divider{
  height:1px;
  background:rgba(0,0,0,0.08);
  margin:10px 6px;
}

.cust-main{
  flex:1;
  padding:26px 26px 40px;
}

.cust-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.cust-page-title{
  font-size:28px;
  font-weight:800;
  color:#2b4a2c;
  margin:0;
}

.cust-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.cust-btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:10px;
  background:#e07a1f;
  color:white;
  font-weight:800;
  text-decoration:none;
}

.cust-btn:hover{ filter:brightness(0.95); }

/* Responsive */
@media (max-width: 900px){
  .cust-sidebar{ width:220px; }
}
@media (max-width: 720px){
  .cust-shell{ flex-direction:column; }
  .cust-sidebar{
    width:100%;
    height:auto;
    position:relative;
  }
}


