@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-dark: #041f1c;
    --primary: #0b3c37;
    --primary-light: #165b53;
    --accent: #dfa23b;
    --accent-light: #f7b74f;
    --secondary: #2ec4b6;
    --secondary-light: #e8f9f8;
    --dark-bg: #031412;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --text-dark: #1e2d2b;
    --text-muted: #5c6b69;
    --text-light: #ffffff;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(223, 162, 59, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --light-bg: #031412;
    --white: #062320;
    --text-dark: #ecf3f2;
    --text-muted: #9bb0ad;
    --secondary-light: #0b3c37;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(4, 31, 28, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle, .admin-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-full);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover, .admin-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.admin-btn {
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    gap: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 31, 28, 0.75) 0%, rgba(3, 20, 18, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(to right, #ffd269, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Widget */
.search-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1100px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.search-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.search-field:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
}

.search-field label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-field input, .search-field select {
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.search-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-field select option {
    background: var(--primary-dark);
    color: var(--text-light);
}

.search-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 0 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--accent-light), #ffe082);
}

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

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

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

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

.dest-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(3, 20, 18, 0.9) 0%, rgba(3, 20, 18, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--text-light);
    transition: var(--transition);
}

.dest-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dest-count {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

.dest-card:hover .dest-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(3, 20, 18, 0.95) 0%, rgba(3, 20, 18, 0.6) 80%, rgba(3, 20, 18, 0.3) 100%);
}

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

.tour-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(11, 60, 55, 0.05);
    display: flex;
    flex-direction: column;
}

.tour-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.tour-badge.hot {
    background: linear-gradient(135deg, #e63946, #ff7096);
    color: var(--white);
}

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

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-light);
    font-weight: 600;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-rating .stars {
    color: var(--accent);
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.tour-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(11, 60, 55, 0.1);
    font-size: 13px;
    color: var(--text-muted);
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-feature i {
    color: var(--accent);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.tour-price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.tour-price-value span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.tour-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 60, 55, 0.12);
}

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

.tour-card:hover .tour-title {
    color: var(--accent);
}

.tour-card:hover .tour-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
}

/* Modals Basic styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 31, 28, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(11, 60, 55, 0.1);
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(11, 60, 55, 0.05);
    border: none;
    font-size: 20px;
    color: var(--primary-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: #e63946;
    color: white;
}

/* Tour details template page layout details */
.detail-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 20, 18, 0.8) 0%, transparent 100%);
}

.detail-hero-content {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: var(--text-light);
    right: 40px;
}

.detail-badge {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-meta-item i {
    color: var(--accent);
}

.detail-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    padding: 40px;
}

/* Tabs UI in Details */
.detail-tabs {
    display: flex;
    border-bottom: 1px solid rgba(11, 60, 55, 0.1);
    gap: 20px;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

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

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

/* Tour Itinerary Details */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(11, 60, 55, 0.1);
}

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

.itinerary-day::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -37px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border: 3px solid var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 3px rgba(223, 162, 59, 0.3);
}

.itinerary-day-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.itinerary-day-desc {
    font-size: 15px;
    color: var(--text-muted);
}

/* Included / Excluded services */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.services-box {
    padding: 20px;
    border-radius: var(--radius-md);
}

.services-box.included {
    background-color: rgba(46, 196, 182, 0.08);
    border: 1px solid rgba(46, 196, 182, 0.2);
}

.services-box.excluded {
    background-color: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.services-box h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.services-box.included h4 {
    color: #1e7068;
}

.services-box.excluded h4 {
    color: #e63946;
}

.services-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.services-items li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-dark);
}

.services-items li i {
    margin-top: 3px;
}

/* Reviews Styling */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--secondary-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.reviews-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.reviews-meta-count {
    display: flex;
    flex-direction: column;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.review-author {
    font-weight: 600;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Sticky Booking Form in Modal side panel */
.booking-sidebar {
    background-color: var(--white);
    border: 1px solid rgba(11, 60, 55, 0.1);
    border-radius: var(--radius-md);
    padding: 25px;
    position: sticky;
    top: 20px;
    box-shadow: var(--shadow-md);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--primary);
}

.booking-form-group {
    margin-bottom: 15px;
}

.booking-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.booking-form-group input, .booking-form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(11, 60, 55, 0.15);
    background-color: var(--light-bg);
    outline: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.booking-form-group input:focus, .booking-form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(223, 162, 59, 0.15);
    background-color: var(--white);
}

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

.price-summary-box {
    background-color: rgba(223, 162, 59, 0.08);
    border: 1px dashed rgba(223, 162, 59, 0.3);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.price-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-summary-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(223, 162, 59, 0.2);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-dark);
}

.price-summary-row.total span.total-price {
    color: var(--accent);
}

.submit-booking-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    color: var(--primary-dark);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Ticket/Boarding Pass Styling */
.ticket-wrapper {
    max-width: 750px;
    margin: 80px auto;
    padding: 0 20px;
}

.ticket {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(11, 60, 55, 0.1);
}

