/* ============================================
   Iksafar Travel - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --primary: #0b2a2f;
    --primary-light: #1a3d42;
    --primary-dark: #06181a;
    --secondary: #F05562;
    --secondary-light: #f5c85a;
    --secondary-dark: #d4a030;
    --accent: #e85d3a;
    --text-dark: #1e2b2f;
    --text-light: #f5eee6;
    --text-muted: #6b7a7a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --bg-dark: #0b2a2f;
    --border-color: #e5ddd4;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 30px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.highlight {
    color: var(--secondary);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 184, 58, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-book-now {
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-book-now:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 184, 58, 0.3);
}

/* ---------- Header ---------- */
.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-sub {
    color: var(--secondary);
    font-weight: 300;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu > li > a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 24px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.nav-actions button:hover {
    background: var(--bg-light);
    color: var(--secondary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

/* Search Bar */
.search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.search-bar.active {
    max-height: 500px;
    padding: 20px 0;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.search-container:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(243, 184, 58, 0.15);
}

.search-container i {
    color: var(--text-muted);
}

.search-container input {
    flex: 1;
    border: none;
    background: none;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
}

.search-results {
    margin-top: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.search-results .search-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.search-list {
    display: grid;
    gap: 8px;
}

.search-list li a {
    display: block;
    padding: 12px 16px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.search-list li a:hover {
    border-color: var(--border-color);
    transform: translateX(4px);
}

.search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.search-name {
    font-weight: 500;
    flex: 1;
}

.search-region {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 2px 12px;
    background: var(--bg-light);
    border-radius: 30px;
}

.search-price {
    font-weight: 600;
    color: var(--secondary-dark);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 42, 47, 0.85) 0%, rgba(11, 42, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Swiper Custom */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--primary);
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
    font-size: 1.2rem;
}

.hero-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* ---------- Quick Info ---------- */
.quick-info {
    background: var(--bg-white);
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.info-item:hover {
    background: var(--bg-light);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 184, 58, 0.1);
    border-radius: 50%;
}

.info-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.info-item a,
.info-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.info-item a:hover {
    color: var(--secondary);
}

/* ---------- Packages Grid ---------- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-region {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 64px;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.wishlist-btn i {
    font-size: 1.1rem;
}

.wishlist-btn .fas.fa-heart {
    color: #e85d3a;
}

.package-info {
    padding: 24px;
}

.package-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-meta i {
    margin-right: 4px;
}

.package-meta .rating {
    color: var(--secondary-dark);
}

.package-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.package-footer .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.package-footer .btn-view {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.package-footer .btn-view:hover {
    background: var(--secondary);
    color: var(--primary);
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Destinations ---------- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
}

.destination-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.destination-overlay p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ---------- Why Choose ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(243, 184, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-header span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
    margin-top: 40px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    color: var(--text-light);
    font-size: 2.4rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    color: var(--text-light);
    font-size: 1.5rem;
}

.footer-logo h3 span {
    color: var(--secondary);
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    width: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(243, 184, 58, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(243, 184, 58, 0.5);
}

/* ---------- Toast Notification ---------- */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary);
    color: var(--text-light);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 9999;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ---------- Loading Skeleton ---------- */
.skeleton {
    animation: skeleton-loading 1s infinite alternate;
}

@keyframes skeleton-loading {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ---------- Page Banner ---------- */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0 50px;
    color: var(--text-light);
    margin-top: -1px;
}

.page-banner .banner-content {
    text-align: center;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 16px;
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.banner-breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.banner-breadcrumb a:hover {
    color: var(--secondary);
}

.banner-breadcrumb .active {
    color: var(--secondary);
}

/* ---------- Packages Page ---------- */
.packages-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.packages-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-sidebar {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.filter-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-reset {
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.filter-reset:hover {
    color: var(--secondary-dark);
}

.filter-group {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.filter-group label:hover {
    color: var(--secondary);
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    accent-color: var(--secondary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Price Range */
.price-range {
    padding: 8px 0;
}

.price-range input[type="range"] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: var(--border-color);
    border-radius: 4px;
    outline: none;
    margin: 8px 0;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Packages Toolbar */
.packages-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.packages-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.packages-search:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(243, 184, 58, 0.15);
}

.packages-search i {
    color: var(--text-muted);
}

.packages-search input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
}

.packages-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.packages-sort label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.packages-sort select {
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.packages-sort select:focus {
    border-color: var(--secondary);
}

.packages-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    font-size: 1.4rem;
    margin: 16px 0 8px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ---------- Package Detail ---------- */
.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.detail-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.detail-breadcrumb a:hover {
    color: var(--secondary);
}

.detail-breadcrumb span {
    margin: 0 6px;
}

.detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 32px;
}

.detail-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-region {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-info h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.detail-meta .rating {
    color: var(--secondary-dark);
}

.detail-meta strong {
    color: var(--text-dark);
}

.detail-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-tags .tag {
    background: var(--bg-light);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.detail-price .price {
    font-size: 2rem;
}

.detail-price .price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Tabs */
.detail-tabs {
    margin-top: 32px;
}

.tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    overflow-x: auto;
}

.tab-btn {
    padding: 10px 24px;
    border: none;
    background: none;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-content {
    display: none;
    padding: 8px 0;
}

.tab-content.active {
    display: block;
}

/* Itinerary */
.itinerary-item {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-day {
    min-width: 60px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.85rem;
}

.itinerary-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.itinerary-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Detail Lists */
.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li i {
    margin-top: 3px;
    font-size: 1rem;
}

.detail-list li .fa-check-circle {
    color: #22c55e;
}

.detail-list li .fa-times-circle {
    color: #ef4444;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.date-badge {
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.date-badge i {
    color: var(--secondary);
    margin-right: 6px;
}

/* Related Packages */
.related-packages {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.related-packages h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

/* Quick Booking */
.quick-booking {
    position: sticky;
    top: 100px;
}

.quick-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 2px solid var(--secondary);
    margin: 16px 0;
    font-weight: 500;
}

.quick-total .price {
    font-size: 1.2rem;
}

.quick-contact {
    text-align: center;
}

/* Share Box */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0a66c2; }

/* ---------- Booking Page ---------- */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-size: 2.6rem;
}

.booking-progress {
    max-width: 600px;
    margin: 0 auto 40px;
}

.step-indicator {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.step-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.step-dot {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: var(--border-color);
    transition: var(--transition);
}

.step-dot.active {
    background: var(--secondary);
}

.step-dot.completed {
    background: var(--secondary);
    opacity: 0.5;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

.booking-step {
    display: none;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-step h2 i {
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 16px;
}

.step-next,
.step-prev {
    padding: 10px 28px;
}

/* Booking Summary */
.booking-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
}

.booking-summary h4 {
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 12px;
    border-top: 2px solid var(--secondary);
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--secondary);
}

.payment-option input[type="radio"] {
    accent-color: var(--secondary);
}

.payment-option i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.payment-details {
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

/* Booking Total */
.booking-total {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

.total-amount {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-amount .price {
    font-size: 1.6rem;
}

.total-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.terms-check {
    margin: 20px 0;
}

/* ---------- Contact Page ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info-side > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(243, 184, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-item a,
.contact-item p {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.contact-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

/* Map */
.map-section {
    padding: 40px 0 60px;
}

.map-wrapper {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Success */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success h3 {
    margin: 16px 0 8px;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .packages-layout {
        grid-template-columns: 1fr;
    }
    
    .packages-sidebar {
        position: static;
    }
    
    .filter-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .filter-group:last-child {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }
    
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }
    
    .quick-booking {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-hover);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
        gap: 16px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 8px 0 8px 20px;
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .nav-actions .btn-book-now {
        display: none;
    }
    
    /* Hero */
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hero-section .swiper-button-next,
    .hero-section .swiper-button-prev {
        display: none;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Packages */
    .package-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .packages-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .packages-sort {
        justify-content: space-between;
    }
    
    .filter-sidebar {
        grid-template-columns: 1fr 1fr;
    }
    
    .detail-header {
        grid-template-columns: 1fr;
    }
    
    .detail-image {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-step {
        padding: 20px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    /* CTA */
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        grid-template-columns: 1fr;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    .step-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    .dates-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 1.6rem;
    }
    
    .booking-header h1 {
        font-size: 1.8rem;
    }
}
/* ============================================
   Destinations Page - Additional Styles
   ============================================ */

/* ---------- Region Filters ---------- */
.region-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.region-tab {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.region-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.region-tab.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* ---------- Destinations Grid Large ---------- */
.destinations-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card-large {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.destination-card-large:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.dest-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card-large:hover .dest-image img {
    transform: scale(1.05);
}

.dest-region-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dest-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.destination-card-large:hover .dest-hover {
    opacity: 1;
}

.btn-view-dest {
    padding: 12px 28px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(20px);
}

.destination-card-large:hover .btn-view-dest {
    transform: translateY(0);
}

.btn-view-dest:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.dest-info {
    padding: 24px;
}

.dest-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.dest-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.dest-attractions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.attraction-tag {
    background: var(--bg-light);
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dest-packages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.package-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-view-packages {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
}

.btn-view-packages:hover {
    color: var(--secondary-dark);
}

.btn-view-packages i {
    transition: var(--transition);
}

.btn-view-packages:hover i {
    transform: translateX(4px);
}

/* ---------- Regions Grid ---------- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.region-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.region-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.region-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.region-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.region-count {
    display: inline-block;
    background: var(--bg-light);
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Travel Features ---------- */
.travel-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.travel-feature {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.travel-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.travel-feature .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(243, 184, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.travel-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.travel-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Loading Spinner ---------- */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .destinations-grid-large {
        grid-template-columns: 1fr;
    }
    
    .region-tabs {
        gap: 8px;
    }
    
    .region-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .travel-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .region-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 0;
    }
    
    .region-tab {
        white-space: nowrap;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .travel-features {
        grid-template-columns: 1fr;
    }
    
    .dest-packages {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ============================================
   Destination Detail - Additional Styles
   ============================================ */

/* ---------- Destination About ---------- */
.dest-about {
    margin: 40px 0 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.dest-about h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.dest-about p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ---------- Destination Attractions ---------- */
.dest-attractions-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 20px;
}

.dest-attractions-detail .attraction-tag {
    background: var(--bg-light);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* ---------- Dest Packages Section ---------- */
.dest-packages-section {
    margin: 40px 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.dest-packages-section h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

/* ---------- Quick Info Card ---------- */
.quick-info-card {
    position: sticky;
    top: 100px;
}

.quick-info-list {
    list-style: none;
    padding: 0;
}

.quick-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list li span {
    color: var(--text-muted);
}

.quick-info-list li strong {
    color: var(--text-dark);
}

/* ---------- Why Visit Card ---------- */
.why-visit-card ul {
    list-style: none;
    padding: 0;
}

.why-visit-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
}

.why-visit-card ul li i {
    color: var(--secondary);
}

/* ---------- Destination Card Overlay ---------- */
.destination-card .btn-view-dest {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.destination-card .btn-view-dest:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .dest-attractions-detail {
        gap: 6px;
    }
    
    .dest-attractions-detail .attraction-tag {
        font-size: 0.75rem;
        padding: 2px 12px;
    }
    
    .quick-info-card {
        position: static;
    }
}

/* ============================================
   Blog Page - Additional Styles
   ============================================ */

/* ---------- Blog Toolbar ---------- */
.blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.blog-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.blog-search:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(243, 184, 58, 0.15);
}

.blog-search i {
    color: var(--text-muted);
}

.blog-search input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.category-btn {
    padding: 6px 16px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.category-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* ---------- Blog Grid ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.btn-read-more {
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--secondary-dark);
}

.btn-read-more i {
    transition: var(--transition);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.blog-tags {
    display: flex;
    gap: 6px;
}

.blog-tags .tag {
    background: var(--bg-light);
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ---------- Load More ---------- */
.load-more-blog {
    padding: 12px 36px;
}

/* ---------- Newsletter Section ---------- */
.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(243, 184, 58, 0.15);
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .blog-toolbar {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .blog-search {
        width: 100%;
    }
    
    .blog-categories {
        gap: 6px;
    }
    
    .category-btn {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-content {
        padding: 18px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-tags {
        justify-content: flex-start;
    }
}

/* ============================================
   Blog Detail - Additional Styles
   ============================================ */

/* ---------- Blog Header ---------- */
.blog-header {
    margin-bottom: 32px;
}

.blog-category-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.blog-meta-detail i {
    margin-right: 6px;
}

/* ---------- Featured Image ---------- */
.blog-featured-image {
    margin: 24px 0 32px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* ---------- Blog Content ---------- */
.blog-content-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-content-detail p {
    margin-bottom: 16px;
}

.blog-content-detail h3 {
    font-size: 1.4rem;
    margin: 28px 0 12px;
}

.blog-content-detail ul {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.blog-content-detail ul li {
    margin-bottom: 8px;
}

.blog-content-detail blockquote {
    border-left: 4px solid var(--secondary);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-style: italic;
    color: var(--text-muted);
}

/* ---------- Blog Tags ---------- */
.blog-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.blog-tags-detail .tag {
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.blog-tags-detail .tag:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ---------- Author Box ---------- */
.blog-author-box {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin: 32px 0;
}

.blog-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ---------- Comments Section ---------- */
.comments-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.comments-section h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

/* ---------- Sidebar Author ---------- */
.author-sidebar-content {
    text-align: center;
}

.author-sidebar-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
}

.author-sidebar-content h4 {
    margin-bottom: 4px;
}

.author-sidebar-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- Recent Posts ---------- */
.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-item div {
    flex: 1;
}

.recent-post-item a {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2px;
    transition: var(--transition);
}

.recent-post-item a:hover {
    color: var(--secondary);
}

.recent-post-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Categories Sidebar ---------- */
.categories-sidebar ul {
    list-style: none;
    padding: 0;
}

.categories-sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.categories-sidebar ul li:last-child {
    border-bottom: none;
}

.categories-sidebar ul a {
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.categories-sidebar ul a:hover {
    color: var(--secondary);
}

.category-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-meta-detail {
        gap: 12px;
        font-size: 0.85rem;
    }
    
    .blog-content-detail {
        font-size: 1rem;
    }
    
    .blog-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .blog-author-box img {
        width: 64px;
        height: 64px;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 1.4rem;
    }
    
    .blog-featured-image img {
        max-height: 250px;
    }
    
    .blog-content-detail h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   Gallery Page - Additional Styles
   ============================================ */

/* ---------- Filter Tabs ---------- */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-tab {
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-tab.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-view-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.gallery-item:hover .gallery-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.gallery-view-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.lightbox-caption span {
    display: block;
    color: var(--text-light);
}

.lightbox-caption #lightbox-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-caption #lightbox-category {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ---------- Gallery Stats ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .filter-tabs {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 4px 0;
        justify-content: flex-start;
    }
    
    .filter-tab {
        font-size: 0.8rem;
        padding: 6px 14px;
        white-space: nowrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .lightbox {
        padding: 16px;
    }
    
    .lightbox-image {
        max-width: 100%;
        max-height: 70vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
    
    .lightbox-caption {
        padding: 8px 16px;
        bottom: 16px;
    }
    
    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-info h4 {
        font-size: 0.9rem;
    }
    
    .gallery-category {
        font-size: 0.65rem;
        padding: 2px 10px;
    }
    
    .gallery-view-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        bottom: 12px;
        right: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
/* ============================================
   Offers Page - Additional Styles
   ============================================ */

/* ---------- Offers Banner ---------- */
.offers-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d42 100%);
    position: relative;
    overflow: hidden;
}

.offers-banner::before {
    content: '🔥';
    position: absolute;
    right: 10%;
    top: 20%;
    font-size: 8rem;
    opacity: 0.1;
}

.banner-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ---------- Offer Stats ---------- */
.offer-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.offer-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offer-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.offer-stat-item .stat-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 184, 58, 0.1);
    border-radius: 50%;
}

.offer-stat-item .stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.offer-stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Offer Grids ---------- */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.offers-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ---------- Offer Card ---------- */
.offer-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.offer-card.featured {
    border-color: var(--secondary);
    border-width: 2px;
}

.offer-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary), transparent, var(--secondary));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.offer-badge.seasonal { background: #e85d3a; color: white; }
.offer-badge.festival { background: #F05562; color: var(--primary); }
.offer-badge.early-bird { background: #1a5d5d; color: white; }
.offer-badge.group { background: #4a148c; color: white; }

.offer-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.offer-discount span {
    display: block;
}

.offer-content {
    padding: 20px 24px 24px;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.offer-region {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.offer-timer {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
}

.offer-timer i {
    margin-right: 4px;
}

.offer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.offer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.offer-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.offer-savings {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.offer-actions .btn-primary {
    flex: 1;
    justify-content: center;
}

.offer-actions .offer-share {
    padding: 10px 14px;
    border-radius: 50px;
}

/* ---------- Offer Filters ---------- */
.offer-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.offer-filter {
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.offer-filter:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.offer-filter.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.offer-count {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Offer Terms ---------- */
.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.terms-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-wrapper h3 i {
    color: var(--secondary);
}

.terms-wrapper ul {
    list-style: none;
    padding: 0;
}

.terms-wrapper ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-wrapper ul li::before {
    content: '•';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-wrapper ul li:last-child {
    border-bottom: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .offer-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid,
    .offers-grid-large {
        grid-template-columns: 1fr;
    }
    
    .offer-filters {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .offer-filter {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .offer-count {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .offer-content h3 {
        font-size: 1.1rem;
    }
    
    .offer-price {
        font-size: 1.3rem;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offers-banner::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .offer-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .offer-stat-item {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
    }
    
    .offer-stat-item .stat-icon {
        margin-bottom: 4px;
    }
    
    .offer-actions {
        flex-direction: column;
    }
    
    .offer-actions .btn-primary {
        width: 100%;
    }
    
    .terms-wrapper {
        padding: 20px;
    }
}