/* ========================================
   Darül Erkam Tur - Ana Stil Dosyası
   ======================================== */

:root {
    --primary: #006400;
    --primary-dark: #006400;
    --primary-light: #006400;
    --secondary: #c8a951;
    --secondary-dark: #a88b3d;
    --secondary-light: #e0c56e;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --text: #333333;
    --text-light: #6c757d;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* ========== NAVBAR ========== */
.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition);
}

.navbar-main .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 8px 0;
}

.navbar-main .navbar-brand .site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-main .navbar-brand span {
    color: var(--secondary);
}

.navbar-main .nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 20px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--primary);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 60%;
}

.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    margin-right: 20px;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar i {
    margin-right: 5px;
    color: var(--secondary-light);
}

/* ========== MOBILE/DESKTOP TOGGLE ========== */
.mobile-menu-toggle {
    display: none;
}

.desktop-nav {
    display: flex !important;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    .desktop-nav {
        display: none !important;
    }
}

/* ========== HERO SLIDER ========== */
/* RTL: Bootstrap carousel aktif slide'i sağa kaydırıyor — sıfırla */
#heroSlider .carousel-inner { overflow: hidden; }
#heroSlider .carousel-item {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
#heroSlider .carousel-item.active {
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
}
#heroSlider .carousel-item { transition: transform 0.8s ease-in-out; }
#heroSlider .carousel-indicators { z-index: 5; margin-bottom: 30px; }
#heroSlider .carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); background: transparent; opacity: 0.7; transition: all 0.3s; }
#heroSlider .carousel-indicators button.active { background: var(--white); opacity: 1; width: 30px; border-radius: 6px; }
#heroSlider .carousel-control-prev, #heroSlider .carousel-control-next { width: 50px; height: 50px; top: 50%; transform: translateY(-50%); bottom: auto; background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); border-radius: 50%; margin: 0 15px; opacity: 0.7; transition: all 0.3s; }
#heroSlider .carousel-control-prev:hover, #heroSlider .carousel-control-next:hover { opacity: 1; background: rgba(255,255,255,0.25); }

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 600px;
    padding: 60px 0 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,154.7C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

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

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-pattern {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-geometric {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.1);
    transform: rotate(45deg);
    top: 10%;
    right: 15%;
}

/* ========== SEARCH BOX / ADVANCED FILTER ========== */
.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
    margin-bottom: 6px;
    white-space: nowrap;
}

.search-box .form-label i {
    color: var(--primary);
    margin-right: 4px;
}

.search-box .form-control,
.search-box .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: var(--transition);
    background-color: #fafbfc;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
    background-color: #fff;
}

.btn-filter-search {
background: linear-gradient(135deg, #006400, #004d00);    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-filter-search:hover {
    background: linear-gradient(135deg, #00796b, #004d40);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,150,136,0.35);
}

/* Tour Filter Bar (turlar page) */
.tour-filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.tour-filter-bar .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
    margin-bottom: 6px;
    white-space: nowrap;
}

.tour-filter-bar .form-label i {
    color: var(--primary);
    margin-right: 4px;
}

.tour-filter-bar .form-control,
.tour-filter-bar .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: var(--transition);
    background-color: #fafbfc;
}

.tour-filter-bar .form-control:focus,
.tour-filter-bar .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
    background-color: #fff;
}

.tour-filter-bar .btn-filter-search {
    padding: 10px 28px;
    height: 100%;
    min-height: 42px;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26,107,60,0.3);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200,169,81,0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-custom.btn-sm {
    padding: 6px 14px;
    font-size: .82rem;
}

.btn-white-custom {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-custom:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 0;
}

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

.section-gray {
    background: var(--light);
}

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

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

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

