/* ===== YENİ TUR KARTLARI STİLLERİ ===== */
/* Tur Kartları Ana Stilleri */
.tour-card {
    position: relative !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 30px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.tour-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.tour-badges{
    position:absolute;
    top:12px;
    right:12px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
    pointer-events:none;
}

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

.tour-card:hover .tour-image img {
    transform: scale(1.05) !important;
}

/* Price Overlay - Minimal Modern Style (Optional, can be removed) */
.price-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.price-overlay .price-label {
    display: block;
    font-size: 9px;
    color: #6c757d;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.price-overlay .price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #007bff;
    display: block;
    line-height: 1.2;
    margin: 0;
}

.price-overlay .price-period {
    display: none;
}

/* Tour Badge */
.tour-badge {
    position: relative;
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.tour-badge.popular {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
}

.tour-badge.early-bird {
    background: linear-gradient(135deg, #28a745 0%, #5cb85c 100%);
}

.tour-badge.last-chance {
    background: linear-gradient(135deg, #ff9a44 0%, #fc6076 100%);
}

.article-card{display:block;text-decoration:none;color:inherit}
.article-card .article-date{display:block;font-size:12px;color:#6c757d;margin-top:6px}

/* Tour Content */
.tour-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-badge-bar{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:10px;
}
.tour-pill{
    display:inline-flex;
    align-items:center;
    padding:4px 10px;
    border-radius:14px;
    font-size:12px;
    font-weight:600;
    color:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.pill-discount{background:#dc3545;} 
.pill-popular{background:linear-gradient(135deg,#4e54c8 0%,#8f94fb 100%);} 
.pill-early{background:linear-gradient(135deg,#28a745 0%,#5cb85c 100%);} 
.pill-last{background:linear-gradient(135deg,#ff9a44 0%,#fc6076 100%);} 

.tour-content h3 {
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    color: #2c3e50;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
    color: #007bff;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.tour-meta i {
    color: #ffc107;
    margin-right: 5px;
}

.tour-description {
    color: #555;
    font-size: 14px;
    margin: 12px 0 16px;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tour-features span {
    background: #f8f9fa;
    color: #495057;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.tour-features i {
    color: #28a745;
}

/* Tour Price Display - Modern Inline Style */
.tour-price-display {
    margin: 0 0 15px 0;
    padding: 0;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.tour-price-display .price-main {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.tour-price-display .price-old {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 8px;
}

.tour-price-display .price-main span {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    margin-right: 5px;
}

.tour-price-display .price-period {
    font-size: 12px;
    color: #6c757d;
    opacity: 1;
    margin: 0;
}

/* Tour Actions - Modern Button Design */
.tour-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    justify-content: space-between;
}

.book-now-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004494 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    text-transform: none;
    font-size: 14px;
    letter-spacing: normal;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1.4;
    height: 40px;
    box-sizing: border-box;
    width: auto;
    min-width: 160px;
    max-width: 180px;
    text-shadow: none;
    font-family: Arial, sans-serif;
}

.book-now-btn i {
    font-size: 13px;
}

.book-now-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

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

.tour-details-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    letter-spacing: normal;
    cursor: pointer;
    text-align: center;
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.4;
    height: 40px;
    box-sizing: border-box;
    min-width: 120px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-transform: none;
    font-family: Arial, sans-serif;
}

.tour-details-btn i {
    font-size: 13px;
}

.tour-details-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

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

/* Eski stilleri geçersiz kıl */
.tour-price {
    display: none !important;
}

/* view-details stilini kaldır - artık tour-details-btn kullanıyoruz */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography improvements */
.page-content {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}
.page-content p { margin: 0 0 1em; }
.page-content h1 { font-size: 32px; margin: 0 0 16px; font-weight: 700; color: #2c3e50; }
.page-content h2 { font-size: 26px; margin: 24px 0 12px; font-weight: 700; color: #2c3e50; }
.page-content h3 { font-size: 22px; margin: 20px 0 10px; font-weight: 700; color: #2c3e50; }
.page-content h4 { font-size: 18px; margin: 16px 0 8px; font-weight: 600; color: #2c3e50; }
.page-content ul, .page-content ol { margin: 0 0 1em 1.2em; }
.page-content a { color: #007bff; text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
.page-content img { max-width: 100%; height: auto; border-radius: 10px; }
.page-content blockquote { border-left: 3px solid #e9ecef; padding-left: 12px; color: #555; margin: 16px 0; }
.page-content code, .page-content pre { font-family: Consolas, 'Courier New', monospace; background: #f8f9fa; padding: 2px 6px; border-radius: 4px; }

/* Sidebar form styles */
.sidebar input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}
.sidebar input[type="text"]:focus { border-color: #007bff; }
.sidebar button {
    margin-top: 8px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}
.sidebar button:hover { background: #0056b3; }

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

/* Header Stilleri */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}

.contact-info i {
    margin-right: 5px;
    color: #007bff;
}

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

.language-selector select,
.currency-selector select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

.login-btn {
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #0056b3;
}

/* Navbar Stilleri */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    min-height: 80px;
}

.nav-brand h1 {
    color: #007bff;
    font-size: 28px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #007bff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

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



.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/1920x600') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero.has-slider{position:relative;background:none}
.hero.has-slider .hero-content{position:relative;z-index:2}
.hero.has-slider::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));z-index:1}
.hero-slider{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero-track{height:100%;display:flex;width:100%;transform:translateX(0);transition:transform .6s ease}
.hero-slide{flex:0 0 100%;height:100%;background-size:cover;background-position:center}
.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.85);border:1px solid #dee2e6;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 10px rgba(0,0,0,.1);cursor:pointer;color:#333;z-index:3}
.hero-prev{left:20px}
.hero-next{right:20px}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.search-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-btn {
    background: #007bff;
    color: #fff;
    padding: 13px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
}

.destinations h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.destination-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
    text-align: center;
}

.destination-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.destination-info p {
    color: #666;
    font-weight: 500;
}

/* Tours Section */
.tours {
    padding: 80px 0;
    background: #f8f9fa;
}

.tours h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Updated Tour Card Styles */
.tour-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

/* Price Overlay */
.price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.price-overlay .price-label {
    display: block;
    font-size: 11px;
    color: #ddd;
    margin-bottom: 2px;
}

.price-overlay .price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    display: block;
    line-height: 1.2;
    margin: 2px 0;
}

.price-overlay .price-period {
    font-size: 11px;
    color: #ccc;
    display: block;
    font-style: italic;
}

/* Tour Badge */
.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.tour-badge.discount {
    background: #ff6b6b;
}

.tour-badge.popular {
    background: #ff6b6b;
    top: 50px; /* İkinci etiket için alt pozisyon */
}

.tour-badge.early-bird {
    background: #28a745;
}

/* Tour Content */
.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 13px;
    color: #666;
}

.tour-meta i {
    color: #ffc107;
    margin-right: 5px;
}

.tour-description {
    color: #555;
    font-size: 14px;
    margin: 10px 0 15px;
    line-height: 1.5;
}

.tour-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-features span {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-features i {
    color: #28a745;
}

/* Çakışan tour-price-display stili silindi */

/* Old duplicate styles removed - using compact versions at top of file */

/* Remove old tour price styles */
.tour-price {
    display: none;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.review-slider { position: relative; }
.review-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 0;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 320px; }
.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    color: #333;
}
.review-prev { left: -10px; }
.review-next { right: -10px; }

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.review-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

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

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Articles Section */
.articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.articles h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #444;
    color: #fff;
}

.newsletter button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h2 {
    color: #007bff;
    font-size: 24px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #ccc;
}

.footer-languages select {
    padding: 8px 12px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #444;
    color: #fff;
}

.footer-copyright p {
    color: #ccc;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=400&fit=crop') center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hotel-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&h=400&fit=crop') center/cover;
}

.tour-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&h=400&fit=crop') center/cover;
}

.activity-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=400&fit=crop') center/cover;
}

.about-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920&h=400&fit=crop') center/cover;
}

.contact-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1513635269975-59663e0ae1c8?w=1920&h=400&fit=crop') center/cover;
}

.blog-page-header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1519682337058-a94d519337bc?w=1920&h=400&fit=crop') center/cover;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-with-sidebar {
    padding: 60px 0;
    background: #fff;
}
.content-with-sidebar .row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 992px) {
    .content-with-sidebar .row { grid-template-columns: 1fr; }
}
.col-lg-8, .col-lg-4 { width: 100%; }
.blog-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card { display: flex; gap: 20px; background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; }
.blog-card .thumb { display: block; flex: 0 0 300px; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .content { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-card .content h2 { font-size: 22px; margin: 0; color: #2c3e50; font-weight: 700; line-height: 1.4; }
.blog-card .content h2 a { color: inherit; text-decoration: none; }
.blog-card .content h2 a:hover { color: #007bff; }
.blog-card .content p { color: #555; }
.blog-card .meta { font-size: 13px; color: #6c757d; margin-bottom: 12px; }
.blog-card .read-more { display: inline-block; color: #007bff; text-decoration: none; font-weight: 600; }
.sidebar .widget { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 24px; }
.sidebar .widget h3 { font-size: 18px; margin-bottom: 12px; color: #2c3e50; }
.sidebar .recent-posts { display: flex; flex-direction: column; gap: 10px; }
.sidebar .recent-posts .item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; padding: 8px 10px; text-decoration: none; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.sidebar .recent-posts .thumb { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 8px; overflow: hidden; }
.sidebar .recent-posts .thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar .recent-posts .info { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.sidebar .recent-posts .title { color: #2c3e50; font-size: 14px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar .recent-posts .date { color: #6c757d; font-size: 12px; }
.sidebar .recent-posts .item:hover .title { color: #007bff; }
.page-content { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); font-size: 16px; line-height: 1.8; color: #333; }
.empty { background: #fff; border: 1px dashed #e9ecef; padding: 24px; border-radius: 12px; text-align: center; color: #666; }
.related-posts { margin-top: 28px; }
.related-posts h3 { font-size: 22px; margin-bottom: 16px; color: #2c3e50; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.related-grid .blog-card .thumb { flex-basis: 180px; }
.related-grid .blog-card .content h2 { font-size: 18px; }
.recommended-widget { display: flex; flex-direction: column; gap: 12px; }
.mini-tour-card { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; }
.mini-tour-card .thumb img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid #eee; }
.mini-tour-card .info { overflow: hidden; }
.mini-tour-card .info .title { display: block; font-size: 14px; color: #2c3e50; text-decoration: none; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-tour-card .info .title:hover { color: #007bff; }
.mini-tour-card .info .price { font-size: 13px; color: #007bff; font-weight: 600; }

/* Hotel Search */
.hotel-search, .tour-search, .activity-search {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-form-container {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.hotel-search-form, .tour-search-form, .activity-search-form {
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

/* Hotel Listings */
.hotel-listings {
    padding: 80px 0;
}

.listings-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* Modern Filters Sidebar */
.filters-sidebar {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: fit-content;
    border: 1px solid #f0f0f0;
}

.filters-sidebar h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #007bff;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    margin-bottom: 16px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.filter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s;
}

.filter-group label:hover {
    background: #f8f9fa;
    color: #007bff;
}

.filter-group input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #007bff;
}

.price-range {
    width: 100%;
    margin-bottom: 12px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e9ecef;
    border-radius: 3px;
    outline: none;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.price-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Modern Hotel Cards */
.hotel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.hotel-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.hotel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.hotel-info {
    padding: 24px;
}

.hotel-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.hotel-info h3 a,
.hotel-name-link{
    color:#2c3e50;
    text-decoration:none;
}
.hotel-info h3 a:hover,
.hotel-name-link:hover{
    color:#007bff;
    text-decoration:none;
}
.hotel-info h3 a:visited,
.hotel-name-link:visited{
    color:#2c3e50;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    margin-bottom: 16px;
    font-size: 13px;
}

.hotel-location i {
    color: #007bff;
    font-size: 14px;
}

.hotel-amenities {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.hotel-amenities span {
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hotel-amenities i {
    color: #007bff;
    font-size: 13px;
}

/* Hotel Price Display - Modern Inline Style */
.hotel-price-display {
    margin: 12px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-top: 1px solid #e9ecef;
    padding-top: 12px;
}

.hotel-price-display .price-main {
    font-size: 22px;
    font-weight: 700;
    color: #007bff;
    margin: 0;
    line-height: 1;
}

.hotel-price-display .price-period {
    font-size: 12px;
    color: #6c757d;
    opacity: 1;
    margin: 0;
}

.hotel-price-display .price-old {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: line-through;
}

/* Hotel Actions - Modern Button Design */
.hotel-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    align-items: center;
    padding: 0;
}

.hotel-actions .book-now-btn {
    flex: 1;
}

.hotel-actions .tour-details-btn {
    flex: 0 0 auto;
}

.book-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.book-btn i {
    font-size: 12px;
}

.book-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

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

/* Tour Categories */
.tour-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-categories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 32px;
    color: #fff;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Tour Features */
.tour-description {
    margin-bottom: 15px;
}

.tour-description p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.tour-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-features span {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-features i {
    color: #28a745;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.about-text h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #333;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.about-text ul li strong {
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: #007bff;
    color: #fff;
}

.statistics h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Team */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    color: #666;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: #007bff;
    font-size: 20px;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #0056b3;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.mv-item {
    text-align: center;
    padding: 40px;
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.mv-icon i {
    font-size: 40px;
    color: #fff;
}

.mv-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.mv-item p {
    color: #666;
    line-height: 1.8;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.activity-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.activity-meta i {
    color: #ffc107;
    margin-right: 5px;
}

.activity-description {
    margin-bottom: 15px;
}

.activity-description p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.activity-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.activity-features span {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-features i {
    color: #28a745;
}

.activity-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: rgba(255,255,255,0.7);
}

/* Hotel/Tour Header */
.hotel-header, .tour-header {
    padding: 40px 0;
    background: #fff;
}

.hotel-header-content, .tour-header-content {
    text-align: center;
}

.hotel-badges, .tour-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background: #28a745;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.hotel-header h1, .tour-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.hotel-location, .tour-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #666;
}

.view-map {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.view-map:hover {
    text-decoration: underline;
}

.hotel-rating, .tour-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rating-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.rating-score {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.tour-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    flex-wrap: wrap;
}

.duration-separator {
    margin: 0 5px;
    opacity: 0.6;
}

/* Gallery */
.hotel-gallery, .tour-gallery {
    padding: 40px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 6px;
}

.main-image {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.main-image:hover {
    transform: scale(1.02);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Tour gallery thumbnails: grid for 4 visible items */
.tour-gallery .gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    height: 100%;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    height: 100%;
}

.gallery-thumbnails img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-bottom: 3px;
}

.gallery-thumbnails img:hover {
    opacity: 0.8;
    border-color: #007bff;
    transform: scale(1.05);
}

.gallery-thumbnails img.active {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

/* Thumbnail wrapper and more overlay */
.gallery-thumbnails .thumb {
    position: relative;
}
.gallery-thumbnails .thumb.more .more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
}
.gallery-thumbnails .thumb.more:hover .more-overlay {
    background: rgba(0,0,0,0.6);
}

/* View all photos button overlay */
.view-all-photos {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.view-all-photos:hover {
    background: rgba(0,0,0,0.85);
}

/* Fallback görüntüler için daha kibar görünüm */
.gallery-thumbnails img.image-failed {
    background: #f0f2f5;
    object-fit: contain;
    padding: 8px;
    border-color: #e0e7ff;
}

.main-image img.image-failed {
    background: #f0f2f5;
    object-fit: contain;
    padding: 16px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}
.lightbox-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lightbox-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    cursor: pointer;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}
.lightbox-thumbs img {
    height: 70px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

/* Hotel/Tour Details */
.hotel-details, .tour-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* Sidebar styling - removed debug styles */

.main-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-content section {
    margin-bottom: 40px;
}

.main-content section:last-child {
    margin-bottom: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: #fff;
    padding: 0;
}

/* Booking Widget */
.booking-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.booking-widget::before {
    display: none;
}

/* Description Section */
.description-section h2, 
.room-selection h2, 
.amenities-section h2, 
.reviews-section h2, 
.included-section h2, 
.not-included-section h2, 
.important-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 15px;
    font-weight: 700;
}

.description-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
    font-weight: 600;
}

.description-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.view-more-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.view-more-btn:hover {
    background: #0056b3;
}

/* Room Selection */
.room-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s;
    background: #fff;
}

.room-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.room-image {
    width: 250px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.room-features {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.room-features span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-amenities span {
    color: #666;
    font-size: 14px;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.room-price .price {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
}

.room-price .price-period {
    color: #666;
    font-size: 16px;
    margin-left: 5px;
}

.room-price .book-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.room-price .book-btn:hover {
    background: #0056b3;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.amenity-item i {
    color: #007bff;
    font-size: 20px;
}

/* Reviews */
.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.rating-breakdown {
    flex: 1;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #ffc107;
    transition: width 0.3s;
}

.review-comments {
    margin-top: 30px;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    margin-bottom: 5px;
    color: #333;
}

.review-rating {
    color: #ffc107;
    margin-bottom: 5px;
}

.review-date {
    color: #666;
    font-size: 12px;
}

.review-item p {
    color: #666;
    line-height: 1.6;
}

/* Booking Widget - Updated */
.booking-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.price-info {
    margin-bottom: 15px;
}

.booking-widget .price {
    font-size: 42px;
    font-weight: bold;
    color: #007bff;
    line-height: 1;
}

.booking-widget .price-period {
    color: #666;
    font-size: 18px;
    margin-left: 5px;
}

.discount {
    background: #ff4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.date-inputs {
    display: flex;
    gap: 10px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.booking-form input[type="date"],
.booking-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.booking-form input[type="date"]:focus,
.booking-form select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.booking-form input[type="date"],
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
}

.booking-form input[type="date"]:focus,
.booking-form select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.price-summary {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

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

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 16px;
}

.book-now-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.book-now-btn:hover {
    background: #0056b3;
}

.cancellation-policy {
    font-size: 12px;
    color: #28a745;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #f0f9f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cancellation-policy i {
    font-size: 14px;
}

.price-total .total-amount {
    font-size: 24px;
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-widget {
        padding: 15px;
    }
    
    .price-info .price {
        font-size: 24px;
    }
    
    .book-now-btn {
        padding: 10px 15px;
        font-size: 15px;
    }
}

/* Nearby Hotels/Similar Tours */
.nearby-hotels, .similar-tours {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.nearby-hotels h3, .similar-tours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.hotel-item, .tour-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.hotel-item:last-child, .tour-item:last-child {
    border-bottom: none;
}

.hotel-item img, .tour-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.hotel-details, .tour-details {
    flex: 1;
}

.hotel-details h4, .tour-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.hotel-details p, .tour-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.hotel-rating, .tour-rating {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.rating {
    color: #007bff;
    font-weight: 500;
}

.reviews {
    color: #666;
    font-size: 12px;
}

.tour-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    backdrop-filter: blur(2px);
}

.tour-price .from {
    display: block;
    font-size: 11px;
    color: #ddd;
    margin-bottom: 2px;
}

.tour-price .amount {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    display: block;
    line-height: 1.2;
    margin: 2px 0;
}

.tour-price .per {
    font-size: 11px;
    color: #ccc;
    display: block;
    font-style: italic;
}

/* Fiyat etiketi için yeni stil */
.price-tag {
    position: absolute;
    top: 48px; /* Move below category badge to avoid overlap */
    left: 0;
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    z-index: 2;
}


/* Tour Specific Styles */
.tour-program {
    list-style: none;
    padding: 0;
}

.tour-program li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.tour-program li:last-child {
    border-bottom: none;
}

.included-grid, .not-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.included-item, .not-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.included-item i {
    color: #28a745;
}

.not-included-item i {
    color: #dc3545;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item h4 {
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4 i {
    color: #007bff;
}

.info-item p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .search-form {
        flex-direction: column;
        padding: 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-grid,
    .tour-grid,
    .review-slider,
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    /* Alt sayfalar için responsive */
    .listings-content {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        order: 2;
    }
    
    .hotels-grid {
        order: 1;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        padding: 20px;
    }
    
    .hotel-card {
        margin-bottom: 0;
    }
    
    .hotel-price-display {
        margin: 10px 0;
        padding-top: 10px;
    }
    
    .hotel-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .hotel-actions .book-now-btn,
    .hotel-actions .tour-details-btn {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .hotel-search-form,
    .tour-search-form,
    .activity-search-form {
        flex-direction: column;
    }
    
    /* Detay sayfaları için responsive */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .main-content {
        order: 1;
        padding: 25px;
    }
    
    .booking-widget {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 15px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .room-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .room-image {
        width: 100%;
        height: 250px;
    }
    
    .room-price {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .room-price .book-btn {
        width: 100%;
    }
    
    .review-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hotel-item, .tour-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hotel-item img, .tour-item img {
        width: 100%;
        height: 150px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    /* Hotel page mobile optimizations */
    .hotel-info {
        padding: 18px;
    }
    
    .hotel-info h3 {
        font-size: 18px;
    }
    
    .hotel-price-display .price-main {
        font-size: 20px;
    }
    
    .hotel-price-display .price-period {
        font-size: 11px;
    }
    
    .filters-sidebar {
        padding: 18px;
    }
    
    .filters-sidebar h3 {
        font-size: 18px;
    }
    
    .search-form-container {
        padding: 20px;
    }
    
    .hotel-amenities {
        gap: 8px;
    }
    
    .hotel-amenities span {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-author {
        flex-direction: column;
        text-align: center;
    }
    
    /* Tour Cards - Mobile Optimizations */
    .tour-price-display {
        margin: 10px 0;
        padding-top: 10px;
        flex-direction: column;
        gap: 4px;
    }
    
    .tour-price-display .price-main {
        font-size: 20px;
    }
    
    .tour-price-display .price-period {
        font-size: 11px;
    }
    
    .tour-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .book-now-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .tour-details-btn {
        width: 100%;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .price-overlay {
        bottom: 8px;
        right: 8px;
        padding: 5px 8px;
        min-width: 50px;
    }
    
    .price-overlay .price-amount {
        font-size: 14px;
    }
    
    .price-overlay .price-label {
        font-size: 8px;
    }
}

/* Duplicate styles removed - using compact versions defined earlier in the file */
/* Section header with view-all link */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0;
}

.view-all-link {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #0b72d9;
  border: 1px solid #0a66c2;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(11, 114, 217, 0.25);
}

.view-all-link:hover {
  background: #095bb5;
  border-color: #095bb5;
}

.view-all-link:focus {
  outline: 2px solid #74b9ff;
  outline-offset: 2px;
}

/* Category badge on tour cards */
.tour-card .tour-image {
  position: relative;
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4; /* Keep this above other badges */
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.category-domestic { background: #2e7d32; }
.category-international { background: #1565c0; }
.category-daily { background: #6d4c41; }

/* Ensure tour badge stacks cleanly above price tag but below category */
.tour-badge { z-index: 3; }

/* Responsive tweaks for section header */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===== AUTH PAGES (Login / Register) ===== */
.auth-section {
    padding: 60px 0;
    background: #f5f7fb;
}

.auth-container {
    max-width: 900px;
    margin: 0 auto;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 32px;
    border: 1px solid #e9ecef;
}

.auth-header { margin-bottom: 20px; }
.auth-header h2 { margin: 0 0 8px 0; font-size: 26px; color: #2c3e50; }
.auth-subtitle { color: #6c757d; font-size: 14px; }

.auth-form { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.auth-form .form-row { display: block; }

.input-group { position: relative; }
.input-group input {
    width: 100%;
    padding: 12px 44px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 15px;
}
.input-group input:focus { outline: none; border-color: #007bff; box-shadow: 0 0 0 3px rgba(0,123,255,0.1); }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #6c757d; font-size: 16px; }
.toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #6c757d; cursor: pointer; }

.auth-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.auth-actions .left { display: flex; align-items: center; gap: 10px; }

.auth-links { margin-top: 16px; font-size: 14px; color: #6c757d; }
.auth-links a { color: #007bff; text-decoration: none; }
.auth-links a:hover { text-decoration: underline; }

.form-error { display: none; color: #dc3545; font-size: 13px; }
.form-error.active { display: block; }

.social-login { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 16px 0 8px 0; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 8px; border: 1px solid #dee2e6; background: #f8f9fa; color: #333; text-decoration: none; font-weight: 600; }
.social-btn i { font-size: 16px; }
.social-btn:hover { background: #e9ecef; }

.btn-primary { background: linear-gradient(135deg, #0066cc 0%, #004494 100%); color: #fff; border: none; padding: 12px 18px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-primary:hover { background: #0056b3; }
.btn-outline { background: #fff; color: #333; border: 1px solid #dee2e6; padding: 12px 18px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-outline:hover { background: #f8f9fa; }

@media (max-width: 576px) {
    .auth-card { padding: 24px; }
    .social-login { grid-template-columns: 1fr; }
}
/* ===== Account (Hesap) Dashboard ===== */
.account-section { padding: 60px 0; background: #f8f9fb; }
.account-container { max-width: 1100px; margin: 0 auto; }
.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }

.account-sidebar { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.account-user { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.account-user .avatar { width: 48px; height: 48px; border-radius: 50%; background: #eef2ff; display:flex; align-items:center; justify-content:center; color:#3b82f6; font-size:20px; }
.account-user .info h3 { margin:0; font-size:18px; }
.account-user .info p { margin:2px 0 0; color:#6b7280; font-size:14px; }
.account-menu { list-style: none; padding: 0; margin: 0 0 16px; }
.account-menu li { padding: 10px 12px; border-radius: 8px; color:#374151; display:flex; align-items:center; gap:10px; cursor:pointer; }
.account-menu li a { display:flex; align-items:center; gap:10px; color:inherit; text-decoration:none; width:100%; }
.account-menu li:hover { background:#f3f4f6; }
.account-menu li.active { background:#eef2ff; color:#1f2937; font-weight:600; }
.account-help { border-top:1px dashed #e5e7eb; padding-top:12px; }
.account-help { margin-bottom:12px; }
.account-help p { margin: 0 0 8px; }
.account-help .btn-outline, .account-help .btn-primary { display:block; width:100%; text-align:center; margin-top:8px; }

/* Support list pagination */
.pagination { margin-top: 12px; display:flex; gap:8px; flex-wrap:wrap; }
.pagination .btn-outline { padding:6px 10px; }
.pagination .btn-outline.active { background:#1f2937; color:#fff; border-color:#1f2937; }

.account-main { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.account-header { padding: 18px 20px; border-bottom:1px solid #e5e7eb; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.account-header h2 { margin:0; font-size:20px; }
.account-actions { display:flex; align-items:center; gap:12px; }
.tabs { background:#f8fafc; border:1px solid #e5e7eb; border-radius:10px; display:flex; }
.tab { padding:8px 12px; border:none; background:transparent; cursor:pointer; border-radius:10px; font-weight:600; color:#374151; }
.tab.active { background:#fff; box-shadow:0 2px 8px rgba(0,0,0,0.06); }
.search-box { position:relative; }
.search-box input { padding:10px 36px 10px 12px; border:1px solid #e5e7eb; border-radius:10px; }
.search-box i { position:absolute; right:10px; top:50%; transform:translateY(-50%); color:#6b7280; }

.orders-grid { padding: 16px; display:grid; grid-template-columns: 1fr; gap:16px; }
.order-card { border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; background:#fff; }
.order-header { display:flex; align-items:center; justify-content:space-between; padding:10px 12px; background:#f9fafb; border-bottom:1px solid #e5e7eb; }
.order-id { font-weight:600; color:#374151; }
.order-status { padding:6px 10px; border-radius:20px; font-size:12px; }
.status-approved { background:#dcfce7; color:#166534; }
.status-pending { background:#fef9c3; color:#854d0e; }
.status-cancelled { background:#fee2e2; color:#991b1b; }
.order-body { display:grid; grid-template-columns: 80px 1fr 160px; align-items:center; gap:12px; padding:12px; }
.order-thumb img { width:64px; height:64px; object-fit:contain; }
.order-info h3 { margin:0 0 4px; font-size:16px; }
.order-info p { margin:2px 0; color:#6b7280; font-size:14px; }

/* ===== Sipariş Detay / Fatura / Voucher sayfaları ===== */
.detail-section, .invoice-section, .voucher-section { margin: 24px 0; }
.detail-card, .invoice-card, .voucher-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px; }
.detail-meta, .invoice-meta, .voucher-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.detail-actions, .invoice-actions, .voucher-actions { display: flex; gap: 8px; margin-top: 16px; }

/* ===== Destek (Ticket) sayfaları ===== */
.support-section { margin: 24px 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.support-form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.support-form input, .support-form select, .support-form textarea { padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 6px; }
.support-actions { display: flex; gap: 8px; }
.form-error { margin-top: 8px; color: #b91c1c; }
.ticket-list { display: grid; gap: 12px; }
.ticket-card { border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; padding: 12px; display: flex; align-items: center; justify-content: space-between; }
.ticket-card .ticket-info { display: flex; flex-direction: column; gap: 4px; }
.ticket-card .ticket-actions { display: flex; gap: 8px; }

.ticket-detail-section { margin: 24px 0; }
.ticket-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.chat-thread { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px; min-height: 200px; display: grid; gap: 10px; }
.chat-message { display: inline-block; max-width: 70%; padding: 8px 12px; border-radius: 12px; }
.chat-message.user { background: #2563eb; color: #fff; justify-self: end; }
.chat-message.support { background: #f3f4f6; color: #111827; justify-self: start; }
.chat-input { display: flex; gap: 8px; margin-top: 12px; }
.chat-input input { flex: 1; padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 6px; }

@media (max-width: 992px) {
  .support-grid { grid-template-columns: 1fr; }
}
.order-info p { margin:2px 0; color:#6b7280; font-size:14px; }
.order-meta { text-align:right; }
.order-meta .price { font-weight:700; font-size:16px; margin:0 0 8px; }
.order-actions { display:flex; gap:8px; justify-content:flex-end; }
.btn-primary.disabled { opacity:0.6; pointer-events:none; }

@media (max-width: 768px) {
  .account-grid { grid-template-columns: 1fr; }
  .order-body { grid-template-columns: 60px 1fr; }
  .order-meta { grid-column: 1 / -1; text-align:left; }
  .account-header { flex-direction:column; align-items:flex-start; }
}
/* --- Professional refinements for support and document pages --- */
.muted { color: #6b7280; font-size: 0.95rem; }
.invoice-actions .btn-outline, .voucher-actions .btn-outline { border: 1px solid #d1d5db; }
.invoice-actions .btn-outline:hover, .voucher-actions .btn-outline:hover { border-color: #111827; }
@media (min-width: 768px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
}
/* ===== Invoice layout enhancements ===== */
.invoice-columns { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 12px; }
.invoice-columns h3 { margin-bottom: 8px; }
.invoice-items { margin-top: 8px; }
.invoice-table { width: 100%; border-collapse: collapse; }
.invoice-table th, .invoice-table td { border: 1px solid #e5e7eb; padding: 8px; text-align: left; }
.invoice-table th { background: #f9fafb; font-weight: 600; }
.invoice-summary { width: 100%; max-width: 320px; margin-left: auto; margin-top: 12px; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px; }
.invoice-summary .summary-row { display: flex; align-items: center; justify-content: space-between; margin: 4px 0; }
.invoice-summary .total { font-weight: 700; }
.invoice-actions { display: flex; gap: 8px; margin-top: 12px; }
@media (min-width: 768px) {
  .invoice-columns { grid-template-columns: 1fr 1fr; }
}
/* ===== Voucher layout enhancements ===== */
.voucher-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.voucher-header h2 { margin:0; font-size:22px; color:#111827; }
.voucher-header .badge { background:#111827; color:#fff; border-radius:6px; padding:6px 10px; font-weight:600; }
.voucher-card h3 { margin-top:0; color:#1f2937; }
.voucher-notes { background:#f9fafb; border:1px dashed #e5e7eb; padding:12px; border-radius:8px; margin-top:12px; color:#374151; }
/* Profile panel styling */
.profile-panel { background:#fff; border:1px solid #e5e7eb; border-radius:8px; padding:16px; margin-top:12px; }
.profile-panel h3 { margin-top:0; }
.profile-form .form-row { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.profile-form input, .profile-form select, .profile-form textarea { padding:10px 12px; border:1px solid #e5e7eb; border-radius:6px; }
.profile-form .form-actions { display:flex; gap:8px; }
.profile-form .form-grid { display:grid; grid-template-columns: 1fr; gap:12px; }
@media (min-width: 768px) {
  .profile-form .form-grid { grid-template-columns: 1fr 1fr; }
}
/* ===== Payment pages: simple header (no image) ===== */
.page-header-simple {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
  text-align: left;
}
.page-header-simple h1 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #111827;
}
.page-header-simple p {
  margin: 0;
  color: #6b7280;
}

/* ===== Payment pages: widgets and professional table ===== */
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 12px 0 20px;
}
.widget-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.icon-total { background: #0ea5e9; }
.icon-paid { background: #16a34a; }
.icon-failed { background: #ef4444; }
.icon-pending { background: #f59e0b; color:#111827; }
.widget-info h3 { margin: 0; font-size: 13px; color: #374151; }
.widget-info .value { font-size: 22px; font-weight: 700; color: #111827; }

.filters-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
}
.filters-bar .input, .filters-bar select, .filters-bar input[type="date"] {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.filters-bar .btn-primary {
  background: #0b72d9;
  color: #fff;
  border: 1px solid #0a66c2;
  padding: 8px 14px;
  border-radius: 8px;
}

.table-pro {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.table-pro thead th {
  background: #f9fafb;
  font-weight: 600;
}
.table-pro th, .table-pro td {
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}
.status-badge { padding: 6px 10px; border-radius: 16px; font-size: 12px; font-weight: 600; display: inline-block; }
.status-paid { background: #dcfce7; color: #166534; }
.status-failed { background: #fee2e2; color: #991b1b; }
.status-pending { background: #fef9c3; color: #854d0e; }

@media (max-width: 768px) {
  .widgets-grid { grid-template-columns: 1fr 1fr; }
}
