/* ============================================
   GEZİCAN TUR - Kurumsal Tur Satış Scripti
   Premium CSS - Mavi & Beyaz Temada
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #0a2540;
    --primary-light: #1e3a8a;
    --primary-hover: #061a30;
    --accent: #1e88e5;
    --accent-hover: #1976d2;
    --accent-light: #60a5fa;
    --secondary: #3b82f6;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-soft: #eff6ff;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
    --shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 10px 25px rgba(10, 37, 64, 0.10);
    --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
    --shadow-xl: 0 30px 80px rgba(10, 37, 64, 0.20);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    --gradient-accent: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    --gradient-soft: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.35);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: white;
    transform: translateY(-2px);
}

.btn-header {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* === Topbar === */
.topbar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
}

.topbar-item:hover {
    color: white;
}

.topbar-item i {
    color: var(--accent-light);
    font-size: 12px;
}

.topbar-hours {
    cursor: default;
}

.topbar-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-lang, .topbar-currency {
    margin-left: 6px;
}
.topbar-lang-form, .topbar-currency-form {
    display: inline-block;
}
.topbar-lang select, .topbar-currency select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.topbar-lang select:hover, .topbar-currency select:hover {
    background: rgba(255,255,255,0.2);
}
.topbar-lang select option, .topbar-currency select option {
    background: var(--primary);
    color: white;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 12px;
    transition: all var(--transition);
}

.topbar-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* === Main Header === */
.main-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 30px;
}

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

.logo-icon svg {
    width: 48px;
    height: 48px;
    transition: transform var(--transition);
}

.logo:hover .logo-icon svg {
    transform: rotate(-5deg) scale(1.05);
}

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

.logo-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 600;
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link i {
    font-size: 13px;
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--bg-soft);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.user-trigger:hover {
    border-color: var(--accent);
    background: white;
    box-shadow: var(--shadow-sm);
}

.user-trigger .chevron {
    font-size: 10px;
    color: var(--text-light);
    transition: transform var(--transition);
}

.user-dropdown.active .user-trigger .chevron {
    transform: rotate(180deg);
}

.user-trigger-guest {
    background: transparent;
    border-color: var(--border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.user-trigger-guest .user-avatar {
    background: var(--bg-soft);
    color: var(--accent);
    font-size: 22px;
    width: auto;
    height: auto;
}

.user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 280px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 1100;
}

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

.user-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.user-menu-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 6px;
}

.user-menu-header strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 2px;
}

.user-menu-header small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.user-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
}

.user-balance span {
    font-size: 12px;
    color: var(--text-light);
}

.user-balance strong {
    font-size: 14px;
    color: var(--success);
    margin: 0;
}

.user-menu-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    margin: 0;
    text-decoration: none;
}

.user-menu-item i {
    width: 16px;
    font-size: 13px;
    color: var(--accent);
}

.user-menu-item:hover {
    background: var(--bg-soft) !important;
    color: var(--primary) !important;
    padding-left: 18px !important;
}

.user-menu-highlight {
    background: var(--gradient-accent);
    color: white !important;
}

.user-menu-highlight i {
    color: white;
}

.user-menu-highlight:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
}

.menu-badge {
    margin-left: auto !important;
    background: var(--success) !important;
    color: white !important;
    padding: 2px 8px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

.user-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 6px 0;
}

.user-menu-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-top: 4px;
}

.user-menu-info i {
    color: #d97706;
}

.user-menu-logout {
    color: var(--danger) !important;
}

.user-menu-logout i {
    color: var(--danger) !important;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.08) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding: 60px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 136, 229, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: white;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
    padding: 4px;
}

.hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.hero-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

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

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

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* === Quick Search === */
.quick-search {
    background: white;
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-search-form {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.qs-field {
    position: relative;
}

.qs-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 14px;
    pointer-events: none;
}

.qs-field input,
.qs-field select {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
}

.qs-field input:focus,
.qs-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

/* === Categories === */
.categories-section {
    background: var(--bg-alt);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    color: var(--text);
    text-decoration: none;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    color: var(--text);
}

.cat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: transform var(--transition);
}