.section-title .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========== TOUR CARDS ========== */
.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.tour-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-card .card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 1.2;
}
.tour-card .card-price .price-main {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}
.tour-card .card-price .price-tl {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.tour-card .card-price .price-pp {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: lowercase;
}

.tour-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card .card-company {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.tour-card .card-title a {
    color: inherit;
}

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

.tour-card .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.tour-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-card .card-meta i {
    color: var(--primary);
    font-size: 0.9rem;
}

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

.tour-card .quota-info {
    font-size: 0.82rem;
    color: var(--text-light);
}

.tour-card .quota-bar {
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.tour-card .quota-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* ========== COMPANY CARDS ========== */
.company-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.company-card .company-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 6px;
}

.company-card .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-card .company-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.company-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.company-card .company-city {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.company-card .company-tours {
    display: inline-block;
    background: var(--light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* ========== CATEGORY CARDS ========== */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--primary);
    color: var(--white);
}

.category-card:hover i,
.category-card:hover h5,
.category-card:hover p {
    color: var(--white) !important;
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.category-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
    transition: var(--transition);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    transition: var(--transition);
}

/* ========== BLOG CARDS ========== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

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

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

.blog-card .blog-body {
    padding: 20px;
}

.blog-card .blog-category {
    display: inline-block;
    background: rgba(26,107,60,0.1);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.blog-card .blog-title a {
    color: inherit;
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-card .blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== REVIEWS ========== */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    height: 100%;
}

.review-card .review-stars {
    color: var(--secondary);
    margin-bottom: 12px;
}

.review-card .review-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-card .review-author {
    font-weight: 700;
    color: var(--dark);
}

.review-card .review-tour {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ========== DETAIL PAGE ========== */
.detail-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0 30px;
    color: var(--white);
}

.detail-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.detail-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.detail-hero .breadcrumb-item.active {
    color: var(--white);
}

.detail-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.detail-content {
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.detail-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 25px;
}

.detail-gallery {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.detail-gallery i {
    font-size: 4rem;
    color: var(--text-muted);
}

/* ========== TOUR GALLERY WITH THUMBNAILS ========== */
.tour-gallery {
    position: relative;
}

.tour-gallery .carousel {
    position: relative;
}

.gallery-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.15) transparent;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 0.85;
    border-color: rgba(0,0,0,0.2);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== LIGHTBOX ========== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.price-table {
    width: 100%;
}

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

.price-table td {
    padding: 12px 0;
}

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

.price-table .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
}

.date-card {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.date-card:hover,
.date-card.selected {
    border-color: var(--primary);
    background: rgba(26,107,60,0.05);
}

.date-card .date-info h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.date-card .date-quota {
    text-align: right;
}

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

/* ========== SIDEBAR ========== */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer a {
    color: rgba(255,255,255,0.6);
    display: block;
    padding: 4px 0;
    transition: var(--transition);
}

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

.footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    list-style: none;
}

.footer .footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
    padding: 0;
}

.footer .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    padding-left: 0;
}

/* ========== FORMS ========== */
.form-custom .form-control,
.form-custom .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}

.form-custom .form-control:focus,
.form-custom .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}

.form-custom .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ========== PAGINATION ========== */
.pagination-custom .page-link {
    color: var(--primary);
    border: 2px solid var(--light-gray);
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-custom .page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ========== STATS ========== */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

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

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== LOADING ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== BREADCRUMB ========== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 30px 0;
    color: var(--white);
}

.breadcrumb-section h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.breadcrumb-section .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ========== ALERTS ========== */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    padding: 15px 20px;
}