.ticket-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.ticket-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: radial-gradient(circle, transparent 70%, var(--primary-dark) 70%);
    background-size: 20px 30px;
    background-position: 0 0;
}

.ticket-brand {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-brand span {
    color: var(--accent);
}

.ticket-status-badge {
    background-color: rgba(223, 162, 59, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.ticket-status-badge.paid {
    background-color: rgba(46, 196, 182, 0.2);
    color: var(--secondary);
    border-color: var(--secondary);
}

.ticket-body {
    padding: 40px;
    background-image: radial-gradient(circle at 0px 100%, transparent 15px, var(--white) 15px),
                      radial-gradient(circle at 100% 100%, transparent 15px, var(--white) 15px);
    background-size: 100% 100%;
}

.ticket-divider {
    height: 1px;
    border-bottom: 2px dashed rgba(11, 60, 55, 0.15);
    margin: 30px 0;
    position: relative;
}

.ticket-divider::before, .ticket-divider::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--light-bg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(11, 60, 55, 0.08);
}

.ticket-divider::before {
    left: -51px;
}

.ticket-divider::after {
    right: -51px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ticket-info-group {
    display: flex;
    flex-direction: column;
}

.ticket-info-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.ticket-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 4px;
}

.ticket-info-value.large {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.ticket-payment-section {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(11, 60, 55, 0.05);
}

.qr-code-wrapper {
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(11, 60, 55, 0.1);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.qr-code-wrapper canvas, .qr-code-wrapper img {
    max-width: 100%;
}

.payment-instructions {
    flex-grow: 1;
}

.payment-instructions h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.payment-instructions p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-details-list {
    font-size: 13px;
    line-height: 1.8;
}

.payment-details-list span {
    font-weight: 700;
    color: var(--text-dark);
}

/* Admin Dashboard CSS layout */
.admin-container {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 30px;
}

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

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

.admin-stat-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 60, 55, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--secondary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-icon.gold {
    background-color: rgba(223, 162, 59, 0.1);
    color: var(--accent);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Admin Table */
.admin-table-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(11, 60, 55, 0.08);
    margin-bottom: 40px;
}

.table-filters {
    padding: 20px;
    border-bottom: 1px solid rgba(11, 60, 55, 0.08);
    display: flex;
    justify-content: space-between;
    background-color: rgba(11, 60, 55, 0.02);
}

.table-search {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(11, 60, 55, 0.15);
    min-width: 300px;
    outline: none;
    font-size: 14px;
}

.table-filter-btns {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(11, 60, 55, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background-color: rgba(11, 60, 55, 0.04);
    padding: 16px 24px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(11, 60, 55, 0.08);
}

.admin-table td {
    padding: 18px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(11, 60, 55, 0.05);
    color: var(--text-dark);
}

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

.admin-table tr:hover td {
    background-color: rgba(11, 60, 55, 0.01);
}

.status-indicator {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-indicator.pending {
    background-color: rgba(223, 162, 59, 0.15);
    color: #c9821a;
}

.status-indicator.paid {
    background-color: rgba(46, 196, 182, 0.15);
    color: #1a968b;
}

.status-indicator.cancelled {
    background-color: rgba(230, 57, 70, 0.15);
    color: #c72c38;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-action-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.admin-action-btn:hover {
    background-color: rgba(11, 60, 55, 0.05);
}

.admin-action-btn.approve:hover {
    color: var(--secondary);
    background-color: rgba(46, 196, 182, 0.1);
}

.admin-action-btn.delete:hover {
    color: #e63946;
    background-color: rgba(230, 57, 70, 0.1);
}

/* Revenue Chart (Pure CSS wrapper) */
.chart-container {
    background-color: var(--white);
    border: 1px solid rgba(11, 60, 55, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 250px;
    padding-top: 20px;
    border-bottom: 2px solid rgba(11, 60, 55, 0.1);
    position: relative;
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    justify-content: flex-end;
    gap: 10px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--accent), var(--accent-light));
    box-shadow: var(--shadow-glow);
}

.chart-bar-val {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

.chart-bar-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Testimonials, Blogs & Footer styles */
.reviews-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.reviews-section .section-title {
    color: var(--text-light);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.review-card-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.review-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-style: italic;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--accent);
}

.review-author-name {
    font-weight: 700;
    font-size: 16px;
}

.review-author-job {
    font-size: 13px;
    color: var(--accent);
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Blog styles */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(11, 60, 55, 0.05);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

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

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

/* Footer Section */
footer {
    background-color: #020f0d;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    transition: var(--transition-fast);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    outline: none;
    font-size: 14px;
}

.newsletter-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 14px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive queries */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .tours-grid, .reviews-slider, .blogs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 36px; }
    .search-widget { padding: 15px; }
    .detail-body { grid-template-columns: 1fr; }
    .tours-grid, .reviews-slider, .blogs-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .admin-stats-grid { grid-template-columns: 1fr; }
    .ticket-grid { grid-template-columns: 1fr; }
    .ticket-payment-section { flex-direction: column; text-align: center; }
}
