/* ========================================
   SeherYeli Turizm - Ana CSS Dosyası
   ======================================== */

/* ---- CSS DEĞİŞKENLERİ (Kraliyet Zümrüdü & Sıcak Altın) ---- */
:root {
    --primary: #064e3b;
    --primary-dark: #022c22;
    --primary-light: #059669;
    --secondary: #d97706;
    --secondary-dark: #b45309;
    --accent: #f59e0b;
    --text-dark: #0f172a;
    --text-mid: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(6,78,59,0.06);
    --shadow-md: 0 8px 25px rgba(6,78,59,0.12);
    --shadow-lg: 0 20px 60px rgba(6,78,59,0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: light;
    background: #ffffff;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TÃ¼m koyu arka planlarÄ± sÄ±fÄ±rla */
*, *::before, *::after {
    color-scheme: light;
}

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

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

ul { list-style: none; }

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

/* ---- BUTONLAR ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,135,42,0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- SECTION ORTAK ---- */
section {
    padding: 90px 0;
    background: #ffffff;
}

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

.section-badge {
    display: inline-block;
    background: rgba(26,122,74,0.10);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-header p {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- REVEAL ANÄ°MASYON ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HEADER
   ======================================== */
.header-top {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact {
    display: flex;
    gap: 20px;
}
.header-contact a {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-contact a i {
    color: var(--secondary);
}
.header-contact a:hover { color: var(--primary); }
.header-social {
    display: flex;
    gap: 10px;
}
.header-social a {
    color: var(--text-mid);
    font-size: 0.85rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    transition: var(--transition);
}
.header-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    background: #ffffff !important;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(6, 78, 59, 0.25));
}
.logo-icon-svg:hover {
    transform: scale(1.08) rotate(3deg);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-main {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 3.5px;
    text-transform: uppercase;
}
.footer-logo .logo-main {
    color: #ffffff;
}
.footer-logo .logo-sub {
    color: var(--accent);
}
.site-main-logo {
    height: 50px;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.site-main-logo:hover {
    transform: scale(1.05);
}
.footer-main-logo {
    height: 65px;
    max-height: 65px;
}
.logo-emblem-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}
.logo-emblem-img:hover {
    transform: scale(1.08);
}
.footer-emblem-img {
    height: 56px;
    width: 56px;
}
.brand-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.brand-logo-img:hover {
    transform: scale(1.04);
}
.footer-logo-img {
    height: 65px;
}
.logo-icon {
    display: none !important;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.dropdown-menu li a:hover {
    background: #ffffff;
    color: var(--primary);
}
.dropdown-menu li a i {
    width: 18px;
    color: var(--secondary);
}

/* CTA Button & Hamburger */
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========================================
   HERO / SLIDER
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #000000;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 44, 34, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}
.hero-slider, .slide {
    width: 100%;
    height: 100%;
}
.hero-slider {
    position: relative;
    z-index: 2;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,70,35,0.78) 0%, rgba(10,70,35,0.32) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 780px;
    padding: 0 24px;
    animation: slideIn 0.8s ease 0.3s both;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.slide-badge {
    display: inline-block;
    background: rgba(232,135,42,0.9);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.slide-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.slide-content h1 span {
    color: var(--secondary);
    display: block;
}
.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.slide-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Arama Kutusu */
.hero-search {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.search-box {
    background: #ffffff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    overflow: visible;
}
.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    background: #ffffff;
}
.search-tab {
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}
.search-tab.active, .search-tab:hover {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}
.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
}
.search-field {
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    background: #ffffff;
}
.search-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.search-field label i { color: var(--secondary); margin-right: 5px; }
.search-field input,
.search-field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #ffffff;
    padding: 0;
    appearance: auto;
    -webkit-appearance: auto;
}
.search-btn {
    border-radius: 0;
    padding: 16px 32px;
    font-size: 0.95rem;
}

/* ========================================
   Ä°STATÄ°STÄ°KLER
   ======================================== */
.stats {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    text-align: center;
    color: var(--text-dark);
}
.stat-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-text {
    font-size: 2rem;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 600;
}

/* ========================================
   HÄ°ZMETLER
   ======================================== */
.services { background: #ffffff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d1f16;
}
.service-card p {
    color: #3d5a47;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-link {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ========================================
   TURLAR
   ======================================== */
.tours { background: #ffffff; }
.tour-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tour-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-hot { background: #ef4444; }
.badge-new { background: #10b981; }
.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,92,53,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.tour-card:hover .tour-overlay { opacity: 1; }
.tour-info { padding: 20px; }
.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}
.tour-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.tour-meta i { color: var(--secondary); }
.tour-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.tour-info p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}
.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.tour-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
}
.tour-rating i { color: #f59e0b; }
.tour-rating span { color: var(--text-light); margin-left: 4px; }
.tour-price { text-align: right; }
.price-old {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}
.price-new {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}
.tour-card.hidden { display: none; }
.tours-cta {
    text-align: center;
    margin-top: 48px;
}
.tours-cta p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

/* ========================================
   NEDEN BÄ°Z
   ======================================== */
.why-us {
    background: #ffffff;
    padding: 100px 0;
}
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.why-us-content .section-badge { display: inline-block; }
.why-us-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 16px 0;
    line-height: 1.3;
}
.why-us-content > p {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 1rem;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.why-list li i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Image Grid */
.image-grid {
    position: relative;
    height: 460px;
}
.img-main {
    width: 75%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    left: 0;
}
.img-secondary {
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    right: 0;
    border: 5px solid var(--bg-white);
}
.exp-badge {
    position: absolute;
    bottom: 28px;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}
.exp-text {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* ========================================
   HAKKIMIZDA
   ======================================== */
.about { background: #ffffff; }
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.about-card {
    padding: 36px 28px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.about-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.about-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========================================
   MÃœÅTERÄ° YORUMLARI
   ======================================== */
.testimonials { background: #ffffff; }
.testimonials-slider { overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: calc(50% - 14px);
    margin-right: 28px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}
.testimonial-card p {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after { content: '"'; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.t-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text-mid);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ========================================
   KAMPANYA BANNER
   ======================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0f5c35 100%);
    padding: 60px 0;
}
.promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.promo-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.promo-content h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 10px;
}
.promo-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.98rem;
}
.promo-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.countdown {
    display: flex;
    gap: 12px;
}
.countdown-item {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    text-align: center;
    min-width: 64px;
}
.countdown-item span {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: var(--font-display);
}
.countdown-item small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Ä°LETÄ°ÅÄ°M
   ======================================== */
.contact { background: #ffffff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    margin-bottom: 48px;
    align-items: start;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(26,122,74,0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--primary); }
.whatsapp-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.whatsapp-btn a:hover {
    background: #1ab755;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Form */
.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #ffffff;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,76,129,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

/* Harita */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-top {
    background: #0a4a2a;
    padding: 72px 0 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
}
.footer-brand .footer-logo .logo-main { color: #fff; }
.footer-brand .logo-sub { color: #a8f0c6; }
.footer-brand .logo-icon {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}
.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 16px 0 24px;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links ul a::before {
    content: 'â€º';
    color: var(--secondary);
    font-size: 1.1rem;
}
.footer-links ul a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}
.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}
.footer-contact ul a {
    color: rgba(255,255,255,0.65);
}
.footer-contact ul a:hover { color: #fff; }
.footer-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.badge-item {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.76rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.badge-item i { color: var(--secondary); }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}
.footer-bottom-links a:hover { color: var(--secondary); }

/* ========================================
   UMRE BÜTÇE & FİYAT HESAPLAYICI STİLLERİ
   ======================================== */
.calculator-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.calculator-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}
.calculator-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 36px;
}
.calculator-header h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-top: 10px;
    margin-bottom: 8px;
}
.calculator-header p {
    color: #64748b;
    font-size: 0.95rem;
}
.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
}
@media (max-width: 900px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}
.calculator-controls .calc-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 600;
    background: #f8fafc;
    transition: all 0.2s ease;
}
.calculator-controls .calc-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.15);
}
.calculator-result-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
    text-align: center;
}
.res-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 700;
}
.res-price-usd {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}
.res-currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.res-curr-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}
.res-curr-card span {
    display: block;
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 4px;
}
.res-curr-card strong {
    font-size: 1.1rem;
    color: #ffffff;
}
.res-info-note {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

/* ========================================
   YUKARI ÇIK BUTONU
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-float:hover {
    background: #1ab755;
    transform: scale(1.1);
}

/* Form BaÅŸarÄ± MesajÄ± */
.form-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 12px;
    display: none;
}
.form-success.show { display: block; }

/* ========================================
   RESPONSÄ°VE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-inner { gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   RESPONSÄ°VE - MOBÄ°L
   ======================================== */
@media (max-width: 768px) {
    section { padding: 64px 0; }
    .header-top { display: none; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s ease;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 4px 0 4px 16px;
        border: none;
    }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    .search-form { grid-template-columns: 1fr; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .search-btn { border-radius: 0; }

    .services-grid { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .why-us-inner { grid-template-columns: 1fr; }
    .image-grid { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: calc(100%); }
    .promo-inner { flex-direction: column; }
    .promo-cta { align-items: flex-start; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .slide-content h1 { font-size: 1.9rem; }
    .hero { max-height: 700px; }
}

@media (max-width: 480px) {
    .countdown { gap: 8px; }
    .countdown-item { padding: 8px 10px; min-width: 54px; }
    .countdown-item span { font-size: 1.3rem; }
    .slider-btn { display: none; }
}


/* ===== UMRE PAKETİ DAHİL LİSTESİ ===== */
.tour-includes {
    list-style: none;
    margin-bottom: 14px;
    padding: 0;
}
.tour-includes li {
    font-size: 0.82rem;
    color: #3d5a47;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.tour-includes li i {
    color: #1a7a4a;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ========================================
   NAVBAR ACTIONS & USER MENU STYLES
   ======================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-auth {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    color: #ffffff !important;
    border: 1px solid #d97706;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
    transition: all 0.3s ease;
}
.btn-outline-auth:hover {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 78, 59, 0.3);
}

.btn-admin-nav {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    color: #fef08a !important;
    border: 1px solid #d97706;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
    transition: all 0.3s ease;
}
.btn-admin-nav:hover {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%);
    border-color: #f59e0b;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(6, 78, 59, 0.3);
}

.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    border: 1px solid #d97706;
    padding: 6px 16px 6px 8px;
    border-radius: 50px;
    color: #ffffff !important;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
    transition: all 0.3s ease;
}
.user-menu-btn:hover {
    transform: translateY(-1px);
    border-color: #f59e0b;
}
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 220px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-header {
    padding: 8px 16px 12px;
}
.dropdown-header strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.92rem;
}
.dropdown-header small {
    color: var(--text-light);
    font-size: 0.78rem;
}
.user-dropdown hr {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 6px 0;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.dropdown-item:hover {
    background: #f8fafc;
    color: var(--primary);
}
.logout-item {
    color: #ef4444;
}
.logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* ========================================
   AUTH MODAL STYLES
   ======================================== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}
.auth-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 32px 28px;
    position: relative;
    transform: scale(0.95) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}
.auth-modal-overlay.open .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.auth-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}
.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.auth-logo i {
    font-size: 1.4rem;
    color: var(--secondary);
}
.auth-header p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.auth-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}
.auth-tab.active {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-pane {
    display: none;
}
.auth-pane.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-input-group {
    margin-bottom: 18px;
}
.auth-input-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.auth-input-group label i {
    color: var(--primary);
}
.auth-input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}
.auth-input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.15);
}

.label-with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.forgot-link {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}
.forgot-link:hover {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}
.toggle-password:hover {
    color: #475569;
}

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

.auth-options {
    margin-bottom: 20px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: #475569;
    cursor: pointer;
}
.checkbox-label input {
    accent-color: var(--primary);
    margin-top: 3px;
}
.auth-inline-link {
    color: var(--primary);
    font-weight: 500;
}
.auth-inline-link:hover {
    text-decoration: underline;
}

.auth-btn {
    margin-top: 4px;
    border-radius: 10px;
    font-size: 0.95rem;
    padding: 13px;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 22px 0;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}
.auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 12px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.social-btn:hover {
    background: #f8fafc;
    border-color: #4285f4;
    color: #1a73e8;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}
.google-btn i { color: #ea4335; font-size: 1.1rem; }

.forgot-info {
    text-align: center;
    margin-bottom: 20px;
}
.forgot-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}
.forgot-info h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
}
.forgot-info p {
    font-size: 0.83rem;
    color: var(--text-light);
}