/* ========== BADGE ========== */
.badge-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.badge-completed { background: #d1ecf1; color: #0c5460; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0 80px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-pattern,
    .hero-geometric {
        display: none;
    }
    .section {
        padding: 50px 0;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .navbar-main .nav-link {
        padding: 10px 18px !important;
    }
}

@media (max-width: 767.98px) {
    .navbar-main .navbar-brand .site-logo {
        height: 38px;
    }
    .hero-section {
        min-height: auto;
        padding: 35px 0 70px;
    }
    .hero-section h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    .hero-section .d-flex.gap-3 {
        gap: 10px !important;
    }
    .hero-section .btn-white-custom,
    .hero-section .btn-outline-custom,
    .hero-section .btn-secondary-custom {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .search-box {
        margin-top: -35px;
        padding: 18px 14px;
        border-radius: 14px;
    }
    .search-box .form-label {
        font-size: 0.65rem;
        margin-bottom: 3px;
    }
    .search-box .form-control,
    .search-box .form-select {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    .btn-filter-search {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .tour-filter-bar {
        padding: 16px 14px;
    }
    .tour-filter-bar .form-label {
        font-size: 0.65rem;
        margin-bottom: 3px;
    }
    .tour-filter-bar .form-control,
    .tour-filter-bar .form-select {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    .section {
        padding: 40px 0;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .section-title p {
        font-size: 0.95rem;
    }
    .tour-card .card-img-wrapper {
        height: 180px;
    }
    .tour-card .card-price .price-main {
        font-size: 0.95rem;
    }
    .detail-gallery {
        height: 250px;
    }
    .tour-gallery .carousel-item img {
        height: 260px !important;
    }
    .gallery-thumb {
        width: 60px;
        height: 42px;
    }
    .gallery-thumbnails {
        gap: 6px;
        padding: 8px 4px;
    }
    .lightbox-image {
        max-width: 95vw;
        max-height: 80vh;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .detail-card {
        padding: 20px;
    }
    .footer {
        padding: 40px 0 0;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .breadcrumb-section {
        padding: 20px 0;
    }
    .breadcrumb-section h1 {
        font-size: 1.4rem;
    }
    .company-card {
        padding: 20px;
    }
    .category-card {
        padding: 20px 15px;
    }
    .category-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 30px 0 65px;
    }
    .hero-section h1 {
        font-size: 1.4rem;
    }
    .hero-section p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 8px !important;
    }
    .hero-section .btn-white-custom,
    .hero-section .btn-outline-custom,
    .hero-section .btn-secondary-custom {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .search-box {
        margin-top: -30px;
        padding: 14px 10px;
    }
    .search-box .form-label {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    .search-box .form-control,
    .search-box .form-select {
        padding: 7px 8px;
        font-size: 0.78rem;
    }
    .btn-filter-search {
        padding: 7px 12px;
        font-size: 0.78rem;
    }
    .tour-filter-bar {
        padding: 14px 10px;
        border-radius: 12px;
    }
    .tour-filter-bar .form-label {
        font-size: 0.6rem;
    }
    .tour-filter-bar .form-control,
    .tour-filter-bar .form-select {
        padding: 7px 8px;
        font-size: 0.78rem;
    }
    .navbar-main .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-main .navbar-brand .site-logo {
        height: 36px;
    }
}

/* ========== MOBILE OFF-CANVAS MENU ========== */
.mobile-offcanvas {
    width: 300px !important;
    border-right: none;
    position: fixed !important;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1045;
    visibility: hidden;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-offcanvas.show,
.mobile-offcanvas.showing {
    visibility: visible;
    transform: translateX(0);
}

.mobile-offcanvas.hiding {
    transform: translateX(-100%);
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

.mobile-offcanvas .offcanvas-header {
    background: var(--primary-dark);
    padding: 16px 20px;
}

.mobile-offcanvas .offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.mobile-offcanvas .offcanvas-brand {
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.mobile-offcanvas .offcanvas-brand i {
    color: var(--secondary-light);
}

.mobile-menu-profile {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 16px 20px;
}

.mobile-profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white) !important;
    text-decoration: none;
}

.mobile-profile-link strong {
    display: block;
    font-size: 0.9rem;
}

.mobile-profile-link small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.mobile-profile-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mobile-profile-link .fa-chevron-right {
    font-size: 0.75rem;
    opacity: 0.6;
}

.mobile-nav-links {
    padding: 8px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: rgba(26,107,60,0.06);
    color: var(--primary) !important;
}

.mobile-nav-item i {
    width: 22px;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

.mobile-nav-item.active i {
    color: var(--primary);
}

.mobile-menu-section {
    padding: 16px 20px;
    border-top: 1px solid var(--light-gray);
}

.mobile-menu-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
}

.mobile-lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background: var(--light);
    color: var(--text) !important;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.mobile-lang-btn.active {
    background: rgba(26,107,60,0.1);
    color: var(--primary) !important;
    border-color: var(--primary);
}

.mobile-contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light) !important;
    font-size: 0.88rem;
}

.mobile-contact-links a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-menu-cta {
    padding: 16px 20px;
    border-top: 1px solid var(--light-gray);
}

/* ========== LEGAL POPUP ========== */
#legalPopupModal .legal-content h2 { font-size: 1.3rem; font-weight: 700; color: #006400; margin-bottom: .75rem; margin-top: 0; }
#legalPopupModal .legal-content h3 { font-size: 1.05rem; font-weight: 600; color: #333; margin-top: 1.25rem; margin-bottom: .5rem; }
#legalPopupModal .legal-content p { line-height: 1.7; color: #444; margin-bottom: .6rem; font-size: .9rem; }
#legalPopupModal .legal-content ul { padding-left: 1.25rem; margin-bottom: .75rem; }
#legalPopupModal .legal-content ul li { line-height: 1.7; color: #444; margin-bottom: .2rem; font-size: .9rem; }
#legalPopupModal .legal-content table { width: 100%; border-collapse: collapse; margin: .75rem 0; font-size: .85rem; }
#legalPopupModal .legal-content table th,
#legalPopupModal .legal-content table td { border: 1px solid #dee2e6; padding: .4rem .6rem; }
#legalPopupModal .legal-content table th { background: #f8f9fa; font-weight: 600; }
#legalPopupModal .legal-content strong { color: #222; }
.legal-popup-link { color: #006400; text-decoration: underline; font-weight: 600; cursor: pointer; }
.legal-popup-link:hover { color: #006400; }

@media (max-width: 576px) {
    #legalPopupModal .modal-dialog { margin: .5rem; max-height: 95vh; }
    #legalPopupModal .modal-content { border-radius: 12px; max-height: 95vh; }
    #legalPopupModal .modal-body { padding: 16px; max-height: 70vh; }
    #legalPopupModal .legal-content h2 { font-size: 1.1rem; }
    #legalPopupModal .legal-content h3 { font-size: .95rem; }
    #legalPopupModal .legal-content p,
    #legalPopupModal .legal-content ul li { font-size: .85rem; }
}

/* ========== BEST DEALS FAB ========== */
.best-deals-fab {
    position: fixed;
    bottom: 210px;
    right: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #006400, #2e7d32);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26,107,60,.4);
    transition: all .3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
}
.best-deals-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26,107,60,.5);
    color: #fff;
    text-decoration: none;
}
.best-deals-fab-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}
.best-deals-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(26,107,60,.3);
    animation: bestDealsPulse 2s infinite;
    pointer-events: none;
}
@keyframes bestDealsPulse {
    0% { transform: scale(1); opacity: .7; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .best-deals-fab {
        bottom: 190px;
        right: 12px;
        padding: 10px 14px;
        font-size: .8rem;
        border-radius: 50px;
    }
    .best-deals-fab-label { display: none !important; }
    .best-deals-fab-icon { width: 24px; height: 24px; font-size: 1rem; }
}
@media (max-width: 991.98px) {
    .best-deals-fab { bottom: 190px; }
}

/* ========== BEST DEALS PAGE ========== */
.best-deals-hero {
    background: linear-gradient(135deg, #f0faf3, #e8f5e9);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: 1px solid #c8e6c9;
}
.best-deals-filters, .best-deals-sort {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.filter-label {
    font-weight: 600;
    color: #555;
    font-size: .85rem;
    white-space: nowrap;
}
.bd-filter-btn, .bd-city-btn, .bd-sort-btn {
    background: #f5f5f5;
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 500;
    transition: all .2s;
}
.bd-filter-btn:hover, .bd-city-btn:hover, .bd-sort-btn:hover {
    background: #e8f5e9;
    color: #006400;
    border-color: #006400;
}
.bd-filter-btn.active, .bd-city-btn.active, .bd-sort-btn.active {
    background: #006400;
    color: #fff;
    border-color: #006400;
}
.bd-tour-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: all .3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.bd-tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.bd-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: #006400;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.bd-card-img-col {
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
}
.bd-card-body-col {
    flex: 1;
    min-width: 0;
}
.bd-card-price-col {
    width: 220px;
    min-width: 220px;
    flex-shrink: 0;
}
.bd-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}
.bd-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 160px;
    transition: transform .3s;
}
.bd-tour-card:hover .bd-img-wrap img {
    transform: scale(1.05);
}
.bd-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
}
.bd-discount-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #e53935;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}
.bd-tour-body {
    padding: 1rem 1.25rem;
}
.bd-tour-company {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: .8rem;
}
.bd-tour-company img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.bd-tour-company a {
    color: #006400;
    font-weight: 600;
    text-decoration: none;
}
.bd-tour-company a:hover { text-decoration: underline; }
.bd-tour-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.bd-tour-title a {
    color: #222;
    text-decoration: none;
}
.bd-tour-title a:hover { color: #006400; }
.bd-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: .8rem;
    color: #777;
}
.bd-tour-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.bd-tour-meta i { font-size: .75rem; }
.bd-tour-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fbe7, #f0f4c3);
    border-left: 1px solid #e8e8e8;
}
.bd-old-price {
    font-size: .85rem;
    color: #999;
}
.bd-current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #006400;
    line-height: 1.2;
}
.bd-price-tl {
    font-size: .8rem;
    color: #777;
    margin-top: 2px;
}
.bd-price-pp {
    font-size: .7rem;
    color: #999;
    margin-top: 2px;
}
.best-deals-seo-text p {
    font-size: .9rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .best-deals-hero { padding: 1rem; }
    .best-deals-hero h2 { font-size: 1.15rem; }
    .bd-tour-card .d-flex.flex-md-row { flex-direction: column !important; }
    .bd-card-img-col { width: 100%; min-width: 100%; }
    .bd-card-body-col { width: 100%; }
    .bd-card-price-col { width: 100%; min-width: 100%; }
    .bd-img-wrap { min-height: 180px; height: 180px; }
    .bd-img-wrap img { min-height: 180px; height: 180px; }
    .bd-rank { top: 8px; left: 8px; width: 30px; height: 30px; font-size: .75rem; }
    .bd-tour-body { padding: .75rem 1rem; }
    .bd-tour-title { font-size: .95rem; }
    .bd-tour-price-box {
        border-left: none;
        border-top: 1px solid #e8e8e8;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 12px;
        padding: .75rem 1rem;
        justify-content: space-between;
    }
    .bd-current-price { font-size: 1.3rem; }
    .bd-tour-price-box .btn { width: auto !important; }
    .bd-filter-btn, .bd-city-btn, .bd-sort-btn {
        padding: 3px 10px;
        font-size: .75rem;
    }
}

/* ========== PRICE ALERT FAB ========== */
.price-alert-fab {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(229,57,53,.4);
    transition: all .3s ease;
    font-weight: 600;
    font-size: .9rem;
}
.price-alert-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229,57,53,.5);
}
.price-alert-fab-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
}
.price-alert-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(229,57,53,.3);
    animation: pricePulse 2s infinite;
    pointer-events: none;
}
@keyframes pricePulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.price-alert-panel {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 1051;
    width: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.2);
    animation: priceSlideUp .3s ease;
}
@keyframes priceSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.price-alert-panel-header {
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-alert-panel-header h6 { margin: 0; font-size: .95rem; }
.price-alert-panel-body {
    background: #fff;
    padding: 18px;
}
.price-alert-panel-body .input-group { border-radius: 30px; overflow: hidden; }
.price-alert-panel-body .form-control {
    border: 2px solid #e0e0e0;
    border-right: 0;
    padding: 10px 16px;
    font-size: .9rem;
    border-radius: 30px 0 0 30px !important;
}
.price-alert-panel-body .form-control:focus { border-color: #e53935; box-shadow: none; }
.btn-price-alert-submit {
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #fff;
    border: 0;
    padding: 10px 18px;
    border-radius: 0 30px 30px 0 !important;
    font-size: 1rem;
    transition: background .2s;
}
.btn-price-alert-submit:hover { background: #c62828; color: #fff; }

@media (max-width: 768px) {
    .price-alert-fab {
        bottom: 130px;
        right: 12px;
        padding: 10px 14px;
        font-size: .8rem;
        border-radius: 50px;
    }
    .price-alert-fab-label { display: none !important; }
    .price-alert-fab-icon { width: 24px; height: 24px; font-size: 1rem; }
    .price-alert-panel {
        bottom: 190px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}

@media (max-width: 991.98px) {
    .price-alert-fab { bottom: 130px; }
    .price-alert-panel { bottom: 190px; }
}

/* ========== CAMPAIGN COMPONENTS ========== */
.campaign-topbar {
    position: relative;
    z-index: 1040;
    overflow: hidden;
}
.campaign-topbar-inner {
    display: flex;
    align-items: center;
    position: relative;
}
.campaign-marquee-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.campaign-marquee {
    display: flex;
    width: max-content;
    animation: campaignMarquee 20s linear infinite;
}
.campaign-marquee:hover {
    animation-play-state: paused;
}
.campaign-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 40px 8px 20px;
    font-size: .85rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.campaign-marquee-desc {
    opacity: .9;
    font-weight: 400;
}
.campaign-marquee-btn {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
    white-space: nowrap;
    transition: opacity .2s;
}
.campaign-marquee-btn:hover {
    opacity: .85;
}
.campaign-close-btn {
    background: rgba(0,0,0,.2);
    border: none;
    color: inherit;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 10px;
    transition: background .2s;
    z-index: 5;
}
.campaign-close-btn:hover {
    background: rgba(0,0,0,.4);
}
@keyframes campaignMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.campaign-banner-card {
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.campaign-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

@media (max-width: 768px) {
    .campaign-marquee-item { font-size: .78rem; padding: 7px 30px 7px 14px; }
    .campaign-marquee-btn { font-size: .68rem; padding: 2px 10px; }
    .campaign-close-btn { width: 24px; height: 24px; font-size: .6rem; margin-right: 6px; }
    .campaign-marquee { animation-duration: 14s; }
    .campaign-banner-card h3 { font-size: 1rem !important; }
}

/* ========== MOBILE BOTTOM NAVIGATION BAR ========== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 1040;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        display: flex !important;
    }
}

.bottom-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 2px 6px;
    color: #8b95a5 !important;
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    gap: 2px;
    letter-spacing: 0.01em;
    min-width: 0;
}

.bottom-nav-item i {
    font-size: 1.1rem;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.bottom-nav-item:active i {
    transform: scale(0.9);
}

.bottom-nav-item.active {
    color: var(--primary) !important;
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
}

.bottom-nav-center {
    position: relative;
}

.bottom-nav-center-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    margin-top: -20px;
    box-shadow: 0 4px 14px rgba(200,169,81,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bottom-nav-center:hover .bottom-nav-center-icon,
.bottom-nav-center:active .bottom-nav-center-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(200,169,81,0.5);
}

.bottom-nav-center span {
    color: var(--secondary-dark) !important;
    font-weight: 700;
    margin-top: 1px;
}

@media (max-width: 359px) {
    .bottom-nav-item {
        font-size: 0.55rem;
        padding: 7px 1px 5px;
    }
    .bottom-nav-item i {
        font-size: 1rem;
    }
    .bottom-nav-center-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        margin-top: -18px;
    }
}

/* ========== PHOTO ALBUM GALLERY ========== */
.album-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.album-card .album-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-card .album-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.album-card .album-body {
    padding: 16px;
}

.album-card .album-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.album-card .album-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.album-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #25d366;
    color: var(--white) !important;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

.album-share-btn:hover {
    background: #1ea952;
    color: var(--white);
    transform: translateY(-1px);
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.album-gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

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

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

.album-gallery-item .album-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.album-gallery-item:hover .album-photo-overlay {
    background: rgba(0,0,0,0.3);
    opacity: 1;
}

/* ========== REVIEW FORM ========== */
.review-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.star-rating {
    display: flex;
    gap: 4px;
    direction: rtl;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--secondary);
}

/* ========== ACTIVITIES (Neler Yaptık) ========== */
.activity-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--primary);
}

.activity-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.activity-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,107,60,0.1), rgba(26,107,60,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--primary);
}

.activity-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.activity-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 4px;
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.activity-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.activity-card:hover .activity-media img {
    transform: scale(1.05);
}

.activity-media .activity-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: rgba(255,255,255,0.3);
    font-size: 4rem;
}

