/* =============================================
   Happy Funny Tours - Modern CSS Styles
   ============================================= */

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

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #2c3e50;
    --accent: #ffd700;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1a1a2e;
    --light: #f8fafc;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light);
}

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

/* =============================================
   Header Styles
   ============================================= */
.header {
    background: #384c9f;
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text-wrapper {
    display: none;
}

.logo-icon {
    font-size: 42px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-happy {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
}

.logo-tours {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

/* Mobilde logo resmi, desktop'ta da resim */
@media (max-width: 768px) {
    .logo-image {
        height: 55px;
    }
    
    .logo-text-wrapper {
        display: none;
    }
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

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

.nav-link:hover {
    color: #ffd700;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.header-phone i {
    color: white;
}

.header-phone:hover i {
    color: white;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    font-size: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 8px;
    transition: all 0.3s;
    opacity: 0.6;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gray-100);
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 700px;
    background: url('banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Alt Banner Section */
.alt-banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
}
.alt-banner-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Section */
.blog-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.blog-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-section .section-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.blog-section .section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.blog-card .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.blog-card .blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-400);
    border-top: 1px solid var(--gray-200);
    padding-top: 15px;
    margin-top: auto;
}

.blog-card .blog-meta i {
    margin-right: 5px;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--accent);
}

.blog-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.blog-cta .btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.blog-cta .btn-blog-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.blog-cta .btn-blog-all i {
    transition: transform 0.3s;
}

.blog-cta .btn-blog-all:hover i {
    transform: translateX(5px);
}

.no-blogs {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-blogs i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-blogs p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }
    
    .blog-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Reviews Banner Section */
.reviews-banner {
    background: url('altbanner.webp') center/cover no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 5%;
}

.reviews-banner-content {
    max-width: 450px;
    width: 100%;
}

.google-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.google-header .google-logo {
    height: 28px;
    width: auto;
}

.google-score {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.google-score .score-max {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

.google-stars {
    display: flex;
    gap: 3px;
}

.google-stars i {
    color: #fbbc04;
    font-size: 1.1rem;
}

.google-subtitle {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 20px;
}

.google-subtitle strong {
    font-weight: 700;
    color: #1a1a2e;
}

.google-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    color: #fbbc04;
    font-size: 0.9rem;
}

.stat-item .stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-item .stat-small {
    font-size: 0.9rem;
    color: #6b7280;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4a853 0%, #c4983f 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 152, 63, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .reviews-banner {
        justify-content: center;
        padding: 30px 15px;
        min-height: 300px;
    }
    
    .google-card {
        padding: 20px;
    }
    
    .google-stats {
        gap: 15px;
    }
    
    .stat-item .stat-value {
        font-size: 1.2rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Search Form - Liquid Glass Effect */
.search-box {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
    overflow: hidden;
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
}

/* Tab Buttons - Liquid Glass */
.search-tab-buttons {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 100%
    );
    border-radius: 14px 14px 0 0;
}

.tab-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 
        0 8px 24px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tab-btn-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-size: 15px;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn.active .tab-btn-icon {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: none;
}

.tab-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
    z-index: 1;
}

.tab-btn-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.tab-btn.active .tab-btn-title {
    text-shadow: none;
}

.tab-btn-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.tab-btn.active .tab-btn-desc {
    color: rgba(255, 255, 255, 0.9);
}

.search-content {
    display: none;
    padding: 18px 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.search-content.active {
    display: block;
}

.search-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.search-box .form-group label {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.search-box .form-group label i {
    color: #ff6b35 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Liquid Glass Input Fields */
.search-box .form-select,
.search-box .form-input {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-box .form-select::placeholder,
.search-box .form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box .form-select:hover,
.search-box .form-input:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-color: rgba(255, 255, 255, 0.3);
}

.search-box .form-select:focus,
.search-box .form-input:focus {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-box .form-select option {
    background: #2c3e50;
    color: white;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-large {
    flex: 2;
}

.form-group label {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary);
}

.form-select,
.form-input {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.form-select:hover,
.form-input:hover,
.form-select:focus,
.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    height: 52px;
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Restaurant & Spa specific button colors */
.btn-search-restaurant {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.btn-search-restaurant:hover {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-search-spa {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.btn-search-spa:hover {
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.btn-search-flexible {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.btn-search-flexible:hover {
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: white;
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   Features Section
   ============================================= */
.features {
    background: white;
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--gray-100);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =============================================
   Land of Legends Section
   ============================================= */
.lol-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.lol-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 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.lol-section .container {
    position: relative;
    z-index: 1;
}

.lol-section .section-header {
    margin-bottom: 40px;
}

.lol-section .section-badge {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3), rgba(156, 39, 176, 0.1));
    color: #e1bee7;
}

.lol-section .section-title {
    color: white;
}

.lol-section .section-title .text-primary {
    background: linear-gradient(135deg, #ffd700, #ffab00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lol-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.lol-event-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.lol-event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lol-event-image {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

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

.lol-event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.lol-event-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
}

.lol-date-day {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffd700;
}

.lol-date-name {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.lol-event-content {
    padding: 15px;
}

.lol-event-time {
    font-size: 13px;
    color: #ffd700;
    margin-bottom: 8px;
}

.lol-event-time i {
    margin-right: 5px;
}

.lol-event-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lol-event-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.lol-event-location i {
    margin-right: 5px;
    color: #e91e63;
}

.lol-more {
    text-align: center;
}

.btn-lol-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
}

.btn-lol-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
}

/* LOL Mobile Responsive */
@media (max-width: 1024px) {
    .lol-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lol-section {
        padding: 40px 0;
    }
    
    .lol-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .lol-event-image {
        height: 120px;
    }
    
    .lol-event-content {
        padding: 12px;
    }
    
    .lol-event-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lol-events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .lol-event-image {
        height: 100px;
    }
    
    .lol-event-date {
        padding: 5px 8px;
    }
    
    .lol-date-day {
        font-size: 12px;
    }
    
    .lol-date-name {
        font-size: 8px;
    }
    
    .lol-event-content {
        padding: 10px;
    }
    
    .lol-event-time {
        font-size: 11px;
    }
    
    .lol-event-name {
        font-size: 12px;
    }
    
    .lol-event-location {
        font-size: 10px;
    }
}

/* =============================================
   Category Filter
   ============================================= */
.category-filter {
    background: var(--light);
    padding: 20px 0 0;
}

.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--gray-200);
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.category-tab i {
    font-size: 16px;
}

/* =============================================
   Tours Section
   ============================================= */
.tours {
    padding: 40px 0 60px;
    background: var(--light);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

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

/* Tour Card */
.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-badge.popular {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.tour-badge.discount {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.tour-image {
    position: relative;
    height: 220px;
    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.1);
}

.tour-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-card:hover .tour-image-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--secondary);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s;
}

.tour-card:hover .btn-quick-view {
    transform: translateY(0);
}

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

.tour-days {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

.tour-rating .stars {
    color: var(--accent);
    font-size: 12px;
}

.rating-text {
    font-size: 13px;
    color: var(--gray-500);
}

.tour-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tour-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 5px 10px;
    border-radius: 20px;
}

.tour-feature i {
    color: var(--primary);
    font-size: 11px;
}

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

.tour-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 100px;
}

.tour-price .price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: nowrap;
}

.price-original {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
    white-space: nowrap;
}

.price-current {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    display: inline-block;
}

.price-person {
    font-size: 13px;
    color: var(--gray-500);
    white-space: nowrap;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark);
    color: white;
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-book:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.tours-more {
    text-align: center;
    margin-top: 50px;
}

.btn-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--secondary);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
}

.btn-all-tours:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    padding: 80px 0;
    color: white;
}

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

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

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--accent);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* =============================================
   Reviews Section
   ============================================= */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-rating {
    display: inline-block;
    background: white;
    padding: 30px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.google-rating .google-logo {
    height: 30px;
    margin-bottom: 15px;
}

.rating-score {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.rating-score .max {
    font-size: 24px;
    color: var(--gray-400);
}

.rating-stars {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 10px;
}

.review-count {
    font-size: 16px;
    color: var(--gray-500);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius);
    transition: all 0.3s;
}

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

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.review-stars {
    font-size: 12px;
}

.review-date {
    color: var(--gray-500);
}

.review-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-tour {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-cta {
    text-align: center;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--secondary);
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
}

.btn-reviews:hover {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
}

.btn-reviews i {
    font-size: 20px;
}

/* =============================================
   WhatsApp CTA Section
   ============================================= */
.whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 60px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.cta-text {
    text-align: left;
    color: white;
}

.cta-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #25D366;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp i {
    font-size: 24px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-brand .logo-happy,
.footer-brand .logo-tours {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* TURSAB Badge */
.tursab-badge {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tursab-badge a {
    display: inline-block;
    transition: all 0.3s ease;
}

.tursab-badge a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.tursab-badge img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

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

/* Company Info */
.company-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    line-height: 1.5;
}

.company-info strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* =============================================
   Floating WhatsApp Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

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

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

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .header-phone {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #384c9f;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
    }
    
    .language-switcher {
        display: flex;
    }
    
    .language-switcher .lang-code {
        display: none;
    }
    
    .language-switcher .lang-current {
        padding: 6px 10px;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 15px;
        flex-direction: row;
    }
    
    .logo {
        flex-shrink: 0;
        order: 1;
        margin-right: auto;
    }
    
    .header-right {
        order: 2;
        margin-left: auto;
    }
    
    .mobile-menu-btn {
        order: 3;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Mobil Tab Butonları */
    .search-tab-buttons {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        padding: 8px;
    }
    
    .tab-btn {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: auto;
        padding: 10px 6px;
        gap: 6px;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    
    .tab-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .tab-btn-text {
        align-items: center;
    }
    
    .tab-btn-title {
        font-size: 10px;
        text-align: center;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .tab-btn-desc {
        display: none;
    }
    
    .tab-btn::before {
        display: none;
    }
    
    .search-content {
        padding: 15px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .search-box .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .search-box .form-select,
    .search-box .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-search,
    .btn-search-restaurant,
    .btn-search-spa,
    .btn-search-flexible {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .search-box {
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .features {
        padding: 30px 15px;
        margin-top: -20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .feature-card h3 {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .feature-card p {
        display: none;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-tab {
        white-space: nowrap;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card .stat-number {
        font-size: 36px;
    }
    
    .stat-card .stat-label {
        font-size: 14px;
    }
    
    .google-rating {
        padding: 25px 35px;
    }
    
    .rating-score {
        font-size: 42px;
    }
    
    .cta-content {
        text-align: center;
        gap: 25px;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 22px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: 12px 8px;
    }
    
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .feature-card h3 {
        font-size: 11px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-title {
        font-size: 16px;
        min-height: auto;
    }
    
    .price-current {
        font-size: 20px;
    }
    
    .btn-book {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Mobil 480px Tab Butonları - 5 sütun tutuyoruz */
    .search-tab-buttons {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
        padding: 6px;
    }
    
    .tab-btn {
        padding: 8px 2px;
        border-radius: 8px;
    }
    
    .tab-btn-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .tab-btn-title {
        font-size: 7px;
        font-weight: 700;
    }
    
    .search-box {
        border-radius: 12px;
        margin: 0 8px;
    }
    
    .search-content {
        padding: 10px;
    }
    
    .search-box .form-select,
    .search-box .form-input {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 10px;
        border-radius: 50%;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =============================================
   Para Birimi Seçici Stilleri
   ============================================= */
.currency-switcher {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.currency-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.currency-current:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.currency-current .currency-symbol {
    font-size: 18px;
    font-weight: 700;
}

.currency-current .currency-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.currency-current i {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.3s;
}

.currency-switcher:hover .currency-current i {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.currency-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
}

.currency-option:hover {
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

.currency-option.active {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
}

.currency-option .currency-symbol {
    font-size: 20px;
    font-weight: 700;
    width: 30px;
    text-align: center;
}

.currency-option .currency-name {
    flex: 1;
    font-weight: 500;
}

.currency-option .currency-code {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
    background: rgba(0,0,0,0.05);
    padding: 3px 8px;
    border-radius: 6px;
}

.currency-option.active .currency-code {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

/* Fiyat Güncelleme Animasyonları */
[data-price] {
    transition: all 0.3s ease;
}

.price-updating {
    opacity: 0.5;
    transform: scale(0.95);
}

.price-updated {
    animation: priceFlash 0.3s ease;
}

@keyframes priceFlash {
    0% { 
        color: #FF6B00;
        transform: scale(1.05);
    }
    100% { 
        color: inherit;
        transform: scale(1);
    }
}

/* Header'daki para birimi ve dil seçici yan yana */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .currency-switcher {
        margin-left: 5px;
    }
    
    .currency-current {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .currency-current .currency-symbol {
        font-size: 16px;
    }
    
    .currency-current .currency-code {
        display: none;
    }
    
    .currency-dropdown {
        right: -10px;
        min-width: 180px;
    }
    
    .currency-option {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .currency-current {
        padding: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
    
    .currency-current .currency-code,
    .currency-current i {
        display: none;
    }
    
    .currency-current .currency-symbol {
        font-size: 14px;
    }
}
