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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #d4a574;
    --accent-color: #f59e0b;
    --text-color: #2d3748;
    --text-light: #718096;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --hero-overlay: rgba(26, 77, 46, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

.hidden {
    display: none !important;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.brand-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.brand-link:hover {
    color: #143d22;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #143d22;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 77, 46, 0.6), rgba(26, 77, 46, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a4d2e" width="1200" height="600"/><text x="50%" y="50%" font-size="200" text-anchor="middle" fill="rgba(255,255,255,0.1)">🦁</text></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

.btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main */
main {
    padding: 40px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tours Section */
.tours-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.destination-section {
    padding: 5rem 0;
}

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

.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

a.tour-card-link {
    text-decoration: none;
    color: inherit;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.tour-card:hover .tour-card-image::before {
    background: rgba(26, 77, 46, 0.55);
}

.tour-card:hover .tour-card-image .tour-hover-label {
    opacity: 1;
}

.tour-card-image {
    width: 100%;
    height: 220px;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    color: var(--white);
    z-index: 1;
}

.tour-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tour-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 3;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tour-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.tour-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tour-highlights {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    line-height: 1.8;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tour-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tour-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tour-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
    margin: 0.3rem 0;
}

.tour-duration-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #2d6a4f);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.duration-icon {
    font-size: 1.1rem;
}

.tour-price small {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 12px 40px rgba(26, 77, 46, 0.2);
}

/* Booking Section */
.booking-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

#booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.package-row {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr auto;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.package-row select,
.package-row input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

.package-remove {
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    color: var(--text-color);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

.package-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c;
}

#add-package {
    margin-top: 0.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color), #143d22);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
}

.price-display strong {
    font-size: 1.8rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Confirmation */
.confirmation {
    background: #d1fae5;
    border: 2px solid #6ee7b7;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    animation: slideDown 0.4s ease;
}

.confirmation.hidden {
    display: none;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.confirmation h3 {
    margin-bottom: 1rem;
    color: #047857;
    font-size: 1.5rem;
}

.confirmation p {
    color: #065f46;
    line-height: 1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 0;
    background: var(--white);
}

.destination-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.destination-link-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.destination-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.destination-link-card .link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.destination-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

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

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

.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

/* Package Pages */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #143d22 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: left;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin: 0.5rem 0 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 700px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.package-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

a.package-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.package-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

a.package-card-link:hover .package-gallery img {
    transform: scale(1.08);
}

a.package-card-link:hover .package-gallery::after {
    opacity: 1;
}

.package-detail {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ─── Details Page: Gallery Hero ─── */
.dp-gallery-hero {
    background: #0f0f0f;
    padding: 0;
}

.dp-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px;
    max-height: 564px;
    overflow: hidden;
}

.dp-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dp-gallery img:hover {
    transform: scale(1.03);
}

.dp-gallery img:first-child {
    grid-row: 1 / -1;
}

/* ─── Details Page: Content ─── */
.dp-content {
    padding: 2rem 0 5rem;
    background: var(--light-bg);
}

.dp-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.dp-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.dp-breadcrumb span {
    margin: 0 0.4rem;
    opacity: 0.5;
}

.dp-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.dp-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.dp-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dp-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.dp-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.dp-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.dp-long-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.dp-highlights,
.dp-included {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.dp-highlights li,
.dp-included li {
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.6rem;
    position: relative;
    line-height: 1.5;
}

.dp-highlights li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.dp-included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ─── Details Page: Price Sidebar ─── */
.dp-sidebar {
    position: sticky;
    top: 100px;
}

.dp-price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
}

.dp-price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.dp-price {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0.25rem 0 0.1rem;
}

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

.dp-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.dp-quick-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.dp-quick-facts li {
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.dp-quick-facts li:last-child {
    border-bottom: none;
}

.dp-book-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dp-book-btn:hover {
    background: #143d22;
    transform: translateY(-2px);
}

.dp-cancel-btn {
    background: #6b7280;
}

.dp-cancel-btn:hover {
    background: #4b5563;
}

/* ─── Details Page: Booking Form ─── */
.dp-booking-form {
    margin-top: 1.25rem;
    text-align: left;
}

.dp-booking-form.hidden {
    display: none;
}

.dp-form-group {
    margin-bottom: 1rem;
}

.dp-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.dp-form-group input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--text-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.dp-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 75, 42, 0.12);
}

.dp-form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.dp-form-total strong {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.dp-checkout-btn {
    margin-top: 0;
    border: none;
    cursor: pointer;
}

.dp-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dp-confirmation {
    text-align: center;
    padding: 1.5rem 0;
}

.dp-confirmation h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.dp-confirmation p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0.3rem 0;
}

.dp-reassurance {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── Details Page: Responsive ─── */
@media (max-width: 1024px) {
    .dp-layout {
        grid-template-columns: 1fr 320px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dp-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .dp-gallery img:first-child {
        grid-row: auto;
    }

    .dp-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dp-sidebar {
        position: static;
    }

    .dp-title {
        font-size: 1.6rem;
    }

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

@media (max-width: 480px) {
    .dp-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 250px;
        max-height: 254px;
    }

    .dp-gallery img:nth-child(n+2) {
        display: none;
    }
}

.package-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.package-gallery::after {
    content: 'Explore Now →';
    position: absolute;
    inset: 0;
    background: rgba(26, 77, 46, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.package-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-body {
    padding: 1.5rem;
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.package-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.package-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rating {
    color: #f59e0b;
    font-weight: 700;
    margin: 0.5rem 0;
}

.rating span {
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.package-meta {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    color: var(--text-light);
    display: grid;
    gap: 0.4rem;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    animation: slideUp 0.3s ease;
}

.chat-widget.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 1.5rem;
}

.chat-body p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-btn {
    padding: 0.75rem;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
}

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

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
}

.chat-toggle.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    #booking-form {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

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

    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
    }

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

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

    .package-gallery img {
        height: 200px;
    }

    .package-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

/* Admin Page */
.admin-section {
    padding: 4rem 0 6rem;
    background: var(--light-bg);
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
}

.admin-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.admin-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.admin-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.admin-controls label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.35rem;
    display: block;
}

.admin-controls input,
.admin-controls select {
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 220px;
    background: var(--white);
}

.admin-controls .btn-hero {
    padding: 0.8rem 2rem;
}

.admin-subsection {
    margin-top: 3rem;
}

.admin-price-input {
    width: 120px;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.admin-textarea {
    width: 100%;
    min-width: 200px;
    height: 90px;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 0.9rem;
}

.admin-table-wrapper {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admin-table thead {
    background: rgba(26, 77, 46, 0.08);
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr:hover {
    background: rgba(26, 77, 46, 0.04);
}

.admin-customer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.admin-customer span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.85rem;
}

.status-paid {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.admin-empty {
    padding: 3rem 2rem;
    text-align: center;
}

.admin-empty h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.admin-empty p {
    color: var(--text-light);
}