.activity-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.activity-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.activity-video-wrapper:hover .activity-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.activity-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.activity-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.activity-meta i {
    color: var(--primary);
    margin-right: 3px;
}

.activity-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.activity-stat-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,107,60,0.06);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border-left: 3px solid var(--primary);
}

.activity-stat-inline strong {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.activity-stat-inline span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.activity-gallery-preview {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.activity-gallery-thumb {
    width: 52px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.activity-gallery-thumb:hover {
    opacity: 0.85;
}

.activity-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .activity-media { height: 180px; }
    .activity-stat-value { font-size: 1.5rem; }
    .activity-stat-card { padding: 16px 10px; }
    .activity-stat-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== PLACEHOLDER IMAGE ========== */
.placeholder-img {
    background: linear-gradient(135deg, var(--light-gray), #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

/* ========== HOTEL CARD ========== */
.hotel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.hotel-card .hotel-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.hotel-card .hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hotel-card:hover .hotel-card-img img {
    transform: scale(1.05);
}
.hotel-card .hotel-card-img .hotel-badge-city {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.hotel-card .hotel-card-img .hotel-badge-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.hotel-card .hotel-card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
}
.hotel-card .hotel-card-price .price-tl {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
    display: block;
}
.hotel-card .hotel-card-price .price-pp {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.6;
    display: block;
}
.hotel-card .hotel-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hotel-card .hotel-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.hotel-card .hotel-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
    line-height: 1.3;
}
.hotel-card .hotel-card-title a {
    color: inherit;
    text-decoration: none;
}
.hotel-card .hotel-card-title a:hover {
    color: var(--primary-color);
}
.hotel-card .hotel-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hotel-card .hotel-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.hotel-card .hotel-card-features .feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-color);
}
.hotel-card .hotel-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== HOTEL DETAIL ========== */
.hotel-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 30px 0;
}
.hotel-detail-stars {
    color: #f59e0b;
    font-size: 1rem;
}
.hotel-detail-badges .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}
.hotel-gallery-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.hotel-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.hotel-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-color);
}
.hotel-feature-item i {
    font-size: 1rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}
