/* ==========================================================================
   Ayaz Turizm - Design System & Modern CSS Stylesheet
   Color Palette: Magenta `#D6257C`, Dark Charcoal `#18181B`, Soft Gray `#F8FAFC`
   ========================================================================== */

:root {
    --primary: #D6257C;
    --primary-hover: #B81B66;
    --primary-light: rgba(214, 37, 124, 0.1);
    --primary-glow: rgba(214, 37, 124, 0.25);
    
    --dark: #18181B;
    --dark-surface: #27272A;
    --dark-card: #1F2024;
    
    --text-dark: #18181B;
    --text-body: #3F3F46;
    --text-muted: #71717A;
    --text-light: #F4F4F5;
    
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0F12;
    
    --border-color: #E4E4E7;
    --border-dark: #27272A;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-pink: 0 12px 30px rgba(214, 37, 124, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: #D6257C #18181B;
}

/* ── Custom Scrollbar (Webkit) ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #18181B;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D6257C 0%, #8B1450 100%);
    border-radius: 10px;
    border: 1px solid #18181B;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #E83D8F 0%, #D6257C 100%);
}

/* ── Scroll Progress Bar (top of page) ── */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D6257C, #FF6EB4, #D6257C);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* Layout Container & Grid */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }
.color-pink { color: var(--primary) !important; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(214, 37, 124, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
}

.btn-whatsapp:hover {
    background-color: #1EBE5A;
    color: #FFF;
}

/* Typography & Section Titles */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-tag.tag-pink {
    background-color: rgba(214, 37, 124, 0.2);
    color: #FF5A9E;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 48px;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-info .divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link:hover {
    color: var(--primary);
}

.top-whatsapp {
    color: #25D366;
    font-weight: 600;
}

/* Header Navigation (Transparent Overlay over Hero Slider) */
.main-header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 14px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    top: 0;
    background: rgba(24, 24, 27, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 52px;
    width: auto;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #18181D;
    z-index: 10001;
    padding: 24px 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-logo-txt {
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.mobile-close {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-nav-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section & Modern Animated Slider */
.hero-slider-section {
    position: relative;
    height: 80vh;
    min-height: 580px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    color: #FFFFFF;
    max-width: 780px;
    padding-top: 80px;
}

.badge-hero {
    background: rgba(214, 37, 124, 0.25);
    border: 1px solid var(--primary);
    color: #FF70B2;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #FF5A9E 0%, #D6257C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 620px;
}

.slide-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Slider Navigation Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 38px;
    border-radius: var(--radius-full);
}

.slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.slider-progress-bar .progress {
    height: 100%;
    width: 0%;
    background: var(--primary);
}

/* Quick Stats Bar */
.stats-bar-section {
    background-color: var(--dark-surface);
    color: #FFF;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 12;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* About Section */
.about-images {
    position: relative;
}

.about-images .main-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #FFF;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-pink);
    border: 1px solid var(--border-color);
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-badge strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.features-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feat-icon {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.92rem;
    color: var(--text-body);
}

/* Service Cards */
.services-grid {
    margin-top: 32px;
}

.service-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-pink);
    border-color: var(--primary);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.link-btn {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-btn:hover {
    gap: 12px;
}

/* Fleet Section & Tab Filters */
.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

.fleet-card {
    background: #FFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.fleet-img {
    position: relative;
    height: 220px;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(24, 24, 27, 0.85);
    color: #FFF;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.fleet-body {
    padding: 24px;
}

.fleet-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs i {
    color: var(--primary);
}

/* Tour Cards */
.tour-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pink);
}

.tour-img {
    position: relative;
    height: 220px;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--primary);
    color: #FFF;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

.tour-content {
    padding: 24px;
}

.tour-location {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.tour-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tour-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-body);
}

/* Testimonial Cards */
.testimonial-card {
    background: #FFF;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact & Form Section */
.contact-section {
    background: linear-gradient(135deg, #0F0F12 0%, #1A1A22 100%);
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.c-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.c-icon.icon-whatsapp {
    color: #25D366;
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item strong {
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 6px;
}

.contact-form p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #FFF;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Main Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.logo-txt-pink {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-txt-white {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
}

.slogan-txt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    background-color: #0A0A0C;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 990;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-phone {
    background-color: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Quick Quote Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFF;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
}

.modal-badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 4px 0;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-card .form-group label {
    color: var(--text-dark);
}

.modal-card .form-group input,
.modal-card .form-group select {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-dark);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .slide-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .main-header { top: 0; padding: 12px 0; background: rgba(24, 24, 27, 0.9); }
    .top-bar { display: none; }
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    
    .slide-title { font-size: 2.3rem; }
    .slide-subtitle { font-size: 1rem; }
    .slide-btns { flex-direction: column; }
    .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .about-images .main-img img { height: 320px; }
    .floating-card { position: static; margin-top: 16px; }
    
    .slider-arrow { width: 42px; height: 42px; font-size: 1rem; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Interactive Tour Cards & Rich Tour Detail Modal Styles
   ========================================================================== */
.tour-category-tabs {
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tour-category-tabs .btn-category {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.tour-category-tabs .btn-category:hover,
.tour-category-tabs .btn-category.active {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    box-shadow: var(--shadow-pink);
}

/* Standalone Fullscreen Scrollable Tour Detail Modal */
.tour-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999 !important;
    background: rgba(10, 10, 15, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    overflow-y: auto !important;
    overflow-x: hidden;
    padding: 30px 15px 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-modal-container.open {
    display: block !important;
    opacity: 1 !important;
}

.tour-modal-box {
    max-width: 1100px;
    width: 100%;
    margin: 20px auto 50px;
    background: #16161C;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85), 0 0 40px rgba(214, 37, 124, 0.2);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-modal-container.open .tour-modal-box {
    transform: translateY(0);
}

.tour-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.tour-modal-close-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.tour-card {
    background: #191A20;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 37, 124, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(214, 37, 124, 0.15);
}

.tour-card .tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card .tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-img img {
    transform: scale(1.08);
}

.tour-card .tour-code-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(8px);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tour-card .tour-price-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--primary);
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-pink);
}

.tour-card .tour-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card .tour-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.tour-card h3 {
    font-size: 1.2rem;
    color: #FFF;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card .tour-meta-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-card .tour-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
}

.tour-card .tour-card-actions .view-tour-detail {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50px;
}

.tour-card .tour-card-actions .wa-quick-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    max-width: 38px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-modal-hero {
    position: relative;
    padding: 4.5rem 2.5rem 3rem;
    min-height: 340px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tour-modal-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.tour-modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #16161C 12%, rgba(22, 22, 28, 0.6) 60%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.tour-modal-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.tour-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

.tour-timeline {
    position: relative;
    margin-top: 1.5rem;
    padding-left: 20px;
    border-left: 2px dashed rgba(214, 37, 124, 0.4);
}

.tour-timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 15px;
}

.tour-timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.tour-timeline-item h4 {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 8px;
}

.tour-timeline-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: pre-line;
    line-height: 1.7;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 1rem;
}

.highlight-pill {
    background: rgba(214, 37, 124, 0.12);
    border: 1px solid rgba(214, 37, 124, 0.3);
    color: #FFF;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 600px) {
    .inc-exc-grid { grid-template-columns: 1fr; }
}

.inc-card, .exc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
}

.inc-card h4 { color: #10B981; font-size: 1.05rem; margin-bottom: 1rem; }
.exc-card h4 { color: #EF4444; font-size: 1.05rem; margin-bottom: 1rem; }

.inc-card ul, .exc-card ul {
    list-style: none;
}

.inc-card li, .exc-card li {
    font-size: 0.88rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .packing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .packing-grid {
        grid-template-columns: 1fr;
    }
}

.packing-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.2rem;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 37, 124, 0.5) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(214, 37, 124, 0.2);
}

.packing-category h5 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.packing-category ul {
    list-style: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.packing-category li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
}

.packing-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Mobile Responsive Optimizations for Tour Modal & Cards */
@media (max-width: 768px) {
    .tour-modal-container {
        padding: 0 !important;
    }
    
    .tour-modal-box {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .tour-modal-close-btn {
        top: 16px !important;
        right: 16px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
    
    .tour-modal-hero {
        padding: 2.8rem 1.2rem 1.5rem !important;
    }
    
    .tour-modal-hero-content h2 {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
    }
    
    .tour-modal-actions {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .tour-modal-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .tour-detail-grid {
        grid-template-columns: 1fr !important;
        padding: 1.2rem !important;
        gap: 1.5rem !important;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    }
    
    .packing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .related-tours-section {
        padding: 1.5rem 1.2rem !important;
    }
}

/* Print View Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #tourDetailModal, #tourDetailModal * {
        visibility: visible;
    }
    #tourDetailModal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: #FFF !important;
        color: #000 !important;
    }
    .tour-modal-box {
        box-shadow: none !important;
        border: none !important;
        color: #000 !important;
        background: #FFF !important;
    }
    .tour-modal-close-btn, .tour-modal-actions, .tour-sidebar, .related-tours-section {
        display: none !important;
    }
}

/* ==========================================================================
   Hero Floating Tour Search Widget ("Nereye Gitmek İstersiniz?")
   ========================================================================== */
.hero-search-wrapper {
    position: relative;
    z-index: 100;
    margin-top: 25px;
    margin-bottom: 45px;
}

.hero-search-card {
    background: rgba(24, 25, 32, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 37, 124, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(214, 37, 124, 0.15);
    border-radius: 24px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-field-main {
    flex: 1;
    min-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-field-icon {
    position: absolute;
    left: 18px;
    color: var(--primary);
    font-size: 1.2rem;
}

#heroSearchInput {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 14px 45px 14px 48px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.98rem;
    outline: none;
    transition: all 0.3s ease;
}

#heroSearchInput:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(214, 37, 124, 0.3);
}

#heroSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search-clear-btn {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
}

.search-tags-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-tag-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFF;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-tag-chip:hover {
    background: rgba(214, 37, 124, 0.25);
    border-color: var(--primary);
    color: #FFF;
    transform: translateY(-2px);
}

.search-btn-hero {
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .hero-search-wrapper {
        margin-top: 15px;
        margin-bottom: 25px;
    }
    
    .hero-search-card {
        flex-direction: column;
        align-items: stretch;
        border-radius: 16px;
        padding: 16px;
    }
    
    .search-field-main {
        min-width: 100%;
    }
    
    .search-btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Öğrenci Servisi & Okul Taşımacılığı Section
   ========================================================================== */
.shuttle-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 36px !important;
}

.shuttle-feat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.shuttle-feat-box:hover {
    background: rgba(214, 37, 124, 0.06);
    border-color: rgba(214, 37, 124, 0.3);
    transform: translateY(-3px);
}

.shuttle-feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(214, 37, 124, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.shuttle-feat-box h5 {
    color: #FFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.shuttle-feat-box p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
}

.shuttle-media-wrapper {
    position: relative;
    padding-bottom: 25px;
    padding-right: 25px;
}

.shuttle-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shuttle-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.shuttle-action-bar {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 24px !important;
    flex-wrap: wrap;
}

.shuttle-badge-overlay {
    position: absolute;
    bottom: -10px;
    right: -10px;
    left: auto;
    max-width: 360px;
    background: rgba(24, 25, 32, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none !important;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

/* Live Search Dropdown Menu below Hero Search Input */
.hero-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #191A20;
    border: 1px solid rgba(214, 37, 124, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(214, 37, 124, 0.2);
    border-radius: 18px;
    max-height: 360px;
    overflow-y: auto;
    z-index: 99999;
    padding: 8px;
}

.hero-search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-search-item:last-child {
    border-bottom: none;
}

.hero-search-item:hover {
    background: rgba(214, 37, 124, 0.18);
}

.hero-search-thumb {
    width: 54px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-search-info {
    flex: 1;
}

.hero-search-title {
    color: #FFF;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.hero-search-meta {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Fullscreen Catalog Modal for All Tours & Advanced Filter */
.all-tours-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.all-tours-modal-container.open {
    opacity: 1;
    visibility: visible;
}

.all-tours-modal-box {
    background: #14151B;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.all-tours-modal-header {
    padding: 24px 30px;
    background: #1A1B22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-tours-modal-header h2 {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.all-tours-modal-header p {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin: 4px 0 0 0;
}

.all-tours-modal-body {
    padding: 24px 30px;
    overflow-y: auto;
    flex: 1;
}

.catalog-filter-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    background: #191A20;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-search-box {
    flex: 1;
    min-width: 260px;
    position: relative;
    display: flex;
    align-items: center;
}

.catalog-search-box i {
    position: absolute;
    left: 16px;
    color: var(--primary);
}

.catalog-search-box input {
    width: 100%;
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px 12px 42px;
    color: #FFF;
    font-size: 0.92rem;
    outline: none;
}

.catalog-search-box input:focus {
    border-color: var(--primary);
}

.catalog-select {
    background: #121216;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
    outline: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .all-tours-modal-container {
        padding: 0;
    }
    
    .all-tours-modal-box {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    
    .all-tours-modal-header {
        padding: 16px;
    }
    
    .all-tours-modal-body {
        padding: 16px;
    }
}

/* ==========================================================================
   Standalone Tours Catalog Page Styles (turlar.html)
   ========================================================================== */
.page-banner-section {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, #181920 0%, #121216 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #FFF;
    margin-top: 10px;
    margin-bottom: 8px;
}

.page-banner-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Tours Page Sidebar & Layout */
.tours-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.tours-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #191A20;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-group {
    margin-bottom: 18px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.filter-input, .filter-select {
    width: 100%;
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 11px 14px;
    color: #FFF;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.filter-input:focus, .filter-select:focus {
    border-color: var(--primary);
}

.tours-results-bar {
    background: #191A20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.shuttle-action-bar {
    margin-top: 32px;
}

/* Pagination Bar (< 1 2 3 ... 8 >) */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding-top: 16px;
    margin-bottom: 24px;
}

.pagination-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #191A20;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
    background: rgba(214, 37, 124, 0.25);
    border-color: var(--primary);
    color: #FFF;
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFF;
    box-shadow: 0 4px 15px rgba(214, 37, 124, 0.4);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .tours-page-layout {
        grid-template-columns: 1fr;
    }
    
    .tours-sidebar {
        position: static;
    }
}

/* ==========================================================================
   View Switcher Toggle Controls (3'lü Karo, 2'li Karo, Liste Görünümü)
   ========================================================================== */
.view-switcher-group {
    display: inline-flex;
    align-items: center;
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 3px;
    gap: 4px;
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-btn:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.08);
}

.view-btn.active {
    background: var(--primary);
    color: #FFF;
    box-shadow: 0 2px 10px rgba(214, 37, 124, 0.4);
}

/* Tour Grid Display Variations */
.tours-grid.view-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.tours-grid.view-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.tours-grid.view-list-view {
    grid-template-columns: 1fr !important;
}

.tours-grid.view-list-view .tour-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.tours-grid.view-list-view .tour-img {
    width: 320px !important;
    height: auto !important;
    min-height: 220px !important;
    flex-shrink: 0 !important;
}

.tours-grid.view-list-view .tour-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .tours-grid.view-grid-3, .tours-grid.view-grid-2 {
        grid-template-columns: 1fr !important;
    }
    .tours-grid.view-list-view .tour-card {
        flex-direction: column !important;
    }
    .tours-grid.view-list-view .tour-img {
        width: 100% !important;
        height: 200px !important;
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Fixes (Fix Overflow & Alignments)
   ========================================================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .main-header {
        top: 0 !important;
        background: rgba(24, 24, 27, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 10px 0 !important;
    }

    .top-bar {
        display: none !important;
    }

    .logo-svg {
        height: 38px !important;
    }

    .hero-slider-section {
        height: 500px !important;
        min-height: 500px !important;
    }

    .slide-content {
        padding-top: 60px !important;
    }

    .slide-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }

    .slide-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .slider-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }
    
    .slider-arrow.prev { left: 10px !important; }
    .slider-arrow.next { right: 10px !important; }

    .hero-search-wrapper {
        margin-top: -30px !important;
        padding: 0 12px !important;
    }

    .hero-search-card {
        padding: 14px !important;
        gap: 12px !important;
        border-radius: 18px !important;
    }

    .search-field-main input {
        font-size: 0.88rem !important;
        padding: 12px 38px 12px 40px !important;
    }

    .search-field-icon {
        left: 14px !important;
        font-size: 1rem !important;
    }

    .floating-contact-buttons, .fixed-whatsapp-btn {
        right: 14px !important;
        bottom: 20px !important;
    }
}

