/* ===========================================
   İspanya Tur - Colorido Tours
   Ana Stil Dosyası
   =========================================== */

:root {
    --renk-birincil: #E63329;
    --renk-birincil-koyu: #C42A22;
    --renk-ikincil: #F4B731;
    --renk-ikincil-koyu: #D9A020;
    --renk-altin: #F4B731;
    --renk-teal: #00857C;
    --renk-teal-koyu: #006B63;
    --renk-turuncu: #F7941D;
    --renk-koyu: #1a1a2e;
    --renk-metin: #333333;
    --renk-acik-bg: #fef9f0;
    --renk-acik: #fef9f0;
    --renk-krem: #fef6e8;
    --font-baslik: 'Playfair Display', serif;
    --font-govde: 'Inter', sans-serif;
    --golge-sm: 0 2px 8px rgba(0,0,0,0.06);
    --golge-md: 0 4px 20px rgba(0,0,0,0.08);
    --golge-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Genel */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-govde);
    color: var(--renk-metin);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-baslik);
    color: var(--renk-koyu);
}

a {
    color: var(--renk-birincil);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--renk-birincil-koyu);
}

::selection {
    background: var(--renk-ikincil);
    color: var(--renk-koyu);
}

img {
    image-rendering: auto;
}

/* Sayfa yükleme animasyonu */
.sayfa-yukle {
    animation: sayfaGir 0.3s ease-out both;
}

@keyframes sayfaGir {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll ile görünürlük animasyonları */
.gorunur-ol {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.gorunur-ol.gorundu {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    padding: 0.7rem 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.85rem !important;
    color: var(--renk-koyu) !important;
    transition: color 0.2s ease;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--renk-birincil);
    border-radius: 1px;
    transition: width 0.2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--renk-birincil) !important;
}

.btn-talep-nav {
    background: linear-gradient(135deg, var(--renk-ikincil), var(--renk-turuncu));
    color: var(--renk-koyu) !important;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.4rem !important;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(244,183,49,0.3);
}

.btn-talep-nav::after {
    display: none !important;
}

.btn-talep-nav:hover {
    color: var(--renk-koyu) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244,183,49,0.35);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26,26,46,0.78), rgba(230,51,41,0.35)),
                url('/assets/img/fotos/park-guell-barcelona-ispanya-tur.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    animation: heroGir 0.4s ease-out;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 580px;
    line-height: 1.7;
    animation: heroGir 0.4s ease-out 0.1s both;
}

.hero .btn-hero,
.hero .btn-hero-outline {
    animation: heroGir 0.4s ease-out 0.2s both;
}