.hotel-room-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.hotel-room-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.hotel-room-card .room-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}
.hotel-room-card .room-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}
.hotel-reservation-form {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 90px;
}
.hotel-reservation-form h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}
.hotel-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}
.hotel-contact-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
}
.hotel-contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
}
.hotel-contact-card a:hover {
    color: var(--primary-color);
}
.hotel-contact-card a i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hotel filter pills */
.hotel-filter-bar {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.hotel-filter-bar .filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hotel-filter-bar .filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: var(--transition);
}
.hotel-filter-bar .filter-pill:hover,
.hotel-filter-bar .filter-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .hotel-card .hotel-card-img { height: 180px; }
    .hotel-gallery-carousel .carousel-item img { height: 250px; }
    .hotel-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-reservation-form { position: static; margin-top: 20px; }
    .hotel-card .hotel-card-price { font-size: 0.85rem; padding: 5px 10px; }
}

/* ========== TÜRSAB BADGE ========== */
.tursab-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    white-space: nowrap;
    line-height: 1.4;
}
.tursab-badge i {
    font-size: 0.62rem;
}
.footer-badge-link:hover {
    opacity: 0.85;
}
.footer-badge-link:hover img {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

/* ========== MOBILE RESERVATION BAR ========== */
.mobile-reservation-bar {
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    z-index: 1035;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-reservation-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
}

.mobile-reservation-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.2;
}