.category-card:hover .cat-icon {
    transform: rotate(-10deg) scale(1.05);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.cat-count {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* === Tours Grid === */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.tours-grid-page {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.tour-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

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

.tour-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.tour-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-discount {
    background: var(--danger);
}

.badge-featured {
    background: var(--warning);
}

.badge-popular {
    background: var(--accent);
}

.badge-light {
    background: rgba(255,255,255,0.95);
    color: var(--primary);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.tour-view {
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-card-body {
    padding: 22px;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    gap: 8px;
}

.tour-category,
.tour-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.tour-category i,
.tour-duration i {
    color: var(--accent);
    font-size: 10px;
}

.tour-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

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

.tour-card-destination {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tour-card-destination i {
    color: var(--accent);
}

.tour-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.price-text {
    font-size: 11px;
    color: var(--text-light);
}

/* === About Preview === */
.about-preview-section {
    background: linear-gradient(135deg, var(--bg-soft) 0%, white 100%);
}

.about-preview {
    background: linear-gradient(135deg, var(--bg-soft) 0%, white 100%);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text .lead {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-preview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.about-preview-stats .stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.about-preview-stats .stat span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-card i {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-card strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
}

.floating-card span {
    color: var(--text-light);
    font-size: 12px;
}

/* === Why Us === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(-10deg) scale(1.05);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 14.5px;
}

/* === Testimonials === */
.testimonials-section {
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 13px;
}

/* === Page Header === */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 12px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    position: relative;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    position: relative;
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

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

.breadcrumb-light {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

/* === Listings Page (Oteller / Araçlar / Konutlar / Etkinlikler) === */
.listings-section { padding: 50px 0; min-height: 60vh; }
.listings-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* === Tours Page (eski) === */
.tours-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}
.listings-filter {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: max-content;
    position: sticky;
    top: 100px;
}
.listings-filter h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}
.filter-group { margin-bottom: 16px; }
.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.filter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #fff;
}
.filter-input:focus { outline: none; border-color: var(--primary-light); }
.listings-header { margin-bottom: 20px; padding: 12px 16px; background: #fff; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.listings-header p { color: #374151; font-size: 14px; }
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    color: inherit;
    display: block;
    text-decoration: none;
}
.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e88e5, #0a2540);
}
.listing-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s;
}
.listing-card:hover .listing-image img { transform: scale(1.05); }
.listing-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 48px;
}
.listing-type-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.listing-type-badge i { color: var(--primary-light); margin-right: 3px; }
.stars-badge {
    background: rgba(255,255,255,0.95);
    color: #fbbf24;
    font-size: 11px;
    letter-spacing: 1px;
}
.listing-rating-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(0,0,0,0.7);
    color: #fbbf24;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.listing-date-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}
.date-day { font-size: 22px; font-weight: 800; line-height: 1; }
.date-month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.date-year { font-size: 10px; opacity: 0.7; }
.listing-body { padding: 16px; }
.listing-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}
.listing-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}
.listing-location i { color: var(--primary-light); margin-right: 4px; }
.listing-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}
.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}
.listing-meta span {
    font-size: 12px;
    color: #4b5563;
}
.listing-meta i { color: var(--primary-light); margin-right: 4px; }
.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.listing-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}
.listing-price span { font-size: 12px; font-weight: 400; color: #6b7280; }
.empty-state {
    background: #fff;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.empty-state i { font-size: 48px; color: #d1d5db; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; color: #1a1a1a; margin-bottom: 8px; }
.empty-state p { color: #6b7280; margin-bottom: 20px; }
.btn-block { display: block; width: 100%; padding: 12px 20px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

@media (max-width: 768px) {
    .listings-layout { grid-template-columns: 1fr; }
    .listings-filter { position: static; }
    .listings-grid { grid-template-columns: 1fr; }
}

.filters-sidebar {
    position: sticky;
    top: 100px;
    height: max-content;
}

.filter-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.filter-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.filter-card h3 i {
    color: var(--accent);
}

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

.filter-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-form .btn {
    margin-top: 8px;
}

.quick-filters {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-filters a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    display: block;
}

.quick-filters a:hover,
.quick-filters a.active {
    background: var(--bg-soft);
    color: var(--accent);
}

.help-card {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    border: none;
}

.help-card i {
    font-size: 36px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.help-card h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 18px;
}

.help-card p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.empty-state {
    background: white;
    border-radius: var(--radius-md);
    padding: 60px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.empty-state i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* === CTA Banner === */
.cta-banner {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text { flex: 1; min-width: 280px; }

.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20bd5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-light {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

/* === Newsletter === */
.newsletter {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 280px; }

.newsletter-text h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 700;
    color: #0a2540;
}

.newsletter-text h3 i { color: #1e88e5; font-size: 20px; }

.newsletter-text p {
    margin: 0;
    color: #6b7280;
    font-size: 14.5px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
    min-width: 280px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14.5px;
    background: white;
    color: #374151;
    transition: all 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.newsletter-form button {
    padding: 14px 24px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.35);
}

/* === Footer === */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding-top: 70px;
}

/* Mobil Uygulama Bandı */
.footer-apps {
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    padding: 26px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-apps-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-apps-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}
.footer-apps-text strong {
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-apps-text strong i {
    color: #4fc3f7;
    font-size: 20px;
}
.footer-apps-text span {
    font-size: 13.5px;
    opacity: 0.85;
}
.footer-apps-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.app-badge {
    display: inline-block;
    line-height: 0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.app-badge img {
    display: block;
    width: 135px;
    height: 40px;
    object-fit: contain;
}
@media (max-width: 640px) {
    .footer-apps-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-apps-badges {
        justify-content: center;
    }
    .footer-apps-text {
        align-items: center;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4.footer-title {
    color: white;
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-col-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 44px;
    height: 44px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

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

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.footer-badge i {
    color: var(--accent-light);
    font-size: 12px;
}

.footer-links li,
.footer-contact li {
    padding: 6px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--accent);
    font-size: 10px;
    transition: transform var(--transition);
}

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

.footer-links a:hover i {
    transform: translateX(2px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--accent-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
}

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

.footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-banks li {
    background: rgba(255,255,255,0.05);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    border-left: 2px solid var(--accent);
}

.footer-banks strong {
    display: block;
    color: white;
    font-size: 13px;
    margin-bottom: 2px;
}

.footer-banks span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-family: 'Courier New', monospace;
}

.footer-payments {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-payments i {
    font-size: 30px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-payments i:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-credit {
    color: var(--accent-light);
    font-weight: 500;
}

.footer-credit-link {
    color: #fbbf24 !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px dotted rgba(251, 191, 36, 0.5);
    padding-bottom: 1px;
}

.footer-credit-link:hover {
    color: #fde68a !important;
    border-bottom-color: #fde68a;
    border-bottom-style: solid;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

/* === Floating Buttons === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col-brand {
        grid-column: span 2;
    }
    
    .tours-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .tour-detail-grid,
    .contact-grid,
    .about-grid,
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .header-inner {
        padding: 14px 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .btn-header span {
        display: none;
    }
    
    .btn-header {
        padding: 10px;
        width: 40px;
        height: 40px;
    }
    
    .hero {
        min-height: auto;
        padding: 50px 0 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 28px;
        padding: 0 12px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
        margin-top: 40px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stat strong {
        font-size: 28px;
    }

    .hero-stat span {
        font-size: 11px;
    }

    .hero-scroll {
        display: none;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .quick-search-form {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col-brand {
        grid-column: span 1;
    }
    
    .cta-inner,
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat strong {
        font-size: 24px;
    }
    
    .tour-hero {
        min-height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 22px;
        padding: 0 4px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        padding: 0 4px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 13.5px;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 6px;
        margin-top: 32px;
        max-width: 280px;
        padding: 0 4px;
    }

    .hero-stat {
        padding: 6px 2px;
    }

    .hero-stat strong {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .hero-stat span {
        font-size: 9.5px;
        letter-spacing: 0.4px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 9px;
    }
}

/* === Utility === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.hidden { display: none; }/* ============================================
   GEZİCAN TUR - Auth (Giriş/Kayıt) & Payment
   ============================================ */

/* === Auth Page === */
.auth-page {
    min-height: calc(100vh - 200px);
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.auth-form-side {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.auth-brand svg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.auth-brand h1 {
    font-size: 22px;
    color: var(--primary);
    margin: 0 0 4px;
}

.auth-brand p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.auth-brand p strong {
    color: var(--accent);
}

.auth-alert {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger);
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.auth-tab.active {
    background: white;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 6px;
    font-size: 14px;
}

.password-toggle:hover {
    color: var(--accent);
}

.form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 16px;
    font-size: 13px;
}

.form-extras a {
    color: var(--accent);
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 2px;
    accent-color: var(--accent);
}

.checkbox-label a {
    color: var(--accent);
    font-weight: 600;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: white;
    padding: 0 14px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-btn {
    padding: 11px;
    border: 1.5px solid var(--border);
    background: white;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-btn.google { color: #ea4335; }
.social-btn.facebook { color: #1877f2; }

/* === Auth Benefits === */
.auth-benefits-side {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.auth-benefits-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(96,165,250,0.3) 0%, transparent 50%);
}

.auth-benefits {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auth-benefits h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-benefits > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.benefit-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
}

.benefit-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.testimonial-mini {
    margin-top: auto;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-mini .testimonial-stars {
    color: #fbbf24;
    margin-bottom: 8px;
    font-size: 13px;
}

.testimonial-mini p {
    color: white;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-mini strong {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
}

/* === Payment Page === */
.payment-page {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-form-side,
.payment-summary-side {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.payment-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.payment-header h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    margin-bottom: 4px;
}

.payment-header h2 i {
    color: var(--success);
}

.payment-header p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-header p i {
    color: var(--success);
}

.payment-form .form-group {
    margin-bottom: 14px;
}

.payment-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    padding-right: 130px;
}

.card-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    font-size: 22px;
    color: var(--text-muted);
    pointer-events: none;
}

.cvv-wrapper {
    position: relative;
}

.cvv-wrapper input {
    padding-right: 36px;
}

.cvv-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: help;
}

.installment-info {
    margin-top: 6px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-light);
}

.installment-info i {
    color: var(--accent);
    margin-right: 4px;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.security-item i {
    color: var(--success);
    font-size: 14px;
}

#payButton {
    position: relative;
    height: 56px;
    font-size: 16px;
}

/* Summary Card */
.summary-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.summary-card h3 i {
    color: var(--accent);
}

.summary-tour {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.summary-tour img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.summary-tour strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.summary-tour small {
    color: var(--text-light);
    font-size: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row span {
    color: var(--text-light);
}

.summary-row strong {
    color: var(--primary);
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.summary-total {
    font-size: 18px !important;
    padding: 12px 0;
}

.summary-total span {
    color: var(--primary) !important;
    font-weight: 700;
}

.summary-total strong {
    color: var(--accent) !important;
    font-size: 22px;
    font-weight: 800;
}

.summary-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.summary-empty i {
    font-size: 36px;
    color: var(--warning);
    margin-bottom: 12px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.trust-badge {
    text-align: center;
    padding: 10px 6px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
}

.trust-badge i {
    color: var(--success);
    font-size: 16px;
    margin-bottom: 4px;
}

.trust-badge span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
}

.summary-note {
    margin-top: 16px;
    padding: 12px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.summary-note i {
    color: #d97706;
    margin-top: 2px;
}

.summary-note small {
    color: #92400e;
    font-size: 11px;
    line-height: 1.5;
}

/* === Payment Success === */
.payment-success-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.success-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-card h1 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.success-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.success-details {
    background: var(--bg-soft);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: var(--text-light);
    font-size: 14px;
}

.detail-row strong {
    color: var(--primary);
    font-size: 14px;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.success-email-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
}

.success-email-note i {
    color: var(--accent);
}

/* === Mobile === */
@media (max-width: 1024px) {
    .auth-wrapper, .payment-wrapper {
        grid-template-columns: 1fr;
    }
    .auth-benefits-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    .auth-form-side, .auth-benefits-side, .payment-form-side, .payment-summary-side {
        padding: 24px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .social-login {
        grid-template-columns: 1fr;
    }
    .trust-badges {
        grid-template-columns: 1fr;
    }
    .payment-form .form-row-2 {
        grid-template-columns: 1fr;
    }
    .card-input-wrapper input {
        padding-right: 14px;
    }
    .card-icons {
        display: none;
    }
}

/* === Modal === */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 16px;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 768px) {
    .modal-content { width: 95%; }
    .modal-footer { flex-direction: column; }
    .modal-footer .btn { width: 100%; }
}/* ============================================
   GEZİCAN TUR - Müşteri Paneli CSS
   ============================================ */

.member-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

.member-sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.sidebar-user strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.sidebar-user small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.sidebar-balance-card {
    margin: 16px;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
}

.balance-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    font-size: 24px;
    font-weight: 800;
    margin: 4px 0 12px;
}

.balance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.balance-stats div small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.balance-stats div strong {
    display: block;
    font-size: 13px;
    margin-top: 2px;
}

.member-nav {
    flex: 1;
    padding: 8px 12px;
}

.member-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    transition: all 0.2s;
    position: relative;
}

.member-nav-link i {
    width: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.member-nav-link:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.member-nav-link.active {
    background: var(--bg-soft);
    color: var(--accent);
    font-weight: 600;
}

.member-nav-link.active i {
    color: var(--accent);
}

.member-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: var(--accent);
    border-radius: 2px;
}

.member-nav-divider {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 14px 8px;
}

.member-nav-logout {
    color: var(--danger) !important;
}

.member-nav-logout i {
    color: var(--danger) !important;
}

.nav-badge {
    margin-left: auto;
    background: var(--success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.member-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.member-topbar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.member-topbar h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-soft);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.topbar-user i {
    color: var(--accent);
}

.member-content {
    flex: 1;
    padding: 24px;
}

/* Welcome Banner */
.welcome-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.welcome-text h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 6px;
}

.welcome-text p {
    color: rgba(255,255,255,0.9);
}

.welcome-actions {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Member Stats */
.member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.m-stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(15,23,42,0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.m-stat-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
}

.m-stat-card.m-stat-blue::before { background: var(--accent); }
.m-stat-card.m-stat-green::before { background: var(--success); }
.m-stat-card.m-stat-purple::before { background: #8b5cf6; }
.m-stat-card.m-stat-orange::before { background: var(--warning); }

.m-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15,23,42,0.08);
}

.m-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.m-stat-blue .m-stat-icon { background: rgba(30,136,229,0.1); color: var(--accent); }
.m-stat-green .m-stat-icon { background: rgba(16,185,129,0.1); color: var(--success); }
.m-stat-purple .m-stat-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.m-stat-orange .m-stat-icon { background: rgba(245,158,11,0.1); color: var(--warning); }

.m-stat-info span { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.m-stat-info strong { font-size: 22px; font-weight: 800; color: var(--primary); display: block; margin: 2px 0; }
.m-stat-info small { font-size: 11px; color: var(--text-muted); }

/* Member Grid */
.member-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.member-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* Invite Summary */
.invite-summary {
    text-align: center;
}

.invite-code-box {
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.invite-code-box small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.invite-code {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.invite-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.ism-item strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
}

.ism-item span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

/* Booking List */
.booking-list {
    display: flex;
    flex-direction: column;
}

.booking-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.2s;
}

.booking-card:hover {
    background: var(--bg-soft);
}

.booking-card:last-child {
    border-bottom: none;
}

.booking-card-image {
    width: 120px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-soft);
}

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

.booking-card-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 24px;
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.booking-card-header h3 {
    font-size: 16px;
    margin: 0;
    color: var(--primary);
}

.booking-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 6px;
}

.booking-card-meta span {
    font-size: 13px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.booking-card-meta i {
    color: var(--accent);
}

.booking-notes {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.booking-card-price {
    text-align: right;
}

.booking-card-price small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-card-price strong {
    display: block;
    font-size: 22px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
}

/* Profile Summary */
.profile-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
}

.profile-stat i {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.profile-stat span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.profile-stat strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.quick-link:hover {
    background: var(--accent);
    color: white;
}

.quick-link:hover i {
    color: white;
}

.quick-link i {
    color: var(--accent);
    width: 16px;
}

.quick-link-danger {
    color: var(--danger);
}

.quick-link-danger i {
    color: var(--danger);
}

.quick-link-danger:hover {
    background: var(--danger);
    color: white;
}

/* Password Tips */
.password-tips {
    background: var(--bg-soft);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border-left: 3px solid var(--accent);
}

.password-tips strong {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 13px;
}

.password-tips strong i {
    color: var(--accent);
}

.password-tips ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 1024px) {
    .member-sidebar {
        transform: translateX(-100%);
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
    }
    .member-sidebar.active { transform: translateX(0); }
    .member-main { margin-left: 0; }
    .sidebar-toggle { display: block; }
    .member-grid, .member-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .member-content { padding: 16px; }
    .booking-card { grid-template-columns: 80px 1fr; gap: 12px; }
    .booking-card-image { width: 80px; height: 80px; }
    .booking-card-price { grid-column: span 2; text-align: left; padding-top: 10px; border-top: 1px solid var(--border-light); }
    .balance-stats { grid-template-columns: 1fr; }
    .welcome-banner { flex-direction: column; text-align: center; }
}

/* === Referans / Davet Sayfası === */
.referral-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 36px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.referral-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(96,165,250,0.3) 0%, transparent 50%);
}

.referral-hero-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.rh-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(251,191,36,0.2);
    border: 1px solid rgba(251,191,36,0.4);
    color: #fde68a;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rh-left h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 12px;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rh-left p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    line-height: 1.6;
}

.rh-right {
    display: flex;
    gap: 16px;
}

.rh-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 140px;
}

.rh-stat strong {
    display: block;
    font-size: 20px;
    color: white;
}

.rh-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.referral-link-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.referral-link-box input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 13px;
    background: var(--bg-soft);
    color: var(--text);
}

.referral-code-display {
    text-align: center;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.referral-code-display small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-big {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.share-buttons h4 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 14px;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: white !important;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white !important;
}

.share-btn.whatsapp { background: var(--whatsapp); }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.telegram { background: #0088cc; }

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    position: relative;
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 36px;
    color: var(--accent);
    margin: 16px 0 12px;
}

.step-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.payout-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.payout-info p i {
    color: var(--accent);
    margin-top: 2px;
}

.payout-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
    margin-bottom: 12px;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--info);
}

.alert-info i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .referral-hero { padding: 24px; }
    .rh-left h2 { font-size: 22px; }
    .rh-right { flex-direction: column; width: 100%; }
    .rh-stat { width: 100%; }
    .referral-link-box { flex-direction: column; }
    .payout-form .form-row-2 { grid-template-columns: 1fr; }
}
/* ============================================
   TUR DETAY PROFESYONEL
   ============================================ */

/* Tab Sistemi */
.tour-tabs-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 20px;
}

.tour-tabs {
    display: flex;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tour-tabs::-webkit-scrollbar {
    display: none;
}

.tour-tab {
    flex: 0 0 auto;
    padding: 14px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tour-tab:hover {
    color: var(--accent);
    background: white;
}

.tour-tab.active {
    color: var(--accent);
    background: white;
    border-bottom-color: var(--accent);
}

.tour-tab-content {
    display: none;
    padding: 30px;
}

.tour-tab-content.active {
    display: block;
}

.tour-tab-content h2 {
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-tab-content h2 i {
    color: var(--accent);
}

.tour-tab-content h3 {
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-tab-content h3 i {
    color: var(--accent);
}

/* Quick Facts */
.quick-facts {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.quick-facts h3 {
    margin-bottom: 16px;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.qf-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.qf-item i {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.qf-item small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qf-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

/* Gallery Large */
.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 24px;
    align-items: center;
}

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

.rating-big strong {
    display: block;
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
}

.rating-big .stars {
    color: #fbbf24;
    font-size: 16px;
    margin: 6px 0;
}

.rating-big small {
    color: var(--text-light);
    font-size: 12px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rb-row {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.rb-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rb-bar > div {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
}

.rb-row span:first-child {
    color: var(--text-light);
}

.rb-row span:last-child {
    text-align: right;
    color: var(--text);
    font-weight: 600;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card {
    padding: 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.review-header > div:nth-child(2) {
    flex: 1;
}

.review-header strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
}

.review-header small {
    color: var(--text-muted);
    font-size: 12px;
}

.review-rating {
    font-size: 14px;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-soft);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Social Share Box */
.social-share-box {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-top: 20px;
}

.social-share-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-share-box h4 i {
    color: var(--accent);
}

.share-buttons-inline {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 16px;
    transition: all 0.2s;
}

.share-link:hover {
    transform: translateY(-3px) scale(1.05);
    color: white !important;
}

.share-link.whatsapp { background: var(--whatsapp); }
.share-link.facebook { background: #1877f2; }
.share-link.twitter { background: #1da1f2; }
.share-link.telegram { background: #0088cc; }
.share-link.email { background: var(--text-light); }

/* Price Summary in Booking Form */
.price-summary {
    background: var(--bg-soft);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
}

.ps-row span {
    color: var(--text-light);
}

.ps-row strong {
    color: var(--primary);
    font-weight: 700;
}

.ps-total {
    padding-top: 8px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
    font-size: 16px;
}

.ps-total span {
    color: var(--primary) !important;
    font-weight: 700;
}

.ps-total strong {
    color: var(--accent) !important;
    font-size: 20px;
}

/* Hero Actions */
.tour-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.discount-badge {
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

.member-welcome {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-welcome i {
    color: var(--success);
    font-size: 18px;
}

.member-cta {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.member-cta i {
    color: #d97706;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.member-cta strong {
    display: block;
    color: #92400e;
    font-size: 13px;
    margin-bottom: 4px;
}

.member-cta a {
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

.trust-card {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.trust-card h4 {
    color: white !important;
}

.trust-card h4 i {
    color: var(--accent-light) !important;
}

.trust-card .features-list li {
    color: rgba(255,255,255,0.9) !important;
}

.trust-card .features-list li i {
    color: var(--success) !important;
}

.trust-rating {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.trust-rating strong {
    display: block;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.trust-rating small {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.date-card {
    flex-direction: column;
    text-align: center;
    padding: 14px;
}

.date-card .date-status {
    display: block;
    color: var(--success);
    font-weight: 600;
    font-size: 11px;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 4px;
}

/* === TAM MOBİL UYUMLULUK === */
@media (max-width: 1024px) {
    .tour-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .tour-tab {
        font-size: 13px;
        padding: 12px 14px;
    }
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tour-tab-content {
        padding: 20px;
    }
    .tour-tab-content h2 {
        font-size: 18px;
    }
    .tour-tab {
        font-size: 12px;
        padding: 12px;
    }
    .tour-tab i {
        display: none;
    }
    .tour-hero-content {
        padding: 30px 16px 40px;
    }
    .tour-hero-content h1 {
        font-size: 26px;
    }
    .tour-hero-content p {
        font-size: 14px;
    }
    .tour-hero-actions {
        flex-direction: column;
        gap: 8px;
    }
    .tour-hero-actions .btn {
        width: 100%;
    }
    .tour-hero-badges {
        gap: 6px;
    }
    .tour-hero-badges .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    .tour-hero-price {
        flex-wrap: wrap;
        gap: 8px;
    }
    .price-current {
        font-size: 28px !important;
    }
    .quick-facts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .qf-item {
        padding: 12px;
    }
    .qf-item i {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .gallery-grid-large {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .review-header {
        flex-wrap: wrap;
    }
    .review-rating {
        margin-left: auto;
    }
    .share-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .breadcrumb {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .tour-tabs {
        scrollbar-width: thin;
    }
    .tour-tab {
        padding: 10px 12px;
        font-size: 11px;
    }
    .tour-tab-content {
        padding: 16px;
    }
    .quick-facts-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid-large {
        grid-template-columns: 1fr;
    }
    .program-day {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }
    .program-day-marker {
        width: 44px;
        height: 44px;
    }
    .day-num {
        font-size: 18px !important;
    }
    .day-label {
        font-size: 8px !important;
    }
    .included-grid {
        grid-template-columns: 1fr;
    }
    .auth-wrapper {
        gap: 20px;
    }
    .auth-form-side, .auth-benefits-side {
        padding: 20px;
    }
    .payment-form-side, .payment-summary-side {
        padding: 20px;
    }
    .success-card {
        padding: 30px 20px;
    }
    .success-card h1 {
        font-size: 22px;
    }
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    .referral-hero {
        padding: 20px;
    }
    .rh-left h2 {
        font-size: 20px;
    }
    .rh-right {
        flex-direction: column;
    }
    .how-it-works {
        grid-template-columns: 1fr;
    }
    .code-big {
        font-size: 28px;
    }
    .login-field input, .form-group input {
        font-size: 16px !important; /* iOS zoom engelleme */
    }
    .user-menu {
        min-width: 260px;
    }
    .header-actions {
        gap: 6px;
    }
    .user-name {
        display: none;
    }
    .user-trigger {
        padding: 4px 8px;
    }
}

/* iPhone safe area */
@supports (padding: max(0px)) {
    .header-inner, .container {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
}

/* ============================================
   YENİ LOGO + DÜZELTİLMİŞ HEADER
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 4px 0;
}

.logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: transform 0.3s ease;
}
svg.logo-img {
    display: block;
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    gap: 30px;
}

/* Sidebar logo */
.sidebar-brand {
    padding: 18px 18px 14px !important;
    text-align: center;
    flex-direction: column !important;
    gap: 6px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.sidebar-brand-sub {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Footer logo */
.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}
svg.footer-logo-img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* ============================================
   ÜYE DROPDOWN - KİBAR & MOBİLDEKİ GİBİ
   ============================================ */
.user-dropdown {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 1px 3px rgba(15,23,42,0.05);
}

.user-trigger:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(30,136,229,0.15);
    transform: translateY(-1px);
}

.user-trigger .chevron {
    font-size: 11px;
    color: var(--text-light);
    transition: transform 0.25s ease;
}

.user-dropdown.active .user-trigger .chevron {
    transform: rotate(180deg);
}

.user-trigger-guest {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border-color: #cbd5e1;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.user-trigger-guest .user-avatar,
.user-trigger-guest i.fa-user-circle {
    background: linear-gradient(135deg, #f97316, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 24px;
    width: auto;
    height: auto;
}

.user-name {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
}

/* Dropdown Menü - Modern & Kibar */
.user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 290px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10,37,64,0.18), 0 0 1px rgba(10,37,64,0.1);
    border: 1px solid var(--border-light);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.2s ease;
    z-index: 1100;
    overflow: hidden;
}

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

.user-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    transform: rotate(45deg);
}

.user-menu-header {
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.umh-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30,136,229,0.3);
}

.user-menu-header strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.2;
    word-break: break-word;
}

.user-menu-header small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    word-break: break-all;
}

.user-menu-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    font-size: 13px;
    color: #065f46;
    border-bottom: 1px solid var(--border-light);
}

.user-menu-balance i {
    color: var(--success);
}

.user-menu-balance span {
    color: #065f46;
}

.user-menu-balance strong {
    margin-left: auto;
    color: #059669;
    font-size: 14px;
    font-weight: 700;
}

.user-menu-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 11px 18px !important;
    color: var(--text) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.user-menu-item i {
    width: 18px;
    font-size: 14px;
    color: var(--accent);
    text-align: center;
    flex-shrink: 0;
}

.user-menu-item span {
    flex: 1;
}

.user-menu-item:hover {
    background: var(--bg-soft) !important;
    color: var(--primary) !important;
    border-left-color: var(--accent);
    padding-left: 20px !important;
}

.user-menu-highlight {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    margin: 4px 8px;
    border-radius: 10px;
    border-left: none !important;
}

.user-menu-highlight i {
    color: #f97316;
}

.user-menu-highlight:hover {
    background: linear-gradient(135deg, #f97316 0%, #facc15 100%) !important;
    color: white !important;
}

.user-menu-highlight:hover i,
.user-menu-highlight:hover span {
    color: white !important;
}

.menu-badge {
    background: var(--success) !important;
    color: white !important;
    padding: 2px 8px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-left: auto !important;
}

.user-menu-highlight .menu-badge {
    background: #f97316 !important;
    color: white !important;
}

.user-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 4px 0;
}

.user-menu-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 13px;
    line-height: 1.4;
}

.user-menu-info i {
    color: #d97706;
    font-size: 18px;
    flex-shrink: 0;
}

.user-menu-info strong {
    color: #d97706;
}

.user-menu-logout {
    color: var(--danger) !important;
    margin: 4px 8px 8px !important;
    border-radius: 0 0 16px 16px !important;
}

.user-menu-logout i {
    color: var(--danger) !important;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.08) !important;
    color: var(--danger) !important;
    border-left-color: var(--danger) !important;
}

/* ============================================
   HERO MOBİL DÜZELTMESİ
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 100px 0 80px;
}

.hero-title {
    font-size: clamp(32px, 5.5vw, 60px) !important;
    line-height: 1.1;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 19px) !important;
    padding: 0 10px;
}

.hero-badge {
    font-size: 12px !important;
    padding: 6px 14px !important;
}

.hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

.hero-stat strong {
    font-size: 28px !important;
}

.hero-stat span {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
}

.hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn {
    width: 100%;
    padding: 14px 20px !important;
    font-size: 14px !important;
}

@media (min-width: 769px) {
    .hero {
        min-height: 90vh;
    }
    .hero-title {
        font-size: clamp(40px, 6vw, 60px) !important;
    }
    .hero-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        max-width: 700px !important;
    }
    .hero-actions {
        flex-direction: row !important;
        max-width: none;
    }
    .hero-actions .btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
    }
    .hero-stat strong {
        font-size: 22px !important;
    }
    .hero-stats {
        gap: 12px !important;
    }
}

/* ============================================
   KURUMSAL MÜŞTERİ YORUMLARI
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonials-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    margin-top: 16px;
}

.trs-big {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.trs-stars {
    color: #fbbf24;
    font-size: 16px;
}

.trs-info {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.trs-info strong {
    color: var(--primary);
    font-weight: 700;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    right: 20px;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(15,23,42,0.12);
    border-color: var(--accent);
}

.tc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.tc-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30,136,229,0.3);
}

.tc-info strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 2px;
}

.tc-info-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.tc-verified {
    color: var(--success);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(16,185,129,0.1);
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.tc-stars {
    color: #fbbf24;
    margin-bottom: 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.tc-tour {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-soft);
    border-radius: 50px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.tc-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14.5px;
    margin-bottom: 16px;
    flex: 1;
}

.tc-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.tc-date i {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .testimonials-rating-summary {
        flex-direction: column;
        gap: 6px;
        padding: 14px 20px;
    }
}

/* ============================================
   FOOTER PROFESYONEL
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(249,115,22,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(30,136,229,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4.footer-title {
    color: white;
    font-size: 15px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-col h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #facc15);
    border-radius: 2px;
}

.footer-col-brand {
    max-width: 380px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
    color: rgba(255,255,255,0.75);
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.footer-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 2px;
}

.footer-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.footer-badge i {
    color: #fbbf24;
    font-size: 12px;
}

.footer-links li,
.footer-contact li {
    padding: 6px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: #f97316;
    font-size: 10px;
    transition: transform 0.2s ease;
}

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

.footer-links a:hover i {
    transform: translateX(3px);
    color: #facc15;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: #fbbf24;
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f97316, #facc15);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-input {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.footer-newsletter-input input {
    flex: 1;
    padding: 11px 14px;
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 13px;
}

.footer-newsletter-input input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter-input input:focus {
    outline: none;
}

.footer-newsletter-input button {
    padding: 0 16px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-newsletter-input button:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom strong {
    color: #fbbf24;
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-payments i {
    font-size: 28px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-payments i:hover {
    color: white;
}

.footer-payments-label {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col-brand {
        grid-column: span 1;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .header-inner {
        padding: 10px 16px;
        gap: 12px;
    }
    .logo-img {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 6px;
    }
    .user-name {
        display: none;
    }
    .user-trigger {
        padding: 4px 8px;
    }
    .user-avatar, .umh-avatar {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .user-menu {
        min-width: 270px;
        right: -50px;
    }
    .footer-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   TUR DETAY YORUM ALANI - KURUMSAL
   ============================================ */

/* Rating Özeti */
.review-summary-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin: 24px 0 32px;
}

.rsc-left {
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 32px;
}

.rsc-big-rating {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.rsc-big-rating strong {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    background: linear-gradient(135deg, #f97316, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rsc-big-rating small {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.rsc-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rsc-meta {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}

.rsc-meta strong {
    font-weight: 700;
    color: var(--primary);
}

.rsc-trust {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(16,185,129,0.1);
    color: var(--success);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.rsc-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.rsc-bar-row {
    display: grid;
    grid-template-columns: 50px 1fr 30px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.rsc-bar-label {
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rsc-bar-label i {
    color: #fbbf24;
    font-size: 12px;
}

.rsc-bar {
    height: 10px;
    background: rgba(15,23,42,0.06);
    border-radius: 5px;
    overflow: hidden;
}

.rsc-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.6s ease;
}

.rsc-bar-count {
    text-align: right;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
}

/* Yorum Yazma Formu */
.review-write-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}

.rwc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.rwc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.rwc-header strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.rwc-header small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 2px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.rf-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.rf-field input,
.rf-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background: var(--bg-soft);
    transition: all 0.2s;
}

.rf-field input:focus,
.rf-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}

.rf-field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Yıldız Seçici */
.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 24px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    color: #cbd5e1;
    transition: all 0.2s;
    margin: 0;
}

.star-rating-input label i {
    transition: all 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-rating-input input:checked ~ label i {
    filter: drop-shadow(0 2px 4px rgba(251,191,36,0.4));
}

.rf-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rf-actions small {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rf-actions small i {
    color: var(--accent);
}

/* Login Prompt */
.review-login-prompt {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid #f97316;
    border-radius: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.review-login-prompt > i {
    font-size: 40px;
    color: #f97316;
    flex-shrink: 0;
}

.review-login-prompt strong {
    display: block;
    color: #92400e;
    font-size: 15px;
    margin-bottom: 4px;
}

.review-login-prompt p {
    color: #b45309;
    font-size: 13px;
    margin: 0;
}

/* Sıralama Bar */
.review-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.review-sort-bar > span {
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-sort-bar > span strong {
    color: var(--accent);
    font-size: 16px;
}

.review-sort-bar > span i {
    color: var(--accent);
}

.sort-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.sort-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.sort-btn i {
    font-size: 11px;
}

/* Profesyonel Yorum Kartı */
.reviews-list-pro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-pro {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s;
    position: relative;
}

.review-pro:hover {
    box-shadow: 0 8px 30px rgba(15,23,42,0.08);
    border-color: var(--border);
}

.review-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 14px 0 0 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.review-pro:hover::before {
    opacity: 1;
}

.rp-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.rp-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30,136,229,0.25);
}

.rp-user {
    flex: 1;
    min-width: 0;
}

.rp-user-name {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.rp-user-name strong {
    color: var(--primary);
    font-size: 15px;
}

.rp-verified {
    color: var(--success);
    font-size: 16px;
}

.rp-user-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.rp-user-meta i {
    color: var(--accent);
    margin-right: 3px;
}

.rp-rating {
    text-align: right;
    flex-shrink: 0;
}

.rp-stars {
    color: #fbbf24;
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 1px;
    margin-bottom: 2px;
}

.rp-stars .empty {
    color: #cbd5e1;
}

.rp-rating-num {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.rp-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.rp-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14.5px;
    margin: 0 0 14px;
}

.rp-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.rp-pro, .rp-con {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.5;
}

.rp-pro {
    background: rgba(16,185,129,0.06);
    border-left: 3px solid var(--success);
}

.rp-con {
    background: rgba(239,68,68,0.06);
    border-left: 3px solid var(--danger);
}

.rp-pro i, .rp-con i {
    margin-top: 2px;
    flex-shrink: 0;
}

.rp-pro i { color: var(--success); }
.rp-con i { color: var(--danger); }

.rp-pro small, .rp-con small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    color: var(--text);
}

.rp-pro small { color: var(--success); }
.rp-con small { color: var(--danger); }

/* Admin Yanıtı */
.rp-admin-reply {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 3px solid var(--accent);
    padding: 16px 18px;
    border-radius: 10px;
    margin: 14px 0;
}

.rpar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.rpar-header i {
    color: var(--accent);
    font-size: 14px;
}

.rpar-header strong {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.rpar-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rp-admin-reply p {
    color: var(--text);
    line-height: 1.6;
    font-size: 13.5px;
    margin: 0;
    font-style: italic;
}

/* Footer (Faydalı, Paylaş) */
.rp-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid var(--border-light);
}

.rp-helpful {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg-soft);
    border-radius: 50px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.rp-helpful:hover {
    background: var(--accent);
    color: white;
}

.rp-helpful i {
    color: var(--accent);
    transition: color 0.2s;
}

.rp-helpful:hover i {
    color: white;
}

.rp-helpful strong {
    margin-left: 4px;
    font-weight: 700;
}

.rp-share {
    margin-left: auto;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s;
}

.rp-share:hover {
    color: var(--accent);
}

/* No reviews state */
.no-reviews-yet {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-soft);
    border-radius: 14px;
}

.no-reviews-yet i {
    font-size: 56px;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 14px;
}

.no-reviews-yet h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

.no-reviews-yet p {
    color: var(--text-light);
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .review-summary-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .rsc-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .rsc-big-rating strong {
        font-size: 42px;
    }
    .review-write-card {
        padding: 18px;
    }
    .rf-row {
        grid-template-columns: 1fr;
    }
    .review-pro {
        padding: 18px;
    }
    .rp-header {
        flex-wrap: wrap;
    }
    .rp-rating {
        text-align: left;
        width: 100%;
    }
    .rp-stars {
        justify-content: flex-start;
    }
    .rp-proscons {
        grid-template-columns: 1fr;
    }
    .review-sort-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .sort-buttons {
        justify-content: flex-start;
    }
    .review-login-prompt {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rsc-bar-row {
        grid-template-columns: 40px 1fr 25px;
        gap: 8px;
        font-size: 12px;
    }
    .rp-avatar {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    .rp-title {
        font-size: 15px;
    }
    .rp-text {
        font-size: 14px;
    }
    .star-rating-input {
        font-size: 22px;
    }
}

/* ============================================
   YASAL BİLGİLER BAR (TÜRSAB)
   ============================================ */
.legal-bar {
    background: rgba(0, 0, 0, 0.35);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.legal-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-info i {
    color: #fbbf24;
    margin-right: 4px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #0a2540;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.legal-badge i {
    color: #0a2540 !important;
    margin: 0 !important;
}

.legal-sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    transition: color 0.2s;
    text-decoration: none;
}

.legal-links a:hover {
    color: #fbbf24;
}

.footer-badge-tursab {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(250, 204, 21, 0.15)) !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
}

.footer-badge-tursab i {
    color: #f97316 !important;
}

.footer-badge-tursab strong {
    color: #fbbf24;
    margin-left: 2px;
}

@media (max-width: 768px) {
    .legal-bar-inner {
        flex-direction: column;
        text-align: center;
    }
    .legal-info {
        justify-content: center;
    }
    .legal-links {
        justify-content: center;
    }
    .legal-sep {
        display: none;
    }
    .legal-info > span {
        font-size: 12px;
    }
}

/* ============================================
   TUR DETAY - TAM MOBİL UYUMLULUK
   ============================================ */

/* === MOBİL STICKY REZERVASYON BAR === */
.mobile-booking-bar {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-booking-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.15);
        border-top: 1px solid var(--border);
        align-items: center;
        gap: 12px;
    }

    .mbb-info {
        flex: 1;
        min-width: 0;
    }

    .mbb-price {
        font-size: 18px;
        font-weight: 800;
        color: var(--accent);
        line-height: 1.1;
    }

    .mbb-label {
        font-size: 11px;
        color: var(--text-light);
        margin-top: 2px;
    }

    .mbb-btn {
        background: var(--gradient-accent);
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 4px 14px rgba(30, 136, 229, 0.4);
    }

    .mbb-btn:hover {
        background: var(--gradient-primary);
        color: white;
    }

    /* Body padding sadece tur detay sayfasında uygulanır */
    body.tour-detail-page {
        padding-bottom: 80px;
    }
}

/* === MOBİL GENEL DÜZENLEMELER === */
@media (max-width: 1024px) {
    .tour-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .tour-sidebar {
        position: static !important;
        order: 2;
    }

    .tour-detail-main {
        order: 1;
    }

    .related-tours {
        order: 3;
    }
}

/* === HERO MOBİL === */
@media (max-width: 1024px) {
    .tour-hero {
        min-height: 380px !important;
    }
    .tour-hero-content {
        padding: 20px 16px 30px !important;
    }
    .tour-hero-content h1 {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .tour-hero-content p {
        font-size: 13px !important;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    .tour-hero-badges {
        gap: 5px !important;
        margin-bottom: 12px;
    }
    .tour-hero-badges .badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
    .tour-hero-actions {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }
    .tour-hero-actions .btn {
        flex: 1;
        min-width: 0;
        padding: 10px 14px !important;
        font-size: 12.5px !important;
    }
    .tour-hero-actions .btn span {
        display: none;
    }
    .tour-hero-price {
        flex-wrap: wrap;
        gap: 6px;
        align-items: baseline;
    }
    .tour-hero-price .price-current {
        font-size: 24px !important;
    }
    .tour-hero-price .price-old {
        font-size: 14px !important;
    }
    .breadcrumb-light {
        font-size: 11px !important;
        padding: 5px 10px !important;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .tour-hero {
        min-height: 320px !important;
    }
    .tour-hero-content h1 {
        font-size: 20px !important;
    }
    .tour-hero-content p {
        font-size: 12.5px !important;
    }
    .tour-hero-badges .badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }
    .tour-hero-actions .btn {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }
}

/* === TAB SİSTEMİ MOBİL === */
@media (max-width: 1024px) {
    .tour-tabs {
        background: white;
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        position: static !important;
        top: auto !important;
        z-index: auto !important;
    }
    .tour-tabs::-webkit-scrollbar {
        display: none;
    }
    .tour-tab {
        padding: 12px 14px !important;
        font-size: 12.5px !important;
        gap: 4px;
        flex-shrink: 0;
    }
    .tour-tab i {
        font-size: 13px;
    }
    .tour-tab.active {
        border-bottom-width: 2px;
    }
    .tour-tab-content {
        padding: 18px 16px !important;
    }
    .tour-tab-content h2 {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    .tour-tab-content h2 i {
        font-size: 16px;
    }
    .tour-tab-content h3 {
        font-size: 15px !important;
        margin: 18px 0 10px;
    }
}

@media (max-width: 480px) {
    .tour-tab {
        padding: 10px 10px !important;
        font-size: 11.5px !important;
    }
    .tour-tab i {
        display: none;
    }
    .tour-tab-content {
        padding: 14px 12px !important;
    }
}

/* === GENEL BİLGİ - QUICK FACTS === */
@media (max-width: 768px) {
    .quick-facts-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .qf-item {
        padding: 10px !important;
        gap: 8px;
    }
    .qf-item i {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    .qf-item small {
        font-size: 10px !important;
    }
    .qf-item strong {
        font-size: 12.5px !important;
    }
    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 6px;
    }
    .highlight-item {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    .highlight-item i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .quick-facts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === PROGRAM TİMELİNE MOBİL === */
@media (max-width: 768px) {
    .program-day {
        grid-template-columns: 50px 1fr !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }
    .program-day-marker {
        width: 44px !important;
        height: 44px !important;
    }
    .day-num {
        font-size: 18px !important;
    }
    .day-label {
        font-size: 8px !important;
    }
    .program-day-content {
        padding: 12px 14px !important;
    }
    .program-day-content h3 {
        font-size: 14px !important;
        margin-bottom: 6px;
    }
    .program-day-content p {
        font-size: 13px !important;
        line-height: 1.5;
    }
    .program-timeline::before {
        left: 22px !important;
    }
}

@media (max-width: 480px) {
    .program-day {
        grid-template-columns: 40px 1fr !important;
        gap: 8px !important;
    }
    .program-day-marker {
        width: 38px !important;
        height: 38px !important;
    }
    .day-num {
        font-size: 16px !important;
    }
}

/* === DAHİL OLANLAR === */
@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .included-card {
        padding: 16px !important;
    }
    .included-card h3 {
        font-size: 15px !important;
    }
    .included-card ul li {
        font-size: 13px !important;
        padding: 5px 0;
    }
    .dates-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .date-card {
        padding: 10px !important;
    }
    .date-card strong {
        font-size: 12.5px !important;
    }
    .date-card .date-status {
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .dates-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === GALERİ MOBİL === */
@media (max-width: 768px) {
    .gallery-grid-large {
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }
    .gallery-item {
        border-radius: 6px;
    }
    .gallery-overlay i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-large {
        grid-template-columns: 1fr !important;
    }
}

/* === REZERVASYON FORMU MOBİL === */
@media (max-width: 1024px) {
    .booking-card.sticky {
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0 !important;
        box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.2) !important;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 1001;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .booking-card.sticky.open {
        transform: translateY(0);
    }
    .booking-card-close {
        display: flex;
        position: sticky;
        top: 0;
        left: 100%;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--text);
        border: 1px solid var(--border);
        margin: -20px -10px 0 auto;
        z-index: 2;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .booking-card {
        padding: 20px !important;
    }
    .booking-card-header h3 {
        font-size: 16px !important;
    }
    .booking-card-header .price-current {
        font-size: 22px !important;
    }
    .booking-form .form-group {
        margin-bottom: 12px !important;
    }
    .booking-form .form-group label {
        font-size: 12.5px !important;
        margin-bottom: 4px;
    }
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
        min-height: 44px; /* iOS touch target */
    }
    .booking-form textarea {
        min-height: 70px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .booking-form .btn {
        min-height: 50px;
        font-size: 15px !important;
    }
    .price-summary {
        padding: 12px !important;
        margin: 12px 0 !important;
    }
    .ps-row {
        font-size: 13px !important;
    }
    .ps-total {
        font-size: 15px !important;
    }
    .ps-total strong {
        font-size: 18px !important;
    }
    .booking-note {
        font-size: 11px !important;
    }
    .member-cta,
    .member-welcome {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
    .info-card {
        padding: 18px !important;
    }
    .info-card-link {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    .info-card h4 {
        font-size: 14px !important;
    }
    .features-list li {
        font-size: 13px !important;
    }
    .trust-rating strong {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .booking-form input,
    .booking-form select {
        font-size: 16px !important; /* iOS zoom engelleme */
    }
}

/* === YORUM KARTLARI MOBİL === */
@media (max-width: 768px) {
    .review-summary-card {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 16px !important;
        margin: 16px 0 !important;
    }
    .rsc-left {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding-right: 0 !important;
        padding-bottom: 16px;
    }
    .rsc-big-rating strong {
        font-size: 38px !important;
    }
    .rsc-big-rating small {
        font-size: 14px !important;
    }
    .rsc-stars {
        font-size: 15px !important;
    }
    .rsc-bar-row {
        grid-template-columns: 38px 1fr 24px !important;
        gap: 6px !important;
        font-size: 11.5px !important;
    }
    .rsc-bar {
        height: 8px !important;
    }
    
    .review-write-card {
        padding: 16px !important;
    }
    .rwc-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .rwc-header strong {
        font-size: 14px !important;
    }
    .star-rating-input {
        font-size: 22px !important;
        gap: 2px;
    }
    .review-form .rf-row {
        grid-template-columns: 1fr !important;
    }
    .rf-field input,
    .rf-field textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
    .rf-field textarea {
        min-height: 80px;
    }
    .rf-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .rf-actions .btn {
        width: 100%;
    }
    
    .review-sort-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px !important;
    }
    .sort-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .sort-buttons::-webkit-scrollbar {
        display: none;
    }
    .sort-btn {
        flex-shrink: 0;
    }
    
    .review-pro {
        padding: 16px !important;
    }
    .rp-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .rp-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 13px !important;
    }
    .rp-user-name {
        font-size: 14px !important;
    }
    .rp-user-meta {
        gap: 8px !important;
        font-size: 11px !important;
    }
    .rp-rating {
        text-align: left;
        width: 100%;
        margin-left: 50px;
        margin-top: -4px;
    }
    .rp-stars {
        justify-content: flex-start;
        font-size: 13px !important;
    }
    .rp-title {
        font-size: 15px !important;
    }
    .rp-text {
        font-size: 13.5px !important;
        line-height: 1.6;
    }
    .rp-proscons {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }
    .rp-pro, .rp-con {
        padding: 10px 12px !important;
        font-size: 12.5px !important;
    }
    .rp-admin-reply {
        padding: 12px !important;
        font-size: 12.5px !important;
    }
    .rp-footer {
        gap: 8px;
    }
    .rp-helpful {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    .rp-share {
        font-size: 12px !important;
    }
    
    .review-login-prompt {
        flex-direction: column;
        text-align: center;
        padding: 18px !important;
    }
    .review-login-prompt > i {
        font-size: 32px !important;
    }
    .review-login-prompt .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .review-pro {
        padding: 14px !important;
    }
    .rp-text {
        font-size: 13px !important;
    }
    .rp-admin-reply {
        font-size: 12px !important;
    }
    .no-reviews-yet {
        padding: 40px 16px !important;
    }
    .no-reviews-yet i {
        font-size: 40px !important;
    }
}

/* === SSS MOBİL === */
@media (max-width: 768px) {
    .faq-question {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    .faq-answer p {
        padding: 0 16px 14px !important;
        font-size: 13.5px !important;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 12px 14px !important;
        font-size: 13px !important;
    }
}

/* === SOSYAL PAYLAŞIM MOBİL === */
@media (max-width: 768px) {
    .social-share-box {
        padding: 16px !important;
    }
    .social-share-box h4 {
        font-size: 13px !important;
    }
    .share-link {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }
}

/* === BENZER TURLAR MOBİL === */
@media (max-width: 768px) {
    .related-tours .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
}

/* === MOBİL İÇİN BOOKING MODAL TOGGLE === */
.booking-card-open-btn {
    display: none;
}

@media (max-width: 1024px) {
    .booking-card-open-btn {
        display: inline-flex;
    }
}

/* === SAFE AREA SUPPORT === */
@supports (padding: max(0px)) {
    .mobile-booking-bar,
    .footer-bottom-inner,
    .legal-bar-inner,
    .legal-info,
    .legal-links,
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

/* === INPUT ZOOM ENGELLEME (iOS) === */
@supports (-webkit-touch-callout: none) {
    .booking-form input,
    .booking-form select,
    .booking-form textarea,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .rf-field input,
    .rf-field textarea {
        font-size: 16px;
    }
}

/* === ÇOK KÜÇÜK EKRANLAR (iPhone SE, Galaxy Fold) === */
@media (max-width: 360px) {
    .booking-card {
        padding: 16px !important;
    }
    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .booking-form .form-group label {
        font-size: 12px !important;
    }
    .booking-form input,
    .booking-form select {
        padding: 10px 12px !important;
    }
    .rsc-big-rating strong {
        font-size: 32px !important;
    }
}

/* ============================================
   FOOTER - HIZLI İLETİŞİM (PROFESYONEL)
   ============================================ */
.footer-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
}

.footer-quick-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: white !important;
    transform: translateX(3px);
}

.footer-quick-btn i {
    color: #fbbf24;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.footer-quick-btn:hover i {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

.footer-quick-btn span {
    flex: 1;
    line-height: 1.3;
}

.footer-quick-whatsapp {
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.2) !important;
}

.footer-quick-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.footer-quick-whatsapp i {
    color: #25d366 !important;
    background: rgba(37, 211, 102, 0.15) !important;
}

.footer-quick-whatsapp:hover i {
    color: #6ee7b7 !important;
    background: rgba(37, 211, 102, 0.25) !important;
}

/* ============================================
   TUR DETAY - GENEL BİLGİ ÇAKIŞMA DÜZELTMESİ
   ============================================ */

/* Hero bölümünün altına doğru boşluk - tab nav ile çakışmayı önler */
.tour-hero {
    margin-bottom: 0;
}

.tour-detail {
    padding-top: 30px !important;
}

/* Sticky tab nav için scroll hedefi düzeltmesi */
.tour-tab-content,
.tour-tab-content.active,
[id^="tab-"] {
    scroll-margin-top: 100px;
}

/* Masaüstü */
@media (min-width: 1025px) {
    .tour-tab-content {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .tour-detail {
        padding-top: 20px !important;
    }
    .tour-tab-content {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .tour-detail {
        padding-top: 16px !important;
    }
    .tour-tab-content {
        padding: 18px 16px !important;
    }
    .tour-tab-content h2 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        clear: both;
    }
    .tour-tab-content h2:first-child {
        margin-top: 0 !important;
    }
    .tour-tab-content > p:first-child,
    .tour-tab-content > div:first-child {
        margin-top: 0 !important;
    }
    /* Tour description ilk paragraf üstte olsun */
    .tour-description {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .tour-description::before,
    .tour-description::after {
        display: none !important;
    }
    .tour-section {
        margin-top: 24px !important;
        padding-top: 0 !important;
        clear: both;
    }
    .tour-section h3 {
        margin-top: 0 !important;
    }
    /* Highlights grid ilk eleman üstte */
    .highlights-grid {
        margin-top: 12px !important;
    }
    .highlight-item {
        margin-top: 0 !important;
    }
    .highlight-item:first-child {
        margin-top: 0 !important;
    }
    /* Quick facts ilk eleman üstte */
    .quick-facts {
        margin-top: 24px !important;
        padding-top: 20px !important;
    }
    .qf-item:first-child {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .tour-detail {
        padding-top: 12px !important;
    }
    .tour-tab-content {
        padding: 16px 14px !important;
    }
    .tour-section h3 {
        font-size: 15px !important;
    }
}

/* Tab nav scroll davranışı - mobilde sticky DEĞİL normal akış */
@media (max-width: 1024px) {
    .tour-tabs-wrapper {
        position: static !important;
        border-radius: var(--radius-md) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    .tour-tabs {
        border-radius: var(--radius-md) !important;
    }
}

/* Masaüstünde sticky ama sadece sayfa içeriğinde */
@media (min-width: 1025px) {
    .tour-tabs-wrapper {
        position: sticky;
        top: 80px;
        z-index: 40;
    }
}

/* Anchor scroll düzeltmesi — tüm tarayıcılarda */
html {
    scroll-padding-top: 20px;
}

.tour-tab-content,
.tour-tab-content h2,
.tour-tab-content h3,
[id^="tab-"] {
    scroll-margin-top: 24px;
}

/* Genel Bilgi tab içeriğinin üst boşluğu — sticky çakışma düzeltmesi */
@media (min-width: 1025px) {
    .tour-tabs-wrapper {
        top: 90px !important;
    }
    .tour-tab-content {
        scroll-margin-top: 100px;
    }
}

/* Mobilde tab içerikleri için ek üst boşluk */
@media (max-width: 1024px) {
    .tour-tab-content {
        padding-top: 24px !important;
    }
    .tour-tab-content h2:first-child {
        margin-top: 0;
        padding-top: 4px;
    }
    .tour-tab-content > *:first-child {
        margin-top: 0 !important;
    }
}

/* Genel spacing düzeltmeleri */
.tour-description,
.highlight-item,
.qf-item,
.faq-question,
.gallery-item,
.review-pro {
    position: relative;
    z-index: 1;
}

.tour-detail-main > * {
    position: relative;
    z-index: 1;
}

/* Tour hero sonrası temiz geçiş */
.tour-hero + .section {
    margin-top: 0;
}

/* Tab content scroll düzeltmesi */
.tour-tab-content h2 {
    scroll-margin-top: 110px;
}

.tour-tab-content h3 {
    scroll-margin-top: 110px;
}

/* Floating element'lerin tour content ile çakışmasını önle */
.tour-detail-main {
    isolation: isolate;
}

/* ============================================
   TUR DETAY - PROFESSIONAL OVERRIDE
   ============================================ */

/* === GRID === */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1024px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* === TAB NAV - sticky DEĞİL === */
.tour-tabs-wrapper,
.tour-tabs {
    position: static !important;
    top: auto !important;
}

.tour-tabs-wrapper {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.tour-tabs {
    display: flex !important;
    background: var(--bg-soft);
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tour-tabs::-webkit-scrollbar {
    display: none;
}

.tour-tab {
    flex: 0 0 auto;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}

.tour-tab i {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.tour-tab:hover {
    color: var(--accent);
    background: rgba(30, 136, 229, 0.05);
}

.tour-tab:hover i {
    color: var(--accent);
}

.tour-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: white;
}

.tour-tab.active i {
    color: var(--accent);
}

/* === TAB CONTENT === */
.tour-tab-content {
    display: none;
    padding: 32px 28px !important;
    background: white;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -1px;
}

.tour-tab-content.active {
    display: block !important;
    scroll-margin-top: 20px;
}

.tour-tab-content h2 {
    font-size: 22px;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border: none !important;
}

.tour-tab-content h2 i {
    color: var(--accent);
    font-size: 22px;
}

.tour-tab-content h3 {
    font-size: 17px;
    margin: 28px 0 14px !important;
    padding: 0 !important;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.tour-tab-content h3 i {
    color: var(--accent);
    font-size: 16px;
}

.tour-tab-content > p:first-child,
.tour-tab-content > div:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.tour-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.tour-description::before,
.tour-description::after {
    display: none !important;
}

.tour-section {
    margin-top: 28px !important;
    padding-top: 0 !important;
    clear: both;
}

/* === HIGHLIGHTS === */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 14px !important;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    margin: 0 !important;
}

.highlight-item i {
    color: var(--success);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item span {
    flex: 1;
    line-height: 1.5;
}

/* === QUICK FACTS === */
.quick-facts {
    margin-top: 32px !important;
    padding: 24px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.quick-facts h3 {
    margin: 0 0 16px !important;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.qf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    margin: 0 !important;
}

.qf-item i {
    font-size: 20px;
    color: var(--accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.qf-item small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.qf-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* === PROGRAM TIMELINE === */
.program-timeline {
    position: relative;
    padding-left: 0;
    margin-top: 20px;
}

.program-day {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    position: relative;
}

.program-day-marker {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
    position: relative;
    z-index: 2;
}

.day-num {
    font-size: 20px;
    line-height: 1;
}

.day-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    opacity: 0.9;
}

.program-day-content {
    flex: 1;
    background: var(--bg-soft);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-top: 6px;
}

.program-day-content h3 {
    margin: 0 0 8px !important;
    font-size: 16px;
}

.program-day-content p {
    margin: 0;
    line-height: 1.65;
    color: var(--text);
    font-size: 14px;
}

/* === INCLUDED === */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

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

.included-card {
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: white;
}

.included-card.included {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.included-card.not-included {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fca5a5;
}

.included-card h3 {
    margin: 0 0 14px !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.included-card.included h3 i {
    color: var(--success);
}

.included-card.not-included h3 i {
    color: var(--danger);
}

.included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-card li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.included-card.included li i {
    color: var(--success);
    margin-top: 3px;
}

.included-card.not-included li i {
    color: var(--danger);
    margin-top: 3px;
}

/* === DATES === */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.date-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
}

.date-card i {
    color: var(--accent);
    font-size: 18px;
}

.date-card strong {
    flex: 1;
    font-size: 14px;
    color: var(--primary);
}

.date-status {
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* === GALLERY === */
.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: var(--bg-soft);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 28px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* === FAQ === */
.faq-list {
    margin-top: 16px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-soft);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: var(--bg-soft);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 16px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.65;
    color: var(--text);
    font-size: 14px;
}

/* === SIDEBAR BOOKING === */
.tour-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1024px) {
    .tour-sidebar {
        position: static;
    }
}

.booking-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px !important;
    box-shadow: var(--shadow-md);
    position: relative;
}

.booking-card-close {
    display: none !important;
}

.booking-card-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.booking-card-header h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    border: none !important;
}

.booking-card-header h3 i {
    color: var(--accent);
    font-size: 18px;
}

.booking-price {
    display: flex !important;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    background: none !important;
}

.booking-price .price-current {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
    line-height: 1;
}

.booking-price .price-old {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    text-decoration: line-through !important;
    font-weight: 500;
}

.booking-price .price-text {
    width: 100% !important;
    font-size: 12px !important;
    color: var(--text-light) !important;
    margin-top: 4px !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === FORM === */
.booking-form .form-group {
    margin-bottom: 14px;
}

.booking-form label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    outline: none;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.booking-form .price-summary {
    background: var(--bg-soft);
    padding: 14px 16px;
    border-radius: 10px;
    margin: 16px 0;
    border: 1px solid var(--border-light);
}

.ps-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-light);
}

.ps-row.ps-total {
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.ps-row strong {
    color: var(--primary);
    font-weight: 600;
}

.booking-form .btn-block {
    width: 100%;
    margin-top: 8px;
}

.booking-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin: 12px 0 0;
}

/* === MEMBER === */
.member-welcome,
.member-cta {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.member-welcome {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.member-welcome i {
    color: var(--success);
    font-size: 18px;
}

.member-cta {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    color: #92400e;
}

.member-cta i {
    color: #f59e0b;
    font-size: 22px;
}

.member-cta strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.member-cta a {
    color: #92400e;
    font-weight: 600;
    text-decoration: underline;
    font-size: 13px;
}

/* === INFO CARDS === */
.info-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.info-card h4 i {
    color: var(--accent);
    font-size: 16px;
}

.info-card p {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.info-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-radius: 8px;
    color: var(--text) !important;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: background 0.2s;
}

.info-card-link:hover {
    background: rgba(30, 136, 229, 0.1);
    color: var(--accent) !important;
}

.info-card-link i {
    color: var(--accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* === TRUST === */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--text);
    border-bottom: 1px dashed var(--border-light);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--success);
    font-size: 13px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-rating {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
}

.trust-rating strong {
    display: block;
    font-size: 22px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 2px;
}

.trust-rating small {
    color: var(--text-muted);
    font-size: 12px;
}

/* === SOCIAL SHARE === */
.social-share-box {
    margin-top: 24px;
    padding: 18px 22px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.social-share-box h4 {
    margin: 0;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.social-share-box h4 i {
    color: var(--accent);
}

.share-buttons-inline {
    display: flex;
    gap: 8px;
}

.share-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s, opacity 0.2s;
}

.share-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.share-link.whatsapp { background: #25d366; }
.share-link.facebook { background: #1877f2; }
.share-link.twitter { background: #1da1f2; }
.share-link.telegram { background: #0088cc; }
.share-link.email { background: #6b7280; }

/* === MOBİL DÜZENLEMELER === */
@media (max-width: 768px) {
    .tour-tab-content {
        padding: 22px 18px !important;
    }
    .tour-tab-content h2 {
        font-size: 19px;
    }
    .tour-tab-content h3 {
        font-size: 16px;
        margin-top: 22px !important;
    }
    .tour-tab {
        padding: 13px 14px;
        font-size: 13px;
    }
    .quick-facts {
        padding: 18px !important;
    }
    .quick-facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .qf-item {
        padding: 10px 12px;
    }
    .qf-item i {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
    .qf-item small {
        font-size: 10px;
    }
    .qf-item strong {
        font-size: 13px;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .highlight-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    .program-day {
        gap: 12px;
    }
    .program-day-marker {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
    }
    .day-num {
        font-size: 16px;
    }
    .program-day-content {
        padding: 14px 16px;
    }
    .dates-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .date-card {
        padding: 10px 12px;
    }
    .date-card strong {
        font-size: 13px;
    }
    .gallery-grid-large {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .booking-card {
        padding: 20px !important;
    }
    .booking-card-header h3 {
        font-size: 16px;
    }
    .booking-price .price-current {
        font-size: 24px !important;
    }
    .social-share-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .share-buttons-inline {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tour-tab-content {
        padding: 18px 14px !important;
    }
    .quick-facts-grid {
        grid-template-columns: 1fr;
    }
    .dates-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid-large {
        grid-template-columns: 1fr;
    }
}

/* === MOBİL STICKY BAR === */
.mobile-booking-bar {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-booking-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        z-index: 100;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border-top: 1px solid var(--border);
    }
    .mbb-info {
        flex: 1;
    }
    .mbb-price {
        font-size: 20px;
        font-weight: 800;
        color: var(--accent);
        line-height: 1.1;
    }
    .mbb-label {
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
    }
    .mbb-btn {
        background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
        color: white;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
    }
}

/* === TOP-LEVEL SCROLL OFFSET === */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body.tour-detail-page {
    scroll-padding-top: 0;
}

/* === FIX SPECIFIC LAYOUT ISSUES === */
.tour-detail-main {
    min-width: 0;
}

.tour-detail-main > .tour-tabs-wrapper {
    margin-top: 0;
}

.tour-detail-main > .social-share-box {
    margin-top: 24px;
}

/* Anchor scroll düzeltmesi */
[id^="tab-"] {
    scroll-margin-top: 80px;
}

@media (max-width: 1024px) {
    [id^="tab-"] {
        scroll-margin-top: 20px;
    }
}

/* === STICKY SIDEBAR MOBİLDE KAPALI === */
@media (max-width: 1024px) {
    .tour-sidebar {
        position: static !important;
        margin-top: 0;
    }
    .booking-card.sticky {
        position: static !important;
    }
}


/* ============================================
   HAKKIMIZDA & İLETİŞİM SAYFALARI
   ============================================ */

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    padding: 50px 0 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header > .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    color: white;
}

.page-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: #fbbf24 !important; }

.breadcrumb i { font-size: 11px; opacity: 0.7; }

/* === ABOUT SECTION === */
.about-section { padding: 60px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content .section-eyebrow {
    display: inline-block;
    color: #1e88e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-content .lead {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 28px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s;
}

.about-feature:hover {
    border-color: #1e88e5;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.08);
    transform: translateX(4px);
}

.about-feature i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e88e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 15px;
    color: #0a2540;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-feature span {
    display: block;
    font-size: 13.5px;
    color: #6b7280;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
}

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

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-content h2 { font-size: 24px; }
}

/* === MISSION VISION === */
.mv-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mv-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.1);
    border-color: #1e88e5;
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.mv-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 12px;
}

.mv-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: #4b5563;
}

.values-list li i {
    color: #16a34a;
    font-size: 11px;
    width: 18px;
    height: 18px;
    background: rgba(22, 163, 74, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* === STATS SECTION === */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-card i {
    font-size: 36px;
    color: #fbbf24;
    margin-bottom: 12px;
    display: block;
}

.stat-card strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-card span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 24px 16px; }
    .stat-card strong { font-size: 28px; }
}

/* === PARTNERS === */
.partners-section { padding: 60px 0; background: white; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
}

.partner-card:hover {
    border-color: #1e88e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 136, 229, 0.08);
}

.partner-card i {
    font-size: 28px;
    color: #1e88e5;
}

.partner-card span {
    font-size: 13px;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .partner-card { padding: 20px 12px; }
}

/* === CONTACT SECTION === */
.contact-section { padding: 60px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
}

.contact-form-card .card-head {
    padding: 24px 28px;
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    color: white;
}

.contact-form-card .card-head h2 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-card .card-head h2 i { color: #fbbf24; }

.contact-form-card .card-head p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-form { padding: 28px; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form .form-group { margin-bottom: 14px; }

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.contact-form .form-group label i { color: #1e88e5; font-size: 12px; }

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: #374151;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #1e88e5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.contact-form .form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* === CONTACT INFO === */
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.info-card h3 i {
    color: #1e88e5;
    font-size: 18px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.contact-info-list li:last-child { border-bottom: none; }

.ciil-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e88e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-info-list li > div { flex: 1; min-width: 0; }
.contact-info-list strong { display: block; font-size: 13px; color: #6b7280; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-list span, .contact-info-list a { display: block; font-size: 14.5px; color: #0a2540; font-weight: 500; line-height: 1.5; }
.contact-info-list a:hover { color: #1e88e5; }

/* === WHATSAPP CARD === */
.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
    color: white !important;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: white !important;
}

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

.whatsapp-card > div:nth-child(2) { flex: 1; }
.whatsapp-card strong { display: block; font-size: 15px; font-weight: 700; }
.whatsapp-card span { display: block; font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }
.whatsapp-card > i:last-child { font-size: 14px; }

/* === MAP === */
.map-section { padding: 0 0 60px; }

.map-section .section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
}

.map-section .section-title i { color: #1e88e5; }

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    margin-top: 16px;
}

.map-container iframe { display: block; width: 100%; }

/* === SOCIAL GRID === */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151 !important;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s;
}

.social-link:hover {
    background: white;
    border-color: #1e88e5;
    color: #1e88e5 !important;
    transform: translateX(2px);
}

.social-link i { font-size: 16px; }
.social-link.facebook:hover { color: #1877f2 !important; border-color: #1877f2; }
.social-link.instagram:hover { color: #e1306c !important; border-color: #e1306c; }
.social-link.twitter:hover { color: #1da1f2 !important; border-color: #1da1f2; }
.social-link.youtube:hover { color: #ff0000 !important; border-color: #ff0000; }

/* === FLASH MESSAGE === */
.flash {
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.flash-success { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); color: #166534; border-bottom: 1px solid #86efac; }
.flash-error { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); color: #991b1b; border-bottom: 1px solid #fca5a5; }
.flash-info { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); color: #1e40af; border-bottom: 1px solid #93c5fd; }

.flash i { margin-right: 6px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .page-header { padding: 40px 0 32px; }
    .page-header h1 { font-size: 26px; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
    .contact-form-card .card-head { padding: 20px; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 22px; }
    .about-content h2 { font-size: 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   HAKKIMIZDA SAYFASI (hk- prefix)
   ============================================ */
.hk-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #0a2540;
    overflow: hidden;
}

.hk-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.7) 0%, rgba(30,136,229,0.7) 100%);
    z-index: 2;
}

.hk-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 800px;
}

.hk-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
}

.hk-breadcrumb a { color: rgba(255,255,255,0.85) !important; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.hk-breadcrumb a:hover { color: #fbbf24 !important; }
.hk-breadcrumb i.fa-chevron-right { font-size: 10px; opacity: 0.6; }

.hk-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hk-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.hk-section { padding: 70px 0; }

.hk-eyebrow {
    display: inline-block;
    color: #1e88e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hk-h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hk-subtitle {
    color: #6b7280;
    font-size: 15.5px;
    margin: 8px 0 0;
    line-height: 1.5;
}

.hk-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.hk-section-head .hk-eyebrow { display: block; }

.hk-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hk-about-content h2 { font-size: 32px; }

.hk-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 28px;
}

.hk-features { display: flex; flex-direction: column; gap: 14px; }

.hk-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s;
}

.hk-feature:hover {
    border-color: #1e88e5;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30,136,229,0.08);
}

.hk-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30,136,229,0.25);
}

.hk-feature strong {
    display: block;
    font-size: 15.5px;
    color: #0a2540;
    font-weight: 700;
    margin-bottom: 4px;
}

.hk-feature span { display: block; font-size: 13.5px; color: #6b7280; }

.hk-about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10,37,64,0.18);
    aspect-ratio: 4/5;
}

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

.hk-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540;
    padding: 16px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(251,191,36,0.4);
}

.hk-image-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.hk-image-badge span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hk-mv { background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }

.hk-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hk-mv-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
}

.hk-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,37,64,0.1);
    border-color: #1e88e5;
}

.hk-mv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(30,136,229,0.3);
}

.hk-mv-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 14px;
}

.hk-mv-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.hk-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hk-values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
}

.hk-values-list li i {
    color: #16a34a;
    font-size: 11px;
    width: 20px;
    height: 20px;
    background: rgba(22,163,74,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hk-stats-section {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
    color: white;
    padding: 60px 0;
}

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

.hk-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.hk-stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.hk-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(251,191,36,0.2);
    color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}

.hk-stat-card strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.hk-stat-card span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hk-partners { background: white; }

.hk-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.hk-partner-card {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.2s;
}

.hk-partner-card:hover {
    border-color: #1e88e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,136,229,0.08);
}

.hk-partner-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
    box-shadow: 0 6px 16px rgba(30,136,229,0.25);
}

.hk-partner-card span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: 0.3px;
}

.hk-partner-card small {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hk-cta {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    color: white;
    padding: 50px 0;
}

.hk-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.hk-cta h2 { font-size: 26px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.3px; }
.hk-cta p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }

.hk-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hk-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.hk-btn-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540 !important;
    box-shadow: 0 4px 14px rgba(251,191,36,0.4);
}
.hk-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(251,191,36,0.5); }

.hk-btn-glass {
    background: rgba(255,255,255,0.15);
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.hk-btn-glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* === HAKKIMIZDA RESPONSIVE === */
@media (max-width: 1024px) {
    .hk-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hk-mv-grid { grid-template-columns: 1fr; }
    .hk-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hk-hero { min-height: 280px; padding: 50px 20px; }
    .hk-hero-content h1 { font-size: 32px; }
    .hk-h2 { font-size: 24px; }
    .hk-about-content h2 { font-size: 26px; }
    .hk-section { padding: 50px 0; }
    .hk-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hk-hero-content h1 { font-size: 26px; }
    .hk-stat-card strong { font-size: 32px; }
    .hk-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   İLETİŞİM SAYFASI (il- prefix)
   ============================================ */
.il-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #0a2540;
    overflow: hidden;
}

.il-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.il-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,37,64,0.75) 0%, rgba(30,136,229,0.75) 100%); z-index: 2; }

.il-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 800px;
}

.il-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
}

.il-breadcrumb a { color: rgba(255,255,255,0.85) !important; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.il-breadcrumb a:hover { color: #fbbf24 !important; }
.il-breadcrumb i.fa-chevron-right { font-size: 10px; opacity: 0.6; }

.il-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.il-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.il-flash {
    padding: 16px 0;
    text-align: center;
    font-size: 14.5px;
    font-weight: 500;
}

.il-flash-success { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); color: #166534; border-bottom: 1px solid #86efac; }
.il-flash-error { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); color: #991b1b; border-bottom: 1px solid #fca5a5; }
.il-flash i { margin-right: 6px; }

.il-section { padding: 70px 0; background: #fafbfc; }

.il-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.il-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,37,64,0.05);
}

.il-form-head {
    padding: 28px 32px;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    color: white;
}

.il-form-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.il-form-head h2 i { color: #fbbf24; }

.il-form-head p {
    margin: 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
}

.il-form { padding: 32px; }

.il-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.il-field { margin-bottom: 16px; }
.il-row2 .il-field { margin-bottom: 0; }

.il-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.il-field label i { color: #1e88e5; font-size: 13px; }

.il-field input, .il-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    background: white;
    color: #374151;
    transition: all 0.2s;
}

.il-field input:focus, .il-field textarea:focus {
    border-color: #1e88e5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.1);
}

.il-field textarea { resize: vertical; min-height: 130px; }

.il-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.il-btn-primary {
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(30,136,229,0.3);
}

.il-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,136,229,0.4);
}

.il-btn-full { width: 100%; margin-top: 8px; }

.il-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #6b7280;
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.il-info { display: flex; flex-direction: column; gap: 20px; }

.il-info-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(10,37,64,0.04);
}

.il-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.il-info-card h3 i {
    color: #1e88e5;
    font-size: 18px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.il-info-list { list-style: none; padding: 0; margin: 0; }

.il-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.il-info-list li:last-child { border-bottom: none; }

.il-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e88e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.il-info-list li > div { flex: 1; min-width: 0; }
.il-info-list small { display: block; font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 4px; }
.il-info-list strong, .il-info-list a { display: block; font-size: 14.5px; color: #0a2540; font-weight: 600; line-height: 1.5; }
.il-info-list a:hover { color: #1e88e5; }

.il-wa-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
    color: white !important;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.il-wa-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    color: white !important;
}

.il-wa-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.il-wa-card > div:nth-child(2) { flex: 1; }
.il-wa-card strong { display: block; font-size: 15px; font-weight: 700; }
.il-wa-card span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.85); }

.il-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.il-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151 !important;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s;
}

.il-social-link:hover { background: white; transform: translateX(2px); }
.il-social-fb:hover { color: #1877f2 !important; border-color: #1877f2; }
.il-social-ig:hover { color: #e1306c !important; border-color: #e1306c; }
.il-social-tw:hover { color: #1da1f2 !important; border-color: #1da1f2; }
.il-social-yt:hover { color: #ff0000 !important; border-color: #ff0000; }

.il-map-section { padding: 70px 0 0; background: white; }
.il-eyebrow { display: inline-block; color: #1e88e5; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px; }
.il-h2 { font-size: 30px; font-weight: 800; color: #0a2540; margin: 0 0 16px; letter-spacing: -0.5px; display: inline-flex; align-items: center; gap: 12px; }
.il-h2 i { color: #1e88e5; }

.il-section-head { text-align: center; margin-bottom: 32px; }
.il-section-head .il-eyebrow { display: block; }

.il-map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10,37,64,0.1);
    margin-top: 16px;
}

.il-map-container iframe { display: block; }

.il-cta {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    color: white;
    padding: 50px 0;
    margin-top: 70px;
}

.il-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.il-cta h2 { font-size: 26px; font-weight: 800; margin: 0 0 6px; }
.il-cta p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }

.il-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.il-btn-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540 !important;
    box-shadow: 0 4px 14px rgba(251,191,36,0.4);
}
.il-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(251,191,36,0.5); }

/* === İLETİŞİM RESPONSIVE === */
@media (max-width: 1024px) {
    .il-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .il-hero { min-height: 280px; padding: 50px 20px; }
    .il-hero-content h1 { font-size: 32px; }
    .il-row2 { grid-template-columns: 1fr; gap: 0; }
    .il-row2 .il-field { margin-bottom: 16px; }
    .il-form { padding: 24px 20px; }
    .il-form-head { padding: 24px 20px; }
    .il-h2 { font-size: 24px; }
    .il-section { padding: 50px 0; }
    .il-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .il-hero-content h1 { font-size: 26px; }
}

/* ============================================
   ANA SAYFA - YENİ BÖLÜMLER (hst-, home- prefix)
   ============================================ */


/* ============================================
   HERO - YENİ NESİL SEYAHAT (hns- prefix)
   ============================================ */
.hns-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hns-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(251,191,36,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30,136,229,0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: 1;
}

.hns-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    opacity: 0.6;
}

.hns-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hns-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(251,191,36,0.15);
    border: 1px solid rgba(251,191,36,0.35);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hns-badge i { font-size: 14px; }

.hns-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hns-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 40px;
    max-width: 680px;
    line-height: 1.6;
}

.hns-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hns-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.hns-btn-primary {
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white !important;
    box-shadow: 0 10px 30px rgba(30,136,229,0.45);
}

.hns-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(30,136,229,0.55);
}

.hns-btn-outline {
    background: rgba(255,255,255,0.08);
    color: white !important;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
}

.hns-btn-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.hns-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hns-stat {
    text-align: center;
    padding: 12px 8px;
    position: relative;
}

.hns-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.15);
}

.hns-stat strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.hns-stat span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hns-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: hns-bounce 2s infinite;
}

.hns-scroll i {
    color: rgba(255,255,255,0.5);
    font-size: 24px;
}

@keyframes hns-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@media (max-width: 768px) {
    .hns-hero { min-height: 100svh; padding: 100px 0 80px; }
    .hns-title { font-size: 36px; letter-spacing: -0.5px; }
    .hns-subtitle { font-size: 15px; padding: 0 10px; }
    .hns-cta { flex-direction: column; gap: 12px; padding: 0 30px; }
    .hns-btn { width: 100%; justify-content: center; padding: 14px 24px; }
    .hns-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .hns-stat strong { font-size: 28px; }
    .hns-stat span { font-size: 10px; }
    .hns-stat:nth-child(2)::after { display: none; }
    .hns-scroll { bottom: 16px; }
}

@media (max-width: 480px) {
    .hns-title { font-size: 30px; }
    .hns-badge { font-size: 12px; padding: 6px 14px; }
}

/* ============================================
   HERO SEARCH TABS SECTION (Ayrı Bölüm)
   ============================================ */
.hst-section {
    padding: 60px 0 40px;
    background: #f8fafc;
}

.hst-tabs {
    display: flex;
    background: white;
    border-radius: 14px 14px 0 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(10,37,64,0.06);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hst-tab {
    flex: 1;
    padding: 20px 14px;
    background: white;
    color: #6b7280;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    border-bottom: 3px solid transparent;
}

.hst-tab i { font-size: 17px; }

.hst-tab:hover { color: #1e88e5; background: #f9fafb; }

.hst-tab.active {
    color: #1e88e5;
    border-bottom-color: #1e88e5;
    background: white;
}

.hst-search-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 0 0 14px 14px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(10,37,64,0.08);
}

.hst-tab-content { display: none; }
.hst-tab-content.active { display: block; }

.hst-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.hst-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.hst-field > i {
    position: absolute;
    left: 14px;
    top: 38px;
    color: #1e88e5;
    font-size: 14px;
}

.hst-field label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 4px;
}

.hst-field input,
.hst-field select {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: #374151;
    transition: all 0.2s;
}

.hst-field input:focus,
.hst-field select:focus {
    border-color: #1e88e5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.1);
}

.hst-btn {
    padding: 13px 28px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(30,136,229,0.35);
    letter-spacing: 0.5px;
}

.hst-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,136,229,0.45);
}

@media (max-width: 768px) {
    .hst-tabs { flex-wrap: wrap; border-radius: 14px 14px 0 0; }
    .hst-tab { padding: 14px 8px; font-size: 13px; flex: 1 0 33.333%; }
    .hst-tab span { display: inline; }
    .hst-form { grid-template-columns: 1fr; gap: 12px; }
    .hst-btn { width: 100%; }
}

@media (max-width: 480px) {
    .hst-tab { flex: 1 0 50%; padding: 12px 6px; font-size: 12px; }
}

/* ============================================
   POPÜLER BÖLGELER
   ============================================ */
.home-regions { padding: 70px 0; background: white; }

.home-regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.home-region-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(10,37,64,0.08);
    display: block;
}

.home-region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.18);
}

.home-region-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.home-region-card:hover .home-region-img { transform: scale(1.08); }

.home-region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,37,64,0.9) 100%);
}

.home-region-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.home-region-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.home-region-content p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 10px;
    line-height: 1.4;
}

.home-region-tours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(251,191,36,0.2);
    border: 1px solid rgba(251,191,36,0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fbbf24;
}

@media (max-width: 1024px) {
    .home-regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .home-regions-grid { grid-template-columns: 1fr; }
}

/* ============================================
   KİRALIK İLANLAR
   ============================================ */
.home-rentals { padding: 70px 0; background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }

.home-rentals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.home-rental-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,37,64,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.home-rental-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.12);
}

.home-rental-img {
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.home-rental-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-rental-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(251, 146, 60, 0.95);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

.home-rental-year {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10, 37, 64, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.home-rentalcars {
    padding: 70px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    color: white;
}

.home-rentalcars .section-title { color: white; }
.home-rentalcars .section-subtitle { color: rgba(255,255,255,.8); }
.home-rentalcars .section-eyebrow { color: #fb923c; }

.home-rentalcars .home-rental-card { background: white; }

.home-rentalcars .section-cta a.btn-primary {
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    color: white;
}

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

.home-rental-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px;
    line-height: 1.3;
}

.home-rental-location {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-rental-location i { color: #1e88e5; }

.home-rental-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.home-rental-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: #6b7280;
}

.home-rental-specs i { color: #1e88e5; font-size: 13px; }

.home-rental-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.home-rental-price strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1e88e5;
    line-height: 1;
}

.home-rental-price small {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.home-rental-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.home-rental-btn:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(30,136,229,0.35);
}

@media (max-width: 1024px) {
    .home-rentals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .home-rentals-grid { grid-template-columns: 1fr; }
}

/* ============================================
   POPÜLER ETKİNLİKLER
   ============================================ */
.home-events { padding: 70px 0; background: white; }

.home-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.home-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,37,64,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.home-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.12);
}

.home-event-img {
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.home-event-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(251,191,36,0.4);
    line-height: 1.1;
}

.home-event-date strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.home-event-date span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.home-event-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px;
    line-height: 1.3;
}

.home-event-location {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-event-location i { color: #1e88e5; font-size: 12px; }

.home-event-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 14px;
}

.home-event-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.home-event-price strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0a2540;
    line-height: 1;
}

.home-event-price small {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.home-event-btn {
    padding: 7px 14px;
    background: #f3f4f6;
    color: #0a2540 !important;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.home-event-btn:hover {
    background: #1e88e5;
    color: white !important;
}

@media (max-width: 1024px) {
    .home-events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .home-events-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG YAZILARI
   ============================================ */
.home-blog { padding: 70px 0; background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.home-blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,37,64,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.12);
}

.home-blog-img {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    display: block;
    transition: transform 0.4s;
}

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

.home-blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #6b7280;
}

.home-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.home-blog-meta i { color: #1e88e5; font-size: 11px; }

.home-blog-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 10px;
    line-height: 1.3;
}

.home-blog-body h3 a { color: inherit; text-decoration: none; }
.home-blog-body h3 a:hover { color: #1e88e5; }

.home-blog-body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

.home-blog-link {
    color: #1e88e5 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.home-blog-link:hover { gap: 10px; }

@media (max-width: 1024px) {
    .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .home-blog-grid { grid-template-columns: 1fr; }
}

/* === BLOG DETAY (bl- prefix) === */
.bl-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 50px;
    color: white;
}

.bl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.4) 0%, rgba(10,37,64,0.92) 100%);
}

.bl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.bl-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-size: 13.5px;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.bl-back-link:hover { color: #fbbf24 !important; }

.bl-cat-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.bl-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.bl-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.bl-meta span { display: inline-flex; align-items: center; gap: 6px; }
.bl-meta i { color: #fbbf24; font-size: 14px; }

.bl-content-wrap { padding: 50px 0; background: #f8fafc; }

.bl-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.bl-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(10,37,64,0.05);
}

.bl-excerpt {
    font-size: 19px;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 500;
}

.bl-body {
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
}

.bl-body p { margin: 0 0 18px; }
.bl-body h2, .bl-body h3 {
    color: #0a2540;
    font-weight: 700;
    margin: 28px 0 14px;
}

.bl-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

.bl-share strong { color: #374151; font-size: 14px; }

.bl-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: transform 0.2s;
}

.bl-share-btn:hover { transform: translateY(-2px); }
.bl-share-wa { background: #25d366; }
.bl-share-tw { background: #1da1f2; }
.bl-share-fb { background: #1877f2; }
.bl-share-li { background: #0a66c2; }

.bl-author-box {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 12px;
}

.bl-author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
}

.bl-author-info strong { color: #0a2540; font-size: 16px; }
.bl-author-info p { color: #6b7280; margin: 4px 0 0; font-size: 13.5px; }

.bl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 20px;
}

.bl-sidebar-card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(10,37,64,0.05);
}

.bl-sidebar-card h3 {
    margin: 0 0 10px;
    color: #0a2540;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bl-sidebar-card h3 i { color: #1e88e5; }

.bl-sidebar-card p { color: #6b7280; font-size: 13.5px; margin: 0 0 14px; }

.bl-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.bl-sidebar-btn:hover { transform: translateY(-2px); }

.bl-sidebar-btn-outline {
    background: white;
    color: #1e88e5 !important;
    border: 1.5px solid #1e88e5;
}

.bl-sidebar-cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-align: center;
}

.bl-sidebar-cta i { font-size: 36px; margin-bottom: 10px; display: block; }
.bl-sidebar-cta strong { font-size: 17px; display: block; margin-bottom: 4px; }
.bl-sidebar-cta p { color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.bl-sidebar-cta .bl-sidebar-btn {
    background: white;
    color: #16a34a !important;
}

.bl-related {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.bl-related .section-title { font-size: 24px; }

.bl-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.bl-related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10,37,64,0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    display: block;
}

.bl-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10,37,64,0.1);
}

.bl-related-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
}

.bl-related-body { padding: 16px; }
.bl-related-cat {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(251,191,36,0.15);
    color: #92400e;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bl-related-body h4 { font-size: 15px; margin: 0 0 6px; color: #0a2540; line-height: 1.3; }
.bl-related-body span { font-size: 11.5px; color: #6b7280; }

/* === BLOG LİSTE === */
.bl-list-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.bl-list-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin: 12px 0 16px;
    letter-spacing: -0.5px;
}

.bl-list-hero p { color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; font-size: 16px; }

.bl-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bl-list-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,37,64,0.06);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.bl-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,37,64,0.12);
}

.bl-list-img {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    display: block;
}

.bl-list-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a2540;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.bl-list-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.bl-list-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #6b7280;
}

.bl-list-meta span { display: inline-flex; align-items: center; gap: 4px; }
.bl-list-meta i { color: #1e88e5; }

.bl-list-body h3 { font-size: 18px; margin: 0 0 10px; line-height: 1.3; }
.bl-list-body h3 a { color: #0a2540; text-decoration: none; }
.bl-list-body h3 a:hover { color: #1e88e5; }

.bl-list-body p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

.bl-list-link {
    color: #1e88e5 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.bl-list-link:hover { gap: 10px; }

.bl-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.bl-empty i { font-size: 60px; color: #d1d5db; display: block; margin-bottom: 16px; }
.bl-empty h2 { color: #374151; margin: 0 0 8px; }

@media (max-width: 1024px) {
    .bl-layout { grid-template-columns: 1fr; }
    .bl-sidebar { position: static; }
    .bl-related-grid { grid-template-columns: repeat(2, 1fr); }
    .bl-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bl-title { font-size: 28px; }
    .bl-content { padding: 24px; }
    .bl-hero { min-height: 360px; padding: 60px 0 40px; }
}

@media (max-width: 480px) {
    .bl-related-grid { grid-template-columns: 1fr; }
    .bl-list-grid { grid-template-columns: 1fr; }
    .bl-list-hero h1 { font-size: 32px; }
}

/* === AUTH (Giriş/Üye Ol) === */
.auth-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 50%, #1e88e5 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.auth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.auth-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.auth-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,191,36,0.2) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.auth-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30,136,229,0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

.auth-bg-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.auth-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
    min-height: 700px;
}

.auth-brand-side {
    color: white;
    padding: 20px;
}

.auth-brand-content {
    max-width: 480px;
}

.auth-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.auth-brand-logo h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #fbbf24 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-brand-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0 0 36px;
}

.auth-brand-tagline strong {
    color: #fbbf24;
    font-weight: 800;
    font-size: 22px;
}

.auth-brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-brand-features li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.auth-brand-features li i {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 18px;
    flex-shrink: 0;
}

.auth-brand-features li strong {
    display: block;
    color: white;
    font-size: 15px;
    margin-bottom: 2px;
}

.auth-brand-features li span {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}

.auth-brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.auth-brand-stats div {
    text-align: center;
}

.auth-brand-stats strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 4px;
}

.auth-brand-stats span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form-side { padding: 0; }

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.auth-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: #6b7280;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
}

.auth-tab:hover { color: #1e88e5; }

.auth-tab.active {
    background: white;
    color: #1e88e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border-left: 4px solid;
}

.auth-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #dc2626;
}

.auth-alert-error i { color: #dc2626; font-size: 18px; }

.auth-tab-content { display: none; }
.auth-tab-content.active { display: block; }

.auth-title {
    font-size: 22px;
    font-weight: 800;
    color: #0a2540;
    margin: 0 0 6px;
}

.auth-subtitle {
    color: #6b7280;
    margin: 0 0 20px;
    font-size: 14px;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }

.auth-field { display: flex; flex-direction: column; }

.auth-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.auth-label i { color: #1e88e5; font-size: 12px; }

.auth-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #f9fafb;
    color: #374151;
    transition: all 0.2s;
    box-sizing: border-box;
}

.auth-field input:focus {
    border-color: #1e88e5;
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.1);
}

.auth-input-password {
    position: relative;
}

.auth-input-password input {
    padding-right: 46px;
}

.auth-eye {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-eye:hover {
    background: #f3f4f6;
    color: #1e88e5;
}

.auth-input-readonly {
    background: #fef3c7 !important;
    color: #92400e !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.auth-hint {
    display: block;
    font-size: 12px;
    color: #16a34a;
    margin-top: 4px;
    font-weight: 500;
}

.auth-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.auth-gender-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}
.auth-gender-option {
    cursor: pointer;
    position: relative;
}
.auth-gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.auth-gender-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.2s;
    font-weight: 600;
    color: #374151;
}
.auth-gender-inner i {
    font-size: 22px;
}
.auth-gender-female .auth-gender-inner i { color: #ec4899; }
.auth-gender-male .auth-gender-inner i { color: #3b82f6; }
.auth-gender-option:hover .auth-gender-inner {
    border-color: #1e88e5;
    background: #f0f9ff;
}
.auth-gender-option input[type="radio"]:checked + .auth-gender-inner {
    background: linear-gradient(135deg, #1e88e5 0%, #0a2540 100%);
    color: white;
    border-color: #1e88e5;
    box-shadow: 0 4px 12px rgba(30,136,229,0.25);
}
.auth-gender-option input[type="radio"]:checked + .auth-gender-inner i { color: white; }
.auth-gender-display {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}
.auth-gender-display.female {
    background: #fce7f3;
    color: #be185d;
    border: 1px solid #fbcfe8;
}
.auth-gender-display.male {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #4b5563;
    user-select: none;
}

.auth-checkbox input { position: absolute; opacity: 0; pointer-events: none; }

.auth-checkmark {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 5px;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.auth-checkbox input:checked ~ .auth-checkmark {
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    border-color: #1e88e5;
}

.auth-checkbox input:checked ~ .auth-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auth-checkbox-block { line-height: 1.5; }
.auth-checkbox-block a { color: #1e88e5; text-decoration: none; }
.auth-checkbox-block a:hover { text-decoration: underline; }

.auth-link {
    color: #1e88e5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.auth-link:hover { text-decoration: underline; }

.auth-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #1e88e5 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(30,136,229,0.4);
    font-family: inherit;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30,136,229,0.5);
}

.auth-divider {
    text-align: center;
    margin: 18px 0 14px;
    position: relative;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 0;
}

.auth-divider span {
    background: white;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

.auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.auth-social-btn {
    padding: 11px 14px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #374151;
    font-family: inherit;
}

.auth-social-btn:hover {
    border-color: #1e88e5;
    background: #f9fafb;
}

.auth-social-google i { color: #ea4335; }
.auth-social-facebook i { color: #1877f2; }

.auth-foot {
    text-align: center;
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    font-size: 12px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.auth-foot i { color: #16a34a; }

@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .auth-brand-side { text-align: center; }
    .auth-brand-content { margin: 0 auto; }
    .auth-brand-features li { text-align: left; }
}

@media (max-width: 640px) {
    .auth-section { padding: 30px 0; }
    .auth-row-2 { grid-template-columns: 1fr; }
    .auth-card { padding: 24px 20px; }
    .auth-social { grid-template-columns: 1fr; }
    .auth-brand-logo h2 { font-size: 22px; }
    .auth-brand-tagline { font-size: 16px; }
}

/* === Koltuk Seçim Haritası === */
.seat-map-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 24px;
    border-radius: 16px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
}
.seat-map-header {
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    color: white;
    padding: 12px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}
.bus-front {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
}
.bus-front i { font-size: 20px; }
.seat-map {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    padding: 16px 8px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.seat-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.seat-row-num {
    width: 24px;
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
}
.seat {
    width: 44px;
    height: 44px;
    border: 2px solid;
    border-radius: 8px 8px 4px 4px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.15s;
    position: relative;
    user-select: none;
}
.seat:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.seat:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.seat-available {
    border-color: #16a34a;
    color: #16a34a;
    background: white;
}
.seat-available:hover {
    background: #dcfce7;
}
.seat-selected {
    border-color: #1e88e5;
    background: #1e88e5;
    color: white;
    box-shadow: 0 0 0 3px rgba(30,136,229,0.3);
}
.seat-booked {
    border-color: #dc2626;
    background: #fee2e2;
    color: #dc2626;
}
.seat-female-only {
    border-color: #ec4899;
    background: #fce7f3;
    color: #ec4899;
}
.seat-male-only {
    border-color: #3b82f6;
    background: #dbeafe;
    color: #3b82f6;
}
.seat-blocked-female {
    border-color: #f59e0b;
    background: #fef3c7;
    color: #f59e0b;
    background-image: linear-gradient(45deg, transparent 48%, #f59e0b 49%, #f59e0b 51%, transparent 52%);
    background-size: 8px 8px;
}
.seat-blocked-male {
    border-color: #f59e0b;
    background: #fef3c7;
    color: #f59e0b;
    background-image: linear-gradient(45deg, transparent 48%, #f59e0b 49%, #f59e0b 51%, transparent 52%);
    background-size: 8px 8px;
}
.seat-male-only {
    border-color: #3b82f6;
    background: #dbeafe;
    color: #1e40af;
}
.seat-disabled-gender {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
    position: relative;
}
.seat-disabled-gender::after {
    content: '🚫';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    opacity: 0.7;
}
.seat-driver {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.seat-aisle {
    width: 16px;
}
.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    font-size: 12px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.legend-item .seat {
    width: 24px;
    height: 24px;
    font-size: 9px;
    cursor: default;
}

.vehicle-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.vehicle-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
    cursor: pointer;
}
.vehicle-card:hover {
    border-color: #1e88e5;
    box-shadow: 0 4px 12px rgba(30,136,229,0.1);
}
.vehicle-card.selected {
    border-color: #1e88e5;
    background: #f0f9ff;
}
.vehicle-plate {
    font-size: 18px;
    font-weight: 800;
    color: #0a2540;
    letter-spacing: 1px;
}
.vehicle-model {
    color: #6b7280;
    margin-top: 4px;
}
.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.vehicle-feature {
    background: #f0f9ff;
    color: #1e88e5;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
}
.vehicle-occupancy {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.occupancy-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 12px;
}
.occupancy-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a 0%, #fbbf24 70%, #dc2626 100%);
    transition: width 0.3s;
}

.gender-pref-card {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.gender-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.gender-option {
    flex: 1;
    min-width: 120px;
}
.gender-option label {
    display: block;
    padding: 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.gender-option input[type="radio"] {
    display: none;
}
.gender-option input[type="radio"]:checked + label {
    border-color: #1e88e5;
    background: #dbeafe;
}
.gender-option label i { display: block; font-size: 24px; margin-bottom: 4px; }

@media (max-width: 480px) {
    .seat { width: 36px; height: 36px; font-size: 11px; }
    .seat-map-wrapper { padding: 12px; }
    .vehicle-list { grid-template-columns: 1fr; }
}

/* === Bildirim Çanı === */
.notif-dropdown {
    position: relative;
}
.notif-trigger {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    color: #374151;
    font-size: 18px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notif-trigger:hover {
    background: #1e88e5;
    color: white;
    transform: scale(1.05);
}
.notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #dc2626;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    text-align: center;
    border: 2px solid white;
    animation: pulse 2s infinite;
}
.notif-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.notif-dropdown.open .notif-menu { display: block; }
.notif-menu-head {
    padding: 14px 16px;
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notif-menu-head a { color: white; opacity: 0.9; }
.notif-menu-body {
    max-height: 420px;
    overflow-y: auto;
}
.notif-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: #374151;
    transition: background 0.15s;
}
.notif-item:hover { background: #f9fafb; }
.notif-unread {
    background: #eff6ff;
    border-left: 3px solid #1e88e5;
}
.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f9ff;
    color: #1e88e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.notif-icon.booking { background: #fef3c7; color: #f59e0b; }
.notif-icon.payment { background: #dcfce7; color: #16a34a; }
.notif-icon.commission { background: #fce7f3; color: #ec4899; }
@media (max-width: 480px) {
    .notif-menu { width: 320px; right: -50px; }
}

/* === Profesyonel Ödeme Formu === */
.pay-card-section {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pay-card-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2540;
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}
.pay-card-section-title > i {
    color: #1e88e5;
    font-size: 22px;
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pay-card-brands {
    margin-left: auto;
    display: flex;
    gap: 8px;
}
.pay-card-brands i {
    font-size: 32px;
    color: #d1d5db;
    transition: color 0.2s;
}
.pay-card-brands i.fa-cc-visa { color: #1a1f71; }
.pay-card-brands i.fa-cc-mastercard { color: #eb001b; }
.pay-card-brands i.fa-cc-amex { color: #2e77bb; }
.pay-card-brands i.fa-cc-troy { color: #ff6900; }
.pay-field {
    margin-bottom: 18px;
}
.pay-field:last-child {
    margin-bottom: 0;
}
.pay-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}
.pay-label-text {
    color: #374151;
}
.pay-label-required {
    color: #dc2626;
    font-weight: 700;
}
.pay-label-info {
    color: #9ca3af;
    cursor: help;
    margin-left: auto;
    transition: color 0.2s;
}
.pay-label-info:hover {
    color: #1e88e5;
}
.pay-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px 0 44px;
    transition: all 0.2s;
}
.pay-input-wrap:focus-within {
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.08);
    background: #fafbff;
}
.pay-input-wrap.pay-input-card:focus-within {
    border-color: #fb923c;
    box-shadow: 0 0 0 4px rgba(251,146,60,0.1);
}
.pay-input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 16px;
}
.pay-input-wrap:focus-within .pay-input-icon {
    color: #1e88e5;
}
.pay-input-wrap.pay-input-card:focus-within .pay-input-icon {
    color: #fb923c;
}
.pay-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 0;
    font-size: 15px;
    color: #0a2540;
    font-weight: 500;
    width: 100%;
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: 0.5px;
}
.pay-input-wrap input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0;
}
.pay-card-detected {
    position: absolute;
    right: 14px;
    font-size: 28px;
    color: #1a1f71;
}
.pay-card-detected i {
    display: block;
}
.pay-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pay-input-cvv {
    padding-right: 50px;
}
.pay-cvv-toggle {
    position: absolute;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pay-cvv-toggle:hover {
    background: #f3f4f6;
    color: #1e88e5;
}
.pay-field-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pay-field-hint i {
    color: #16a34a;
}
@media (max-width: 480px) {
    .pay-row-2 {
        grid-template-columns: 1fr;
    }
    .pay-card-section {
        padding: 16px;
    }
    .pay-card-brands {
        display: none;
    }
}

/* === Hesabım Sayfaları - Kurumsal === */
.mb-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}
.mb-grid-2 { grid-template-columns: 1fr 1fr; }
.mb-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .mb-grid-2, .mb-grid-4 { grid-template-columns: 1fr; }
}
.mb-stat-card {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #f0f3f7;
    display: flex;
    align-items: center;
    gap: 14px;
}
.mb-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}
.mb-stat-blue { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.mb-stat-green { background: linear-gradient(135deg, #10b981, #047857); }
.mb-stat-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.mb-stat-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.mb-stat-label { font-size: 12px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.mb-stat-value { font-size: 22px; font-weight: 800; color: #0a2540; margin-top: 2px; }
.mb-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #f0f3f7;
    overflow: hidden;
    margin-bottom: 20px;
}
.mb-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f3f7;
    background: linear-gradient(135deg, #fafbff, #ffffff);
}
.mb-card-header h3 { color: #0a2540; margin: 0 0 4px; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.mb-card-header h3 i { color: #1e88e5; }
.mb-card-header p { color: #6b7280; margin: 0; font-size: 13px; }
.mb-card-body { padding: 24px; }
.mb-form-group { margin-bottom: 18px; }
.mb-form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.mb-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: white;
    color: #0a2540;
}
.mb-input:focus { outline: none; border-color: #1e88e5; box-shadow: 0 0 0 3px rgba(30,136,229,0.1); }
.mb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.mb-input-wrap .mb-input {
    padding-left: 40px;
    padding-right: 44px;
}
.mb-input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    z-index: 1;
}
.mb-eye {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 6px;
}
.mb-eye:hover { background: #f3f4f6; color: #1e88e5; }
.mb-gender-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mb-gender-option { cursor: pointer; }
.mb-gender-option input { display: none; }
.mb-gender-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    color: #374151;
    transition: all 0.2s;
}
.mb-gender-option input:checked + .mb-gender-inner {
    background: linear-gradient(135deg, #1e88e5, #0a2540);
    color: white;
    border-color: #1e88e5;
}
.mb-checkbox-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
}
.mb-checkbox-card input { margin-top: 4px; }
.mb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.mb-btn-primary { background: linear-gradient(135deg, #1e88e5, #0a2540); color: white; }
.mb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(30,136,229,0.3); }
.mb-btn-warning { background: #f59e0b; color: white; }
.mb-btn-outline { background: white; color: #1e88e5; border: 2px solid #e5e7eb; }
.mb-btn-block { display: flex; width: 100%; }
.mb-btn-lg { padding: 14px 24px; font-size: 15px; }
.mb-btn-icon { background: white; border: 1px solid #e5e7eb; padding: 6px 10px; border-radius: 6px; cursor: pointer; color: #6b7280; }
.mb-btn-icon:hover { background: #f0f9ff; color: #1e88e5; }
.mb-empty { text-align: center; padding: 40px 20px; color: #9ca3af; }
.mb-empty i { font-size: 36px; color: #d1d5db; display: block; margin-bottom: 8px; }
.mb-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.mb-alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.mb-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Profil hero */
.mb-profile-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    color: white;
    padding: 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15);
}
.mb-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #facc15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.mb-profile-info h2 { margin: 0 0 4px; font-size: 24px; font-weight: 800; }
.mb-profile-info p { margin: 0 0 12px; opacity: 0.85; font-size: 14px; }
.mb-profile-info p i { margin: 0 4px; }
.mb-profile-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.mb-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.mb-badge-blue { background: rgba(59,130,246,0.2); color: #93c5fd; }
.mb-badge-pink { background: rgba(236,72,153,0.2); color: #f9a8d4; }
.mb-badge-green { background: rgba(34,197,94,0.2); color: #86efac; }

/* Info grid */
.mb-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .mb-info-grid { grid-template-columns: 1fr; } }
.mb-info-item {
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}
.mb-info-item small { display: block; font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; }
.mb-info-item strong { display: block; font-size: 14px; color: #0a2540; margin-top: 4px; }

/* Rezervasyon kartları */
.mb-filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.mb-tab {
    padding: 8px 16px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.mb-tab:hover { border-color: #1e88e5; color: #1e88e5; }
.mb-tab.active { background: #1e88e5; color: white; border-color: #1e88e5; }
.mb-tab i { margin-right: 4px; }
.mb-bookings-list { display: flex; flex-direction: column; gap: 16px; }
.mb-booking-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #f0f3f7;
    display: grid;
    grid-template-columns: 220px 1fr;
}
@media (max-width: 768px) {
    .mb-booking-card { grid-template-columns: 1fr; }
}
.mb-booking-image {
    position: relative;
    min-height: 180px;
    background: #f3f4f6;
    overflow: hidden;
}
.mb-booking-image img { width: 100%; height: 100%; object-fit: cover; }
.mb-booking-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.mb-status-pending { background: rgba(251,191,36,0.95); color: #78350f; }
.mb-status-confirmed { background: rgba(34,197,94,0.95); color: white; }
.mb-status-cancelled { background: rgba(239,68,68,0.95); color: white; }
.mb-status-completed { background: rgba(99,102,241,0.95); color: white; }
.mb-booking-body { padding: 20px; display: flex; flex-direction: column; }
.mb-booking-title { color: #0a2540; margin: 0 0 12px; font-size: 18px; font-weight: 700; }
.mb-booking-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.mb-booking-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 13px;
}
.mb-booking-meta-item i { color: #1e88e5; }
.mb-booking-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f3f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.mb-booking-price small { display: block; color: #6b7280; font-size: 11px; text-transform: uppercase; }
.mb-booking-price strong { display: block; color: #0a2540; font-size: 22px; font-weight: 800; }
.mb-booking-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.mb-booking-actions .mb-btn { font-size: 12px; padding: 7px 12px; }

/* Affiliate */
.mb-affiliate-hero {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    color: white;
    padding: 32px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.mb-affiliate-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.mb-affiliate-hero h2 { margin: 0 0 8px; font-size: 26px; font-weight: 800; }
.mb-affiliate-hero p { margin: 0 0 24px; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }
.mb-referral-box {
    background: white;
    color: #374151;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mb-referral-box small { display: block; color: #6b7280; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; margin-top: 12px; }
.mb-referral-box small:first-child { margin-top: 0; }
.mb-referral-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
}
.mb-referral-code strong { flex: 1; font-size: 24px; color: #1e40af; letter-spacing: 2px; }
.mb-referral-link {
    display: flex;
    gap: 8px;
}
.mb-referral-link input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    background: #fafbff;
}
.mb-referral-list { display: flex; flex-direction: column; gap: 8px; }
.mb-referral-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
}
.mb-referral-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e88e5, #0a2540);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.mb-referral-item strong { display: block; color: #0a2540; }
.mb-referral-item small { color: #6b7280; font-size: 12px; }
.mb-referral-date { color: #9ca3af !important; }
.mb-commission-list { display: flex; flex-direction: column; gap: 8px; }
.mb-commission-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
}
.mb-commission-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.mb-commission-icon.paid { background: linear-gradient(135deg, #16a34a, #15803d); }
.mb-commission-icon.pending { background: linear-gradient(135deg, #f59e0b, #d97706); }
.mb-commission-item strong { display: block; color: #0a2540; font-size: 14px; }
.mb-commission-item small { color: #6b7280; font-size: 12px; }
.mb-commission-status { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.mb-commission-status.paid { background: #dcfce7; color: #166534; }
.mb-commission-status.pending { background: #fef3c7; color: #92400e; }

.mb-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
@media (max-width: 768px) { .mb-how-grid { grid-template-columns: 1fr; } }
.mb-how-item { padding: 16px; }
.mb-how-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}
.mb-how-item strong { display: block; color: #0a2540; margin-bottom: 6px; }
.mb-how-item small { color: #6b7280; font-size: 13px; }

.mb-security-tips { display: flex; flex-direction: column; gap: 10px; }
.mb-tip-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; }
.mb-tip-item i { font-size: 16px; }

.mb-pwd-strength { margin-top: 6px; }
.mb-pwd-bar { height: 4px; background: #e5e7eb; border-radius: 2px; overflow: hidden; margin-bottom: 4px; }
.mb-pwd-fill { height: 100%; transition: width 0.3s, background 0.3s; }
.mb-pwd-match { margin-top: 6px; font-size: 12px; }

/* === Dashboard Hero === */
.mb-dash-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1e88e5 100%);
    color: white;
    padding: 36px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.2);
    position: relative;
    overflow: hidden;
}
.mb-dash-hero::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.mb-dash-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.mb-dash-hero-text { flex: 1; }
.mb-dash-hero-greeting {
    opacity: 0.85;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.mb-dash-hero-name {
    margin: 4px 0 8px;
    font-size: 32px;
    font-weight: 800;
    color: white;
}
.mb-dash-hero-desc {
    margin: 0 0 20px;
    opacity: 0.9;
    font-size: 15px;
    max-width: 500px;
}
.mb-dash-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mb-dash-hero-art {
    font-size: 100px;
    color: rgba(251, 146, 60, 0.4);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .mb-dash-hero { padding: 24px; }
    .mb-dash-hero-content { flex-direction: column; align-items: flex-start; }
    .mb-dash-hero-art { font-size: 60px; }
    .mb-dash-hero-name { font-size: 24px; }
}

/* === Stat Card Sub === */
.mb-stat-sub {
    display: block;
    color: #6b7280;
    font-size: 11px;
    margin-top: 4px;
    font-weight: 500;
}

/* === Card Link === */
.mb-card-link {
    color: #1e88e5;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}
.mb-card-link:hover { color: #0a2540; }

/* === List Item === */
.mb-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f3f7;
    transition: background 0.15s;
}
.mb-list-item:hover { background: #f9fafb; }
.mb-list-item:last-child { border-bottom: none; }
.mb-list-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}
.mb-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mb-list-body {
    flex: 1;
    min-width: 0;
}
.mb-list-body strong {
    display: block;
    color: #0a2540;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mb-list-body small {
    display: block;
    color: #6b7280;
    font-size: 12px;
}
.mb-list-side {
    text-align: right;
    flex-shrink: 0;
}
.mb-list-price {
    display: block;
    color: #0a2540;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

/* === Tags === */
.mb-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.mb-tag-green { background: #dcfce7; color: #166534; }
.mb-tag-red { background: #fee2e2; color: #991b1b; }
.mb-tag-amber { background: #fef3c7; color: #92400e; }
.mb-tag-blue { background: #dbeafe; color: #1e40af; }
.mb-tag-purple { background: #ede9fe; color: #5b21b6; }

/* === Invite Box === */
.mb-invite-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px dashed #fb923c;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}
.mb-invite-label {
    display: block;
    color: #92400e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}
.mb-invite-code {
    font-size: 26px;
    font-weight: 800;
    color: #c2410c;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-family: 'SF Mono', Monaco, monospace;
}

.mb-invite-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px 0;
}
.mb-invite-stat {
    text-align: center;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}
.mb-invite-stat strong {
    display: block;
    color: #0a2540;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}
.mb-invite-stat small {
    display: block;
    color: #6b7280;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Quick Grid === */
.mb-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .mb-quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .mb-quick-grid { grid-template-columns: 1fr; } }
.mb-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #f9fafb;
    border: 2px solid #f0f3f7;
    border-radius: 12px;
    text-decoration: none;
    color: #0a2540;
    transition: all 0.15s;
}
.mb-quick-card:hover {
    border-color: #1e88e5;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 37, 64, 0.08);
}
.mb-quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}
.mb-quick-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.mb-quick-card small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

/* === Button Variants === */
.mb-btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.mb-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}
.mb-btn-success {
    background: #16a34a !important;
    color: white !important;
    border-color: #16a34a !important;
}