.btn-back-to-login {
    width: 100%;
    background: none;
    border: none;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-back-to-login:hover {
    color: var(--primary);
}

/* ========================================
   TOAST NOTIFICATION STYLES
   ======================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 360px;
    border-left: 4px solid var(--primary);
}
.toast.show {
    transform: translateX(0);
}
.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #ef4444; }
.toast.info { border-left-color: #3b82f6; }

@media (max-width: 600px) {
    .auth-row {
        grid-template-columns: 1fr;
    }
    .btn-outline-auth span {
        display: none;
    }
}

/* ========================================
   PROFILE SETTINGS MODAL STYLES
   ======================================== */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}
.profile-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.profile-modal {
    background: #ffffff;
    width: 100%;
    max-width: 860px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 260px 1fr;
    position: relative;
    overflow: hidden;
    max-height: 85vh;
    transform: scale(0.96) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.profile-modal-overlay.open .profile-modal {
    transform: scale(1) translateY(0);
}

.profile-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
}

.profile-user-summary {
    text-align: center;
    margin-bottom: 28px;
}
.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 6px 16px rgba(26, 122, 74, 0.25);
}
.profile-user-summary h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.profile-user-summary span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}
.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 4px 12px;
    background: #e6f4ea;
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.profile-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.profile-nav-btn i {
    font-size: 1rem;
    width: 20px;
}
.profile-nav-btn:hover {
    background: #f1f5f9;
    color: var(--text-dark);
}
.profile-nav-btn.active {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--primary);
}