.mobile-price-old {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
}

.mobile-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.mobile-price-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
}

.mobile-reservation-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-mobile-reserve {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(46,204,113,0.35);
    transition: all 0.2s ease;
}

.btn-mobile-reserve:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(46,204,113,0.25);
}

.btn-mobile-whatsapp {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37,211,102,0.3);
    transition: all 0.2s ease;
}

.btn-mobile-whatsapp:active {
    transform: scale(0.93);
}

/* ========== COMPARE BUTTON ========== */
.compare-add-btn {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
}
.compare-add-btn:hover, .compare-add-btn.compare-active {
    background: #fff;
    color: #006400;
}
.compare-card-btn {
    padding: 6px 10px !important;
    min-width: 38px;
    border: 2px solid var(--primary) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.compare-card-btn.compare-active {
    background: #006400 !important;
    color: #fff !important;
    border-color: #006400 !important;
}

@media (max-width: 575.98px) {
    .tour-card .card-footer-custom {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tour-card .card-footer-custom .d-flex.gap-1 {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 4px !important;
    }
    .tour-card .card-footer-custom .btn-primary-custom.btn-sm {
        padding: 5px 10px !important;
        font-size: .75rem !important;
    }
    .tour-card .card-footer-custom .compare-card-btn {
        padding: 5px 8px !important;
        min-width: 32px;
        font-size: .75rem !important;
    }
    .tour-card .card-price .price-main {
        font-size: .88rem;
    }
}
@media (max-width: 400px) {
    .tour-card .card-footer-custom {
        gap: 6px;
    }
    .tour-card .card-footer-custom .btn-primary-custom.btn-sm {
        padding: 4px 8px !important;
        font-size: .7rem !important;
        gap: 4px !important;
    }
    .tour-card .card-footer-custom .compare-card-btn {
        padding: 4px 6px !important;
        min-width: 28px;
        font-size: .7rem !important;
    }
}

/* ========== COMPARE FLOATING BAR ========== */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: #fff;
    border-top: 2px solid #006400;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    padding: 10px 0;
}
.compare-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.compare-bar-items {
    display: flex;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    padding: 4px 0;
}
.compare-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 6px 8px;
    min-width: 180px;
    max-width: 220px;
    flex-shrink: 0;
    position: relative;
}
.compare-bar-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.compare-bar-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.compare-bar-item-name {
    font-size: .75rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.compare-bar-item-price {
    font-size: .7rem;
    color: #006400;
    font-weight: 700;
}
.compare-bar-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: .7rem;
    padding: 2px;
    cursor: pointer;
    flex-shrink: 0;
}
.compare-bar-item-remove:hover { color: #e53935; }
.compare-bar-slot {
    width: 60px;
    height: 52px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: .9rem;
    flex-shrink: 0;
}
.compare-bar-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* ========== COMPARE TABLE PAGE (Desktop) ========== */
.compare-table-wrap { overflow: visible; }
.compare-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.compare-table th, .compare-table td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}
.compare-label-col { width: 180px; min-width: 180px; }
.compare-tour-col { min-width: 200px; }
.compare-label {
    font-weight: 600;
    color: #555;
    font-size: .85rem;
    white-space: nowrap;
    background: #f8f9fa;
    position: sticky;
    left: 0;
    z-index: 2;
}
.compare-tour-header { padding: 8px 0; }
.compare-tour-img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
.compare-tour-img-placeholder {
    width: 100%;
    max-width: 200px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
    margin: 0 auto 10px;
}
.compare-tour-name {
    font-size: .95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.compare-company {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #006400;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
}
.compare-company:hover { text-decoration: underline; }
.compare-company-logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}
.compare-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #006400;
}
.compare-price-tl {
    font-size: .8rem;
    color: #777;
}
.compare-room-price {
    font-size: .8rem;
    padding: 3px 0;
    border-bottom: 1px dashed #eee;
}
.compare-room-price:last-child { border-bottom: none; }
.compare-list li {
    font-size: .8rem;
    padding: 2px 0;
}
.compare-action-row td {
    padding-top: 20px;
    border-bottom: none;
}

