/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties / Design System */
:root {
    /* Color Palette */
    --primary: #006837;        /* Green */
    --primary-hover: #004d28;
    --secondary: #ffff00;      /* Yellow */
    --accent: #E05A1F;         /* Burnt Orange */
    --accent-light: #fffde7;
    --cream: #FFFFFF;          /* White */
    --white: #FFFFFF;
    --dark: #002b17;           /* Very Dark Green */
    --gray-light: #F3F1ED;
    --gray-medium: #D1C9BE;
    --gray-dark: #7A6F62;
    --text: #1a2421;
    --text-muted: #4e5f56;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 43, 23, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 43, 23, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 43, 23, 0.2);
    
    /* Border Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body.nav-open {
    overflow: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

button, .btn, a {
    touch-action: manipulation;
}

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

.page-title {
    font-size: clamp(26px, 5vw, 32px);
    color: var(--dark);
}

.button-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-row .btn {
    width: auto;
}

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

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

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

/* Header / Navigation */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
}

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

/* Navigation Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 90, 31, 0.3);
}

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

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

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

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

/* Search Bar in Header */
.search-container {
    position: relative;
    width: 250px;
}

.search-input {
    width: 100%;
    padding: 8px 15px;
    padding-right: 35px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-dark);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    color: var(--dark);
}

.search-icon-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-medium);
    cursor: pointer;
}

.search-input:focus ~ .search-icon-btn {
    color: var(--primary);
}

/* AJAX Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
    display: none;
    flex-direction: column;
    z-index: 1100;
    max-height: 400px;
    overflow-y: auto;
    width: 320px;
}

.search-results-group {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.search-results-group:last-child {
    border-bottom: none;
}

.search-results-title {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gray-dark);
    padding: 5px 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    gap: 10px;
    color: var(--text);
    transition: var(--transition);
}

.search-result-item:hover {
    background-color: var(--gray-light);
    color: var(--primary);
}

.search-result-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.search-result-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--dark);
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 21, 12, 0.85) 0%, rgba(31, 21, 12, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--gray-light);
}

.tagline-pill {
    display: inline-flex;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Modern Hero Layout and Tabbed Widget Card */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.hero-widget-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(31, 21, 12, 0.18);
    padding: 30px;
    width: 100%;
    color: var(--text);
    z-index: 10;
}

.hero-widget-tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 20px;
    gap: 15px;
}

.hero-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
}

.hero-tab-btn:hover {
    color: var(--primary);
}

.hero-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.hero-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.hero-tab-content.active {
    display: block;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--gray-dark);
    pointer-events: none;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--white);
}

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

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

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

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

@media (max-width: 767px) {
    .grid-2, .grid-2-1 {
        grid-template-columns: 1fr !important;
    }
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background-color: var(--gray-light);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background-color: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

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

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
    margin-top: auto;
}

.card-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Destination Grid Page */
.dest-card {
    height: 380px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

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

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 43, 23, 0.9) 0%, rgba(0, 43, 23, 0.3) 50%, rgba(0, 43, 23, 0) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.dest-card-title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 5px;
}

.dest-card-count {
    font-size: 14px;
    color: var(--gray-light);
}

/* Detail Pages */
.detail-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    padding-bottom: 50px;
}

.detail-hero-content {
    position: relative;
    z-index: 2;
}

.detail-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 10px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.detail-main {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    margin-bottom: 30px;
}

.sidebar-box-dark {
    background-color: var(--dark);
    color: var(--white);
    border: none;
}

.sidebar-box-dark h3 {
    color: var(--white);
}

/* Tabs & Highlights */
.highlights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
    list-style: none;
}

.highlights-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlights-item::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    background-color: var(--accent-light);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Day-by-Day Itinerary */
.itinerary-timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: var(--gray-light);
}

.itinerary-day {
    position: relative;
    margin-bottom: 35px;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--gray-light);
}

.itinerary-day-num {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.itinerary-day-title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Dynamic Price Booking Form */
.booking-form-box {
    text-align: left;
}

.booking-form-box h3 {
    margin-bottom: 20px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-medium);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 90, 31, 0.15);
}

.price-summary {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 25px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.price-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--gray-medium);
}

.price-row-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
}

/* Image Galleries */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    padding-top: 75%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Testimonials / Trust Badges */
.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-stars {
    color: #F1C40F;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.testimonial-author-meta {
    font-size: 12px;
    color: var(--gray-dark);
}

.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.trust-badge-img {
    height: 60px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
    margin-bottom: 10px;
}

.trust-badge-item:hover .trust-badge-img {
    filter: none;
    opacity: 1;
}

.trust-badge-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Floating WhatsApp Button */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

.whatsapp-icon {
    font-size: 32px;
    fill: currentColor;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--cream);
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-medium);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray-medium);
}

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

.footer-bottom-text {
    color: var(--gray-dark);
}

/* Admin Dashboard Styles */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
    min-height: 100dvh;
}

.admin-sidebar-wrap {
    position: relative;
}

.admin-mobile-bar {
    display: none;
}

.admin-sidebar-overlay {
    display: none;
}

.admin-sidebar {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px 20px;
}

.admin-sidebar-title {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.admin-sidebar-menu {
    list-style: none;
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-weight: 500;
}

.admin-sidebar-link:hover, .admin-sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-main {
    background-color: var(--gray-light);
    padding: 40px;
    min-width: 0;
}

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

.admin-header > div {
    min-width: 0;
}

.admin-header h1 {
    font-size: clamp(22px, 4vw, 28px);
}

.admin-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-filters .btn {
    padding: 8px 15px;
    white-space: nowrap;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.admin-panel {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-panel-compact {
    height: fit-content;
}

.admin-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-medium);
}

.admin-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.admin-stat-num {
    font-size: clamp(24px, 5vw, 32px);
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 10px 0 5px;
}

.admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-table-wrapper .admin-table {
    margin-bottom: 0;
    min-width: 640px;
}

.admin-table-wrapper-flush {
    box-shadow: none;
    margin-bottom: 0;
}

.admin-table-wrapper-flush .admin-table {
    min-width: 560px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-table th, .admin-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    white-space: nowrap;
}

.admin-table tr {
    border-bottom: 1px solid var(--gray-light);
}

.admin-table tr:last-child {
    border-bottom: none;
}

.admin-table tbody tr:hover {
    background-color: rgba(74, 44, 17, 0.02);
}

.admin-action-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.admin-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-status {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-status-pending { background-color: #FFEFC2; color: #B77C00; }
.badge-status-confirmed { background-color: #E3F2FD; color: #0D47A1; }
.badge-status-paid { background-color: #E8F5E9; color: #1B5E20; }
.badge-status-cancelled { background-color: #FFEBEE; color: #C62828; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

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

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

    .admin-mobile-bar {
        display: flex;
        align-items: center;
        gap: 12px;
        position: sticky;
        top: 0;
        z-index: 1002;
        background-color: var(--dark);
        color: var(--white);
        padding: 12px 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .admin-mobile-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 16px;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .admin-mobile-site-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--cream);
        font-size: 18px;
        flex-shrink: 0;
    }

    .admin-mobile-site-link:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .admin-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        flex-shrink: 0;
    }

    .admin-mobile-toggle span {
        display: block;
        width: 22px;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .admin-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .admin-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .admin-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .admin-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(31, 21, 12, 0.55);
        z-index: 1003;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .admin-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .admin-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        z-index: 1004;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 24px;
    }

    .admin-sidebar.active {
        left: 0;
    }

    .admin-main {
        padding: 20px 16px 32px;
    }

    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-content-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 0;
        padding: 40px 0 50px;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 40px);
    }

    .hero p {
        font-size: 17px;
    }

    .hero-widget-card {
        padding: 22px 18px;
    }

    .hero-widget-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-tab-btn {
        font-size: 12px;
        padding: 8px 0;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 36px);
    }

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

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

    .highlights-list {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-badges-wrapper {
        gap: 20px;
    }

    .detail-hero {
        min-height: 280px;
        padding-bottom: 30px;
    }

    .detail-hero h1 {
        font-size: clamp(28px, 8vw, 48px);
    }

    .detail-main,
    .sidebar-box {
        padding: 24px 18px;
    }

    .card-content {
        padding: 20px;
    }

    .dest-card {
        height: 300px;
    }

    .dest-card-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-icon {
        font-size: 28px;
    }

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

    .admin-panel {
        padding: 20px 16px;
    }

    .admin-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .admin-filters {
        width: 100%;
    }

    .admin-filters .btn {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-svg {
        width: 100%;
        max-width: 80vw;
        height: auto;
        max-height: 80px;
        flex-shrink: 0;
    }
    
    .logo-link {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .btn {
        padding: 12px 18px;
    }

    .admin-filters .btn {
        flex: 1 1 100%;
    }
}

/* Premium Mobile Drawer Menu */
.nav-overlay {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(31, 21, 12, 0.55);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-container {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        gap: 12px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 88vw);
        height: 100vh;
        height: 100dvh;
        background-color: var(--dark);
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 90px 24px 40px;
        gap: 16px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-menu li {
        margin: 0 !important;
        width: 100%;
    }

    .nav-menu .nav-link,
    .nav-menu .btn {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu .search-container {
        width: 100%;
        position: relative;
    }

    .nav-menu .search-input {
        width: 100% !important;
    }

    .search-results-dropdown {
        position: absolute;
        width: 100% !important;
        left: 0;
    }

    /* Hamburger transformation */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}


/* Location Animation */
@keyframes floatLocation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-location {
    animation: floatLocation 4s ease-in-out infinite;
}
.animate-location:nth-child(2) {
    animation-delay: 1s;
}
.animate-location:hover {
    animation-play-state: paused;
}

@media (max-width: 767px) {
    .section { padding: 40px 0; }
    .hero { min-height: auto; padding: 50px 0; }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    .grid-4 { grid-template-columns: 1fr; gap: 20px; }
    .dest-card { width: 100% !important; height: 300px; }
}
@media (max-width: 768px) { .site-logo { width: 160px; } }

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.site-logo {
    transition: width 0.3s ease;
}

.header.scrolled .site-logo {
    width: 90px;
}

@media (max-width: 768px) {
    .header.scrolled .site-logo {
        width: 120px;
    }
}