.profile-body {
    padding: 36px 32px;
    overflow-y: auto;
}

.profile-pane {
    display: none;
}
.profile-pane.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}

.pane-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.pane-header h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.pane-header p {
    font-size: 0.84rem;
    color: var(--text-light);
}

.profile-save-btn {
    margin-top: 10px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Rezervasyon Kartı */
.reservations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.reservation-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    background: #ffffff;
    transition: var(--transition);
}
.reservation-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.res-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.res-active {
    background: #dcfce7;
    color: #15803d;
}
.res-header h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    padding-right: 100px;
}
.res-date {
    font-size: 0.82rem;
    color: var(--text-light);
}
.res-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px dashed #f1f5f9;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 0.85rem;
    color: #334155;
}
.res-details div i {
    color: var(--primary);
    margin-right: 4px;
}
.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: var(--transition);
}
.btn-outline-sm:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Switch Toggle */
.pref-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
.pref-option strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.pref-option p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--primary);
}
input:checked + .slider:before {
    transform: translateX(22px);
}

@media (max-width: 768px) {
    .profile-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }
    .profile-sidebar {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .profile-nav-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
    .profile-nav-btn {
        white-space: nowrap;
    }
}

/* ========================================
   ADMIN (YÖNETİCİ) PANELİ STYLES
   ======================================== */
.admin-item {
    color: #0284c7 !important;
    font-weight: 600;
}
.admin-item:hover {
    background: #f0f9ff !important;
}

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 16px;
}
.admin-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.admin-modal {
    background: #ffffff;
    width: 96%;
    max-width: 1550px;
    height: 94vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    transform: scale(0.97) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-modal-overlay.open .admin-modal {
    transform: scale(1) translateY(0);
}

.admin-sidebar {
    background: #0f172a;
    color: #ffffff;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1e293b;
}
.admin-brand i {
    font-size: 1.8rem;
    color: var(--secondary);
}
.admin-brand strong {
    display: block;
    font-size: 1.15rem;
}
.admin-brand small {
    color: #94a3b8;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.admin-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.admin-nav-btn i {
    font-size: 1.05rem;
    width: 22px;
}
.admin-nav-btn:hover {
    background: #1e293b;
    color: #ffffff;
}
.admin-nav-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 122, 74, 0.35);
}

.admin-sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}
.admin-sidebar-footer button {
    border-color: #334155;
    color: #cbd5e1;
    justify-content: center;
}
.admin-sidebar-footer button:hover {
    background: #1e293b;
    color: #ffffff;
}

.admin-body {
    padding: 36px;
    background: #f8fafc;
    overflow-y: auto;
}

.admin-pane {
    display: none;
}
.admin-pane.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}

.admin-header {
    margin-bottom: 28px;
}
.admin-header h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 4px;
}
.admin-header p {
    font-size: 0.85rem;
    color: #64748b;
}

.admin-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.admin-header-flex h2 { font-size: 1.4rem; color: #0f172a; margin-bottom: 4px; }
.admin-header-flex p { font-size: 0.85rem; color: #64748b; }

/* Admin İstatistik Kartları */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.admin-stat-card {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.admin-stat-card span {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
    margin-bottom: 2px;
}
.admin-stat-card strong {
    font-size: 1.25rem;
    color: #0f172a;
}

/* Admin Tabloları */
.admin-table-wrapper {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}
.admin-table th {
    background: #f1f5f9;
    color: #475569;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.admin-table tr:last-child td {
    border-bottom: none;
}
.admin-table tr:hover td {
    background: #f8fafc;
}

.tour-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.admin-actions {
    display: flex;
    gap: 8px;
}
.btn-action-del {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-action-del:hover {
    background: #ef4444;
    color: #ffffff;
}

.admin-messages-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.admin-msg-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.msg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.msg-header strong { font-size: 0.95rem; color: #0f172a; }
.msg-date { font-size: 0.78rem; color: #94a3b8; }
.msg-body {
    font-size: 0.88rem;
    color: #475569;
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .admin-modal {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        padding: 20px;
    }
    .admin-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    .admin-nav-btn { white-space: nowrap; }
    .admin-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.preset-images-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    margin-top: 6px;
}

.preset-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.preset-images-grid::-webkit-scrollbar {
    width: 6px;
}

.preset-images-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.preset-img-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    aspect-ratio: 4/3;
    transition: all 0.2s ease;
    background: #cbd5e1;
}

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

.preset-img-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.preset-img-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.35);
}

.preset-img-card.active::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary);
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-action-edit {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-action-edit:hover {
    background: #2563eb;
    color: #ffffff;
}

#editTourModal, #addTourModal, #passengerModal, #photoViewerModal {
    z-index: 999999 !important;
}