/* ========== COMPARE MOBILE CARD LAYOUT ========== */
.cmp-m-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cmp-m-tabs::-webkit-scrollbar { display: none; }
.cmp-m-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: .8rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s;
}
.cmp-m-tab.active {
    background: #006400;
    color: #fff;
    border-color: #006400;
}
.cmp-m-tab-all {
    background: #f0f7f3;
    border-color: #006400;
    color: #006400;
}
.cmp-m-tab-all.active {
    background: #006400;
    color: #fff;
}

.cmp-m-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    margin-bottom: 16px;
    animation: cmpFadeIn .3s ease;
}
@keyframes cmpFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cmp-m-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.cmp-m-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cmp-m-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
}
.cmp-m-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff;
}
.cmp-m-badge {
    display: inline-block;
    background: rgba(255,255,255,.25);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 6px;
    backdrop-filter: blur(4px);
}
.cmp-m-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.cmp-m-company {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
}
.cmp-m-tursab {
    background: rgba(255,255,255,.2);
    padding: 1px 6px;
    border-radius: 8px;
    font-size: .65rem;
    margin-left: 4px;
}

.cmp-m-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f0f7f3;
    border-bottom: 1px solid #e8f0ec;
}
.cmp-m-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.cmp-m-price-old {
    color: #999;
    font-size: .85rem;
}
.cmp-m-price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #006400;
}
.cmp-m-price-tl {
    font-size: .78rem;
    color: #777;
}
.cmp-m-price-pp {
    font-size: .7rem;
    color: #999;
    text-transform: lowercase;
}