@keyframes heroGir {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .btn-hero {
    background: var(--renk-ikincil);
    color: var(--renk-koyu);
    border: none;
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 15px rgba(244,183,49,0.25);
}

.hero .btn-hero:hover {
    background: #fff;
    color: var(--renk-koyu);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

.hero .btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero .btn-hero-outline:hover {
    background: #fff;
    color: var(--renk-koyu);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Bölüm Başlıkları */
.bolum-basligi {
    text-align: center;
    margin-bottom: 3rem;
}

.bolum-basligi h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.bolum-basligi p {
    font-size: 1.1rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.baslik-cizgi {
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--renk-birincil), var(--renk-ikincil));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* Teal Aksan */
.text-teal { color: var(--renk-teal) !important; }
.bg-teal { background-color: var(--renk-teal) !important; }

/* Kartlar */
.tur-karti {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--golge-sm);
    height: 100%;
    background: #fff;
}

.tur-karti:hover {
    transform: translateY(-6px);
    box-shadow: var(--golge-md);
}

.tur-karti .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tur-karti:hover .card-img-top {
    transform: scale(1.03);
}

.tur-karti .card-img-wrapper {
    overflow: hidden;
}

.tur-karti .card-body {
    padding: 1.5rem;
}

.tur-karti .tur-sure {
    display: inline-block;
    background: linear-gradient(135deg, #fff8e6, #fef0cc);
    color: var(--renk-turuncu);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.tur-karti .tur-sehirler {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.tur-karti h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.tur-karti:hover h5 {
    color: var(--renk-birincil);
}

.tur-karti .card-text {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
}

/* Şehir Kartı */
.sehir-karti {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--golge-sm);
}

.sehir-karti:hover {
    transform: translateY(-5px);
    box-shadow: var(--golge-md);
}

.sehir-karti img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sehir-karti:hover img {
    transform: scale(1.04);
}

.sehir-karti .sehir-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.sehir-karti .sehir-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.sehir-karti .sehir-overlay small {
    opacity: 0.85;
}

/* Sehirler - SVG harita */
.sehir-harita-kutusu {
    background: linear-gradient(180deg, #fff, #fdfaf3);
    border: 1px solid rgba(26,26,46,0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--golge-sm);
    padding: 1.75rem;
}

.sehir-harita-svg {
    width: 100%;
    height: auto;
    display: block;
}

.otonom-harita-panel {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.otonom-harita {
    border: 1px solid rgba(26,26,46,0.08);
    background: linear-gradient(180deg, #fffdf9 0%, #f9f5ed 100%);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.otonom-harita svg {
    width: 100%;
    height: auto;
    display: block;
}

.otonom-harita #cities {
    display: none;
}

.otonom-bolge {
    fill: #f6ecdd;
    stroke: #c9b08b;
    stroke-width: 1.1;
    vector-effect: non-scaling-stroke;
    transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.otonom-bolge:hover,
.otonom-bolge:focus-visible {
    fill: #ffd572;
    stroke: #bc7d19;
    outline: none;
    filter: drop-shadow(0 1px 4px rgba(230, 51, 41, 0.22));
}

.otonom-bolge.secili {
    fill: var(--renk-birincil);
    stroke: #fff;
    filter: drop-shadow(0 3px 8px rgba(230, 51, 41, 0.3));
}

.otonom-bilgi {
    background: linear-gradient(160deg, #fff 0%, #fff6ea 100%);
    border: 1px solid rgba(230,51,41,0.15);
    border-radius: var(--radius-md);
    box-shadow: var(--golge-sm);
    padding: 1.05rem;
}

.otonom-etiket {
    display: inline-block;
    border-radius: 999px;
    background: rgba(0,133,124,0.12);
    color: var(--renk-teal-koyu);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.24rem 0.62rem;
    text-transform: uppercase;
}

.otonom-bilgi h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.otonom-bilgi p {
    color: #4e4e56;
    line-height: 1.7;
}

/* Ozel tur talep v2 */
.talep-sehir-panel,
.talep-form-panel,
.talep-yardim-kutusu {
    background: #fff;
    border: 1px solid rgba(26,26,46,0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--golge-sm);
}

.talep-sehir-panel {
    padding: 1.25rem;
}

.talep-secilen-sayisi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9f7f5, #fef5e8);
    color: var(--renk-koyu);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.talep-sehir-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.talep-sehir-kart {
    border: 2px solid rgba(0,133,124,0.22);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.talep-sehir-kart:hover {
    transform: translateY(-2px);
    box-shadow: var(--golge-md);
}

.talep-sehir-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.talep-sehir-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    color: #94a3b8;
    font-size: 0.95rem;
    z-index: 2;
}

.talep-sehir-kart img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.talep-sehir-icerik {
    padding: 0.95rem 1rem 1rem;
}

.talep-sehir-icerik h5 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.talep-sehir-icerik p {
    margin-bottom: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.talep-sehir-kart.secili {
    border-color: var(--renk-birincil);
    box-shadow: 0 8px 18px rgba(230,51,41,0.14);
}

.talep-sehir-kart.secili .talep-sehir-check {
    color: #fff;
    background: var(--renk-birincil);
}

.talep-form-panel {
    padding: 1.35rem;
    position: sticky;
    top: 96px;
}

.talep-form-baslik p {
    color: #6b7280;
    font-size: 0.95rem;
}

.talep-yardim-kutusu {
    padding: 1rem 1.1rem;
}

.talep-yardim-kutusu p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Butonlar */
.btn-birincil {
    background: linear-gradient(135deg, var(--renk-birincil), var(--renk-birincil-koyu));
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 12px rgba(230,51,41,0.2);
}

.btn-birincil:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(230,51,41,0.3);
}

.btn-ikincil {
    background: transparent;
    color: var(--renk-birincil);
    border: 2px solid var(--renk-birincil);
    border-radius: 25px;
    padding: 0.68rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-ikincil:hover {
    background: var(--renk-birincil);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Bölümü */
.cta-bolum {
    background: linear-gradient(135deg, var(--renk-koyu) 0%, #2a1530 50%, var(--renk-birincil-koyu) 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
}

.cta-bolum h2 {
    color: #fff;
}

.cta-bolum .btn-hero,
.cta-bolum .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 28px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-bolum .btn-hero {
    background: linear-gradient(135deg, var(--renk-ikincil), var(--renk-turuncu));
    border: 0;
    color: var(--renk-koyu);
    box-shadow: 0 6px 18px rgba(244,183,49,0.28);
}

.cta-bolum .btn-hero:hover {
    color: var(--renk-koyu);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,255,255,0.24);
}

.cta-bolum .btn-hero-outline {
    background: rgba(255,255,255,0.02);
    border: 2px solid rgba(255,255,255,0.55);
    color: #fff;
}

.cta-bolum .btn-hero-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--renk-koyu);
    transform: translateY(-2px);
}

/* Tanıtım */
.tanitim-bolum {
    background: var(--renk-acik-bg);
}

/* Avantajlar */
.avantaj-kutu {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.avantaj-kutu:hover {
    transform: translateY(-5px);
    box-shadow: var(--golge-md);
    border-color: transparent;
}

.avantaj-ikon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--renk-acik-bg), #e8f5f3);
    color: var(--renk-teal);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.avantaj-kutu:hover .avantaj-ikon {
    background: linear-gradient(135deg, var(--renk-teal), var(--renk-teal-koyu));
    color: #fff;
}

/* Blog Kartı */
.blog-karti {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--golge-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    background: #fff;
}

.blog-karti:hover {
    transform: translateY(-5px);
    box-shadow: var(--golge-md);
}

.blog-karti .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-karti:hover .card-img-top {
    transform: scale(1.03);
}

/* Blog İçerik */
.blog-icerik h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--renk-koyu);
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.blog-icerik h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--renk-koyu);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.blog-icerik p {
    line-height: 1.85;
    color: #444;
    margin-bottom: 1rem;
}

.blog-icerik ul, .blog-icerik ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-icerik li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.blog-icerik .table {
    margin: 1.5rem 0;
    font-size: 0.92rem;
}

/* Footer */
.site-footer {
    background: var(--renk-koyu);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--renk-birincil), var(--renk-ikincil), var(--renk-teal));
}

.site-footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--renk-ikincil);
    border-radius: 1px;
}

.site-footer a {
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-alt {
    background: rgba(0,0,0,0.25);
    padding: 1.2rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
}

.footer-sosyal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.footer-sosyal a:hover {
    background: var(--renk-ikincil);
    border-color: var(--renk-ikincil);
    color: var(--renk-koyu);
    padding-left: 0;
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Yukarı Çık Butonu */
.yukari-btn {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 46px;
    height: 46px;
    background: var(--renk-koyu);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1050;
    box-shadow: var(--golge-sm);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.yukari-btn.gorunur {
    opacity: 1;
    visibility: visible;
}

.yukari-btn:hover {
    background: var(--renk-birincil);
    color: #fff;
}

/* Sayfa Banner */
.sayfa-banner {
    background: linear-gradient(135deg, rgba(26,26,46,0.82), rgba(196,55,43,0.5)),
                url('/assets/img/fotos/alhambra-saray-granada-ispanya-tur.webp') center/cover no-repeat;
    padding: 7rem 0 3.5rem;
    color: #fff;
    text-align: center;
    position: relative;
}

.sayfa-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #fff);
}

.sayfa-banner h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sayfa-banner p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Form Stilleri */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.1rem;
    border: 1.5px solid #e0e0e0;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fafafa;
}

.form-control:focus, .form-select:focus {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(230,51,41,0.1);
    background-color: #fff;
}

.form-label {
    font-weight: 500;
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
    color: var(--renk-koyu);
}

/* Tur Detay */
.tur-detay-hero {
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--golge-md);
}

.gun-karti {
    border-left: 4px solid var(--renk-teal);
    background: #fff;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--golge-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gun-karti:hover {
    transform: translateX(4px);
    box-shadow: var(--golge-md);
}

.gun-karti .gun-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--renk-ikincil), var(--renk-turuncu));
    color: var(--renk-koyu);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

/* Admin */
.admin-sidebar {
    background: var(--renk-koyu);
    min-height: 100vh;
    padding: 1.5rem;
    color: #fff;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.3rem;
    font-size: 0.92rem;
    transition: all 0.2s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-sidebar .nav-link i {
    width: 24px;
}

.admin-istatistik {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.admin-istatistik:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar .navbar-collapse {
        background: #fff;
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--golge-lg);
    }
    .navbar .nav-link::after { display: none; }
    .btn-talep-nav {
        display: inline-block;
        margin-top: 0.5rem;
        text-align: center;
    }
    .talep-form-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem;
    }
    .sayfa-banner {
        padding: 5.5rem 0 2.5rem;
    }
    .sayfa-banner h1 {
        font-size: 1.9rem;
    }
    .bolum-basligi h2 {
        font-size: 1.9rem;
    }
    .tur-detay-hero {
        height: 260px;
        border-radius: var(--radius-md);
    }
    .sehir-karti {
        height: 240px;
    }
    .sehir-harita-kutusu {
        padding: 1rem;
    }
    .otonom-harita-panel {
        grid-template-columns: 1fr;
    }
    .otonom-harita,
    .otonom-bilgi {
        padding: 0.85rem;
    }
    .talep-sehir-grid {
        grid-template-columns: 1fr;
    }
    .talep-sehir-kart img {
        height: 190px;
    }
    .talep-sehir-panel,
    .talep-form-panel {
        padding: 1rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .yukari-btn {
        bottom: 20px;
        right: 82px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero .btn-hero,
    .hero .btn-hero-outline {
        padding: 0.75rem 1.6rem;
        font-size: 0.9rem;
    }
    .sayfa-banner h1 {
        font-size: 1.6rem;
    }
    .bolum-basligi h2 {
        font-size: 1.6rem;
    }
}

/* Kart hover glow efekti */
.card.shadow-sm {
    transition: box-shadow 0.2s ease;
}
.card.shadow-sm:hover {
    box-shadow: var(--golge-md) !important;
}

/* Badge stili */
.badge {
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.35em 0.75em;
}

/* Tanıtım bölümü özel */
.tanitim-bolum {
    background: var(--renk-acik-bg);
    position: relative;
}

.tanitim-bolum img {
    box-shadow: var(--golge-lg);
}

/* Genel kart overflow gizleme */
.card.overflow-hidden .card-img-top,
.card.overflow-hidden img:first-child {
    transition: transform 0.3s ease;
}
.card.overflow-hidden:hover .card-img-top,
.card.overflow-hidden:hover img:first-child {
    transform: scale(1.03);
}

/* bg-light ince geçiş */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Blog içerik zenginleştirme */
.blog-icerik strong {
    color: var(--renk-koyu);
}

.blog-icerik a {
    color: var(--renk-birincil);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-icerik a:hover {
    color: var(--renk-birincil-koyu);
}

/* Sidebar kartları */
.col-lg-4 > .card {
    transition: transform 0.2s ease;
}
.col-lg-4 > .card:hover {
    transform: translateY(-2px);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .gorunur-ol { opacity: 1; transform: none; }
    .sayfa-yukle { animation: none; }
}

/* Şehir galeri thumbnail */
.galeri-thumb {
    transition: opacity 0.2s ease;
}
.galeri-thumb:hover {
    opacity: 0.85;
}

/* Topical hub */
.hub-karti {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--golge-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hub-karti:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge-md);
}

.hub-karti img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.hub-karti-icerik {
    padding: 1rem 1.1rem 1.15rem;
}

.hub-karti-icerik h5 {
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.hub-mini-panel {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-md);
    box-shadow: var(--golge-sm);
    padding: 1.2rem;
}

.hub-icerik h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    font-size: 1.55rem;
}

.hub-icerik p {
    line-height: 1.82;
    color: #444;
}

/* Tur detay sidebar */
.tur-sidebar {
    position: sticky;
    top: 92px;
}

@media (max-width: 768px) {
    .hub-karti img {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .tur-sidebar {
        position: static;
    }
}