.cmp-m-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #f0f0f0;
    margin: 0;
}
.cmp-m-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: #fff;
    text-align: center;
}
.cmp-m-grid-item i {
    color: #006400;
    font-size: 1rem;
    margin-bottom: 4px;
}
.cmp-m-grid-label {
    font-size: .65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 2px;
}
.cmp-m-grid-item strong {
    font-size: .82rem;
    color: #333;
}

.cmp-m-section {
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
}
.cmp-m-section-title {
    font-size: .82rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}
.cmp-m-room-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cmp-m-room-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: .82rem;
}
.cmp-m-text {
    font-size: .82rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.cmp-m-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.cmp-m-feature-list li {
    font-size: .78rem;
    padding: 4px 10px;
    background: #f9f9f9;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #444;
}

.cmp-m-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
}
.cmp-m-actions .btn {
    padding: 10px 14px;
    font-size: .82rem;
    border-radius: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Compare All View (mobile) */
.cmp-m-all {
    animation: cmpFadeIn .3s ease;
}
.cmp-m-row {
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.cmp-m-row-label {
    font-size: .78rem;
    font-weight: 700;
    color: #006400;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cmp-m-row-values {
    display: flex;
    gap: 6px;
}
.cmp-m-row-val {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    background: #f8f9fa;
    border-radius: 8px;
}
.cmp-m-row-tourname {
    display: block;
    font-size: .6rem;
    color: #999;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cmp-m-row-val strong {
    font-size: .82rem;
    color: #333;
}

/* Mobile Navigation */
.cmp-m-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 4px;
}
.cmp-m-nav-btn {
    background: #006400;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cmp-m-nav-btn:disabled {
    opacity: .35;
    cursor: default;
}
.cmp-m-nav-indicator {
    font-size: .85rem;
    font-weight: 700;
    color: #555;
}

/* Floating bar mobile tweaks */
@media (max-width: 767.98px) {
    .compare-bar-item { min-width: 140px; max-width: 160px; padding: 4px 6px; }
    .compare-bar-item img { width: 32px; height: 32px; }
    .compare-bar-slot { width: 44px; height: 44px; }
    .compare-bar { padding: 8px 0; }
}

/* ========== REVIEWS SECTION ========== */
.review-write-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: 2px solid #e8f5e9;
}
.review-write-header {
    background: linear-gradient(135deg, #006400, #2e7d32);
    color: #fff;
    padding: 1.25rem 1.5rem;
}
.review-write-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.review-write-body {
    padding: 1.5rem;
}
.star-rating-lg label {
    font-size: 1.6rem !important;
}
.reviews-list-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.reviews-list-header {
    background: linear-gradient(135deg, #006400, #2e7d32);
    color: #fff;
    padding: 1rem 1.5rem;
}
.reviews-list-body {
    padding: 0;
    overflow-y: auto;
    max-height: 500px;
    flex: 1;
}
.review-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5f5f5;
    transition: background .2s;
}
.review-item:last-child { border-bottom: none; }
.review-item:hover { background: #fafafa; }
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #006400, #43a047);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.review-stars-sm {
    color: #ffc107;
    font-size: .75rem;
    white-space: nowrap;
}
.review-stars-sm .far { color: #e0e0e0; }

@media (max-width: 767.98px) {
    .review-write-header { padding: 1rem; }
    .review-write-body { padding: 1rem; }
    .review-write-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .review-write-header h4 { font-size: 1rem; }
    .reviews-list-body { max-height: 400px; }
    .review-item { padding: .75rem 1rem; }
    .review-avatar { width: 32px; height: 32px; font-size: .8rem; }
    .star-rating-lg label { font-size: 1.3rem !important; }
}

/* ========== MOBILE BODY PADDING ========== */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 65px;
    }
    .footer {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .whatsapp-float {
        display: none !important;
    }

}
