/* ============================================================
   OYUNGRUPLARI.COM — Design System v2
   Fonts: Poppins (headings) + Inter (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* Colors */
    --og-primary:       #6366f1;
    --og-primary-dark:  #4f46e5;
    --og-primary-light: #eef2ff;
    --og-cta:           #f97316;
    --og-cta-dark:      #ea6c10;
    --og-accent:        #22c55e;
    --og-accent-dark:   #16a34a;
    --og-bg:            #FAFAFB;
    --og-surface:       #ffffff;
    --og-text:          #111827;
    --og-text-muted:    #6b7280;
    --og-border:        #e5e7eb;
    --og-rose:          #e11d48;
    --og-rose-light:    #fff1f2;
    --og-amber:         #f59e0b;

    /* Shadows */
    --og-shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
    --og-shadow:        0 4px 24px rgba(0,0,0,0.08);
    --og-shadow-md:     0 8px 32px rgba(0,0,0,0.10);
    --og-shadow-lg:     0 20px 48px rgba(0,0,0,0.12);
    --og-shadow-indigo: 0 8px 24px rgba(99,102,241,0.25);
    --og-shadow-cta:    0 8px 24px rgba(249,115,22,0.30);

    /* Radii */
    --og-radius-sm:  8px;
    --og-radius:     12px;
    --og-radius-lg:  20px;
    --og-radius-xl:  28px;
    --og-radius-pill: 100px;

    /* Fonts */
    --og-font-heading: 'Poppins', sans-serif;
    --og-font-body:    'Inter', sans-serif;

    /* Legacy aliases (keep for backwards compat) */
    --primary-indigo:       var(--og-primary-dark);
    --primary-indigo-hover: #4338CA;
    --accent-rose:          var(--og-rose);
    --accent-amber:         var(--og-amber);
    --text-dark:            var(--og-text);
    --text-muted:           var(--og-text-muted);
    --bg-light:             var(--og-bg);
    --border-color:         var(--og-border);
}

/* ============================================================
   2. BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--og-font-body);
    color: var(--og-text);
    background-color: var(--og-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--og-font-heading);
    color: var(--og-text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a { transition: all 0.2s ease; }

img { max-width: 100%; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.text-og-primary  { color: var(--og-primary) !important; }
.text-og-cta      { color: var(--og-cta) !important; }
.text-og-accent   { color: var(--og-accent) !important; }
.text-og-muted    { color: var(--og-text-muted) !important; }

/* Legacy */
.text-primary-indigo { color: var(--og-primary-dark) !important; }
.text-accent-rose    { color: var(--og-rose) !important; }
.bg-primary-indigo   { background-color: var(--og-primary-dark) !important; }
.bg-accent-amber     { background-color: var(--og-amber) !important; }

.shadow-modern { box-shadow: var(--og-shadow) !important; }
.rounded-4     { border-radius: var(--og-radius-lg) !important; }
.rounded-5     { border-radius: var(--og-radius-xl) !important; }

/* Icon wrap — her zaman ortalı */
.og-step-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.og-icon-indigo { background: var(--og-primary-light); }
.og-icon-orange { background: #fff7ed; }
.og-icon-green  { background: #f0fdf4; }
.og-icon-rose   { background: var(--og-rose-light); }

/* ============================================================
   4. BUTTONS
   ============================================================ */

/* Primary — Indigo */
.btn-indigo,
.btn-og-primary {
    background: linear-gradient(135deg, var(--og-primary) 0%, var(--og-primary-dark) 100%);
    border: none;
    color: #fff;
    font-family: var(--og-font-body);
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-indigo:hover,
.btn-og-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--og-shadow-indigo);
    background: linear-gradient(135deg, var(--og-primary-dark) 0%, #3730a3 100%);
    color: #fff;
}
.btn-indigo:active,
.btn-og-primary:active { transform: translateY(0); }

/* Outline OG - Custom Menu Button */
.btn-outline-og {
    background-color: transparent;
    border: 1px solid #e5e7eb;
    color: var(--og-primary);
    transition: all 0.25s ease;
}
.btn-outline-og:hover {
    background-color: rgba(79, 70, 229, 0.08); /* Indigo-ish hover */
    border-color: rgba(79, 70, 229, 0.3);
    color: var(--og-primary-dark);
}
/* CTA — Orange */
.btn-og-cta {
    background: linear-gradient(135deg, var(--og-cta) 0%, var(--og-cta-dark) 100%);
    border: none;
    color: #fff;
    font-family: var(--og-font-body);
    font-weight: 700;
    transition: all 0.25s ease;
}
.btn-og-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--og-shadow-cta);
    color: #fff;
}

/* Accent — Green */
.btn-og-accent {
    background: linear-gradient(135deg, var(--og-accent) 0%, var(--og-accent-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    transition: all 0.25s ease;
}
.btn-og-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,197,94,0.30);
    color: #fff;
}

/* Rose (legacy) */
.btn-rose {
    background: linear-gradient(135deg, var(--og-rose) 0%, #F43F5E 100%);
    border: none;
    color: #fff;
    transition: all 0.25s ease;
}
.btn-rose:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225,29,72,0.3);
    color: #fff;
}

/* Outline Indigo */
.btn-outline-indigo {
    background: transparent;
    border: 2px solid var(--og-primary);
    color: var(--og-primary);
    font-weight: 600;
    transition: all 0.25s;
}
.btn-outline-indigo:hover {
    background: var(--og-primary);
    color: #fff;
}

/* Pill tag buttons */
.btn-light-indigo {
    background-color: var(--og-primary-light);
    color: var(--og-primary-dark);
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.25s;
}
.btn-light-indigo:hover {
    background-color: #e0e7ff;
    border-color: var(--og-primary);
    color: var(--og-primary-dark);
}

/* ============================================================
   5. BADGES & PILLS
   ============================================================ */
.og-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--og-radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--og-font-body);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.og-badge-popular  { background: #fff7ed; color: var(--og-cta); }
.og-badge-verified { background: #f0fdf4; color: var(--og-accent-dark); }
.og-badge-new      { background: #eef2ff; color: var(--og-primary); }

/* Legacy */
.badge-soft-indigo {
    background-color: var(--og-primary-light);
    color: var(--og-primary-dark);
    font-weight: 600;
    padding: 0.45em 1em;
    border-radius: var(--og-radius-pill);
    font-size: 0.82rem;
    font-family: var(--og-font-body);
}
.badge-new {
    background-color: var(--og-rose);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px !important;
    border-radius: 10px;
}

/* Stars */
.og-stars { color: #fbbf24; font-size: 0.85rem; }

/* ============================================================
   6. HEADER
   ============================================================ */
.og-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--og-border);
    z-index: 1030;
    transition: box-shadow 0.25s ease;
}
.og-header.scrolled {
    box-shadow: var(--og-shadow);
}

/* Logo */
.og-logo { display: flex; align-items: center; text-decoration: none; }
.og-logo img { height: 38px; transition: transform 0.2s; }
.og-logo:hover img { transform: scale(1.04); }

/* Nav links */
.og-nav-link {
    font-family: var(--og-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--og-text) !important;
    padding: 6px 14px !important;
    border-radius: var(--og-radius-sm);
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.og-nav-link:hover,
.og-nav-link.active {
    color: var(--og-primary) !important;
    background: var(--og-primary-light);
}

/* Header search bar (shown on non-hero pages) */
.og-header-search {
    background: var(--og-bg);
    border: 1.5px solid var(--og-border);
    border-radius: var(--og-radius-pill);
    display: flex;
    align-items: center;
    padding: 6px 8px 6px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 480px;
}
.og-header-search:focus-within {
    border-color: var(--og-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.og-header-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--og-font-body);
    font-size: 0.9rem;
    color: var(--og-text);
    width: 100%;
    padding: 0 8px;
}
.og-header-search input::placeholder { color: var(--og-text-muted); }
.og-header-search .og-search-btn {
    background: var(--og-primary);
    border: none;
    color: #fff;
    border-radius: var(--og-radius-pill);
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.og-header-search .og-search-btn:hover { background: var(--og-primary-dark); }

/* Legacy aliases */
.header-modern { z-index: 1030; backdrop-filter: blur(10px); background-color: rgba(255,255,255,0.97) !important; border-bottom: 1px solid var(--og-border); }
.header-modern .nav-link { font-size: 15px; font-weight: 600; }
.header-modern .hover-primary:hover { color: var(--og-primary) !important; }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.og-hero {
    background: linear-gradient(135deg, #eef2ff 0%, #faf9ff 40%, #ffe8cc 100%);
    position: relative;
    overflow: hidden;
}
.og-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.og-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.og-hero-inner { position: relative; z-index: 1; }

/* Big search bar in hero */
.og-hero-search {
    background: #fff;
    border: 2px solid var(--og-border);
    border-radius: var(--og-radius-pill);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    box-shadow: var(--og-shadow-md);
    gap: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.og-hero-search:focus-within {
    border-color: var(--og-primary);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.12), var(--og-shadow-md);
}
.og-hero-search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--og-font-body);
    font-size: 1.05rem;
    color: var(--og-text);
    width: 100%;
    padding: 4px 0;
}
.og-hero-search input::placeholder { color: var(--og-text-muted); }
.og-hero-search .og-hero-search-btn {
    background: linear-gradient(135deg, var(--og-primary) 0%, var(--og-primary-dark) 100%);
    border: none;
    color: #fff;
    border-radius: var(--og-radius-pill);
    padding: 12px 28px;
    font-family: var(--og-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.og-hero-search .og-hero-search-btn:hover {
    background: linear-gradient(135deg, var(--og-primary-dark) 0%, #3730a3 100%);
    transform: translateY(-1px);
    box-shadow: var(--og-shadow-indigo);
}

@media (max-width: 575.98px) {
    .og-hero-search {
        padding: 6px 6px 6px 15px;
    }
    .og-hero-search input {
        font-size: 0.92rem;
    }
    .og-hero-search .og-hero-search-btn {
        padding: 10px 20px;
    }
}

/* Legacy glass search */
.glass-search-container {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.7);
    box-shadow: var(--og-shadow-md);
    border-radius: var(--og-radius-pill);
    padding: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
.glass-search-container:focus-within {
    box-shadow: 0 10px 40px -10px rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.35);
}
.hero-search-input {
    border: none; box-shadow: none; padding-left: 16px;
    font-size: 1.05rem; height: 50px;
    background: transparent; width: 100%;
    color: var(--og-text); font-weight: 500;
}
.hero-search-input:focus { box-shadow: none; outline: none; background: transparent; }

/* City shortcut pills */
.og-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid var(--og-border);
    border-radius: var(--og-radius-pill);
    color: var(--og-text);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--og-font-body);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.og-city-pill:hover {
    background: var(--og-primary-light);
    border-color: var(--og-primary);
    color: var(--og-primary-dark);
    transform: translateY(-2px);
}
.og-city-pill i { font-size: 0.7rem; opacity: 0.6; }

/* Trust bar in hero */
.og-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 16px 0 0;
}
.og-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--og-text-muted);
    white-space: nowrap;
}
.og-hero-trust-item i { color: var(--og-primary); font-size: 0.9rem; }

/* ============================================================
   8. STATS STRIP
   ============================================================ */
.og-stats-strip {
    background: linear-gradient(135deg, var(--og-primary-dark) 0%, var(--og-primary) 100%);
    color: #fff;
}
.og-stat-item { text-align: center; }
.og-stat-number {
    font-family: var(--og-font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.og-stat-label { font-size: 0.82rem; font-weight: 500; opacity: 0.85; margin-top: 4px; }

/* ============================================================
   9. CATEGORY CARDS
   ============================================================ */
.og-category-card {
    background: var(--og-surface);
    border-radius: var(--og-radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1.5px solid var(--og-border);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--og-text);
    box-shadow: var(--og-shadow-sm);
    height: 100%;
}
.og-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--og-shadow-md);
    border-color: var(--og-primary);
    color: var(--og-text);
}
.og-category-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 1rem;
    transition: all 0.25s;
}
.og-category-card:hover .og-category-icon { transform: scale(1.1) rotate(5deg); }

/* Icon color variants */
.og-icon-indigo { background: #eef2ff; color: var(--og-primary); }
.og-icon-orange { background: #fff7ed; color: var(--og-cta); }
.og-icon-green  { background: #f0fdf4; color: var(--og-accent-dark); }
.og-icon-rose   { background: #fff1f2; color: var(--og-rose); }
.og-icon-amber  { background: #fffbeb; color: var(--og-amber); }

/* Legacy */
.category-card {
    background: var(--og-surface); border-radius: var(--og-radius); padding: 1.75rem;
    text-align: center; border: 1.5px solid var(--og-border);
    transition: all 0.25s; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-decoration: none; color: var(--og-text);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--og-shadow-md); border-color: var(--og-primary); color: var(--og-text); }
.category-icon-wrapper {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 1rem;
    background: var(--og-primary-light); color: var(--og-primary); transition: all 0.25s;
}
.category-card:hover .category-icon-wrapper { background: var(--og-primary); color: #fff; transform: scale(1.1) rotate(5deg); }

/* ============================================================
   10. LISTING CARDS
   ============================================================ */
.og-listing-card {
    background: var(--og-surface);
    border-radius: var(--og-radius);
    border: 1.5px solid var(--og-border);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--og-shadow-sm);
}
.og-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--og-shadow-md);
    border-color: rgba(99,102,241,0.25);
}
.og-listing-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--og-bg);
}
.og-listing-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.og-listing-card:hover .og-listing-card-img img { transform: scale(1.05); }
.og-listing-card-badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; gap: 6px;
}
.og-listing-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.og-listing-card-title {
    font-family: var(--og-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--og-text);
    margin-bottom: 4px;
    line-height: 1.35;
}
.og-listing-card-location {
    font-size: 0.82rem;
    color: var(--og-text-muted);
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 12px;
}
.og-listing-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--og-border);
}
.og-listing-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--og-primary-light);
    color: var(--og-primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--og-radius-pill);
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
}
.og-listing-card-cta:hover {
    background: var(--og-primary);
    color: #fff;
}

/* Skeleton loaders */
.og-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: og-skeleton-shine 1.5s infinite;
    border-radius: var(--og-radius-sm);
}
@keyframes og-skeleton-shine {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.og-skeleton-card { border-radius: var(--og-radius); overflow: hidden; }

/* ============================================================
   11. STEPS / HOW IT WORKS
   ============================================================ */
.og-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.og-step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    font-family: var(--og-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}
.og-step-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 20px;
    font-size: 26px;
    display: flex; align-items: center; justify-content: center;
    /* margin intentionally NOT set here — use mx-auto utility or .og-step context */
    transition: transform 0.3s;
}
/* Center icon only inside the How-It-Works step blocks */
.og-step .og-step-icon-wrap { margin: 0 auto 1.25rem; }
.og-step:hover .og-step-icon-wrap { transform: scale(1.08) rotate(-3deg); }
.og-step-connector {
    position: absolute;
    top: 40px;
    right: -20%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--og-primary-light), var(--og-primary));
    opacity: 0.4;
}

/* ============================================================
   12. CTA BLOCKS
   ============================================================ */
.og-dual-cta-card {
    background: var(--og-surface);
    border-radius: var(--og-radius-lg);
    padding: 2.5rem 2rem;
    border: 1.5px solid var(--og-border);
    box-shadow: var(--og-shadow);
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.og-dual-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--og-shadow-md);
}

.og-cta-banner {
    background: linear-gradient(135deg, var(--og-cta) 0%, #dc6309 100%);
    color: #fff;
    border-radius: var(--og-radius-lg);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.og-footer {
    background: #1e1b4b; /* Indigo-950: marka rengiyle akraba, #111827'den daha sıcak */
    color: rgba(255,255,255,0.8);
    padding-top: 64px;
    padding-bottom: 0;
}
.og-footer h5 {
    font-family: var(--og-font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.og-footer-link {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.og-footer-link:hover { color: #fff; }
.og-footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.og-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}
.og-footer-social:hover { background: var(--og-primary); color: #fff; transform: translateY(-2px); }
.og-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 48px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.og-footer-seo-links { display: flex; flex-wrap: wrap; gap: 4px 0; }
.og-footer-seo-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.15s;
}
.og-footer-seo-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }

/* Legacy footer styles */
.footer-modern {
    border-top: 1px solid var(--og-border);
    padding-top: 60px; padding-bottom: 30px;
    background: #fff;
}
.footer-modern h4 { font-weight: 700; font-size: 18px; margin-bottom: 20px; }
.footer-modern .footer-nav-link {
    display: block; color: var(--og-text-muted); margin-bottom: 10px;
    text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.footer-modern .footer-nav-link:hover { color: var(--og-primary); }
.footer-modern .seo-links div { margin-bottom: 8px; }
.footer-modern .seo-links a { color: var(--og-text-muted); font-size:14px; text-decoration: none; transition: color 0.2s; }
.footer-modern .seo-links a i { color: var(--og-primary) !important; margin-right: 5px; }
.footer-modern .seo-links a:hover { color: var(--og-primary); }

/* ============================================================
   14. MOBILE BOTTOM NAV
   ============================================================ */
@media (max-width: 991.98px) {
    body { padding-bottom: 76px !important; }
    .mobile-nav-item { transition: all 0.2s ease; }
    .mobile-nav-item:active { transform: scale(0.9); }
}

/* ============================================================
   15. CARDS (LEGACY)
   ============================================================ */
.card-modern {
    background: var(--og-surface);
    border-radius: var(--og-radius-lg);
    border: 1.5px solid var(--og-border);
    box-shadow: var(--og-shadow-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card-modern:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--og-shadow-md);
    border-color: rgba(99,102,241,0.2);
}
.card-modern-img-top { width: 100%; height: 220px; object-fit: cover; }
.card-modern-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-title-modern { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--og-text); font-family: var(--og-font-heading); }
.card-text-modern { color: var(--og-text-muted); font-size: 0.92rem; margin-bottom: 1.25rem; line-height: 1.6; }

/* ============================================================
   16. ANIMATIONS
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease both; }

/* ============================================================
   17. MISC UTILITIES
   ============================================================ */
.bg-og-light { background-color: var(--og-bg) !important; }
.bg-og-primary { background-color: var(--og-primary) !important; }

/* Hero gradient (legacy) */
.hero-gradient {
    background: linear-gradient(135deg, #eef2ff 0%, #fafafb 50%, #fff7ed 100%);
    position: relative; overflow: hidden;
}
.hero-gradient::before {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}
.hero-gradient::after {
    content: ''; position: absolute; bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}
.hero-content-wrapper { position: relative; z-index: 1; }

/* Hover utilities */
.hover-lift { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--og-shadow-md); }
.hover-primary:hover { color: var(--og-primary) !important; }

/* Form label */
.form-floating > label { opacity: 0.8 !important; }
.form-floating > label > i { opacity: 1 !important; color: var(--og-primary) !important; font-size: 1.1em; }

/* Section helpers */
.og-section-title {
    font-family: var(--og-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--og-text);
}
.og-section-sub {
    font-size: 0.95rem;
    color: var(--og-text-muted);
    max-width: 560px;
    margin: 0 auto;
}
.og-section-tag {
    display: inline-block;
    background: var(--og-primary-light);
    color: var(--og-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: var(--og-radius-pill);
    margin-bottom: 12px;
    font-family: var(--og-font-body);
}

/* ============================================================
   18. PAGE HEADER (Hero/Breadcrumb) — Unified Height
   Tüm sayfalarda hero bölümü yüksekliği bu kuraldan yönetilir.
   View'lardaki pt-/pb- class'ları bu !important ile geçersiz kılınır.
   ============================================================ */
.og-page-header {
    padding-top:    2rem   !important;
    padding-bottom: 2.5rem !important;
}
@media (min-width: 992px) {
    .og-page-header {
        padding-top:    2.25rem !important;
        padding-bottom: 2.75rem !important;
    }
}

/* Overlap varyantı: filtre/arama kartı hero'ya bindirilen sayfalarda
   (KurumListe, EtkinlikListe, CocukAtolye vb.) ekstra alt padding gerekir
   ki overlap card'ın margin-top negatifi doğru çalışabilsin. */
.og-page-header.has-overlap {
    padding-bottom: 4.5rem !important;
}
@media (min-width: 992px) {
    .og-page-header.has-overlap {
        padding-bottom: 5rem !important;
    }
}

/* Hero içindeki container'ın view bazlı ekstra pb'sini sıfırla */
.og-page-header .container,
.og-page-header [class*="container"] {
    padding-bottom: 0 !important;
}

/* ============================================================
   19. GEO-CONTEXT AI SUMMARY (details/summary collapsible)
   ============================================================ */

/* Native marker'ı gizle */
details#geo-context > summary { list-style: none; }
details#geo-context > summary::-webkit-details-marker { display: none; }
details#geo-context > summary::marker { display: none; }

/* Kapalı: tüm köşeler yuvarlatılmış */
details#geo-context > summary {
    border-radius: 1rem;
    transition: border-radius 0.15s ease, background-color 0.15s ease;
}

/* Açık: summary alt köşeleri kare → article üstüyle birleşir */
details#geo-context[open] > summary {
    border-radius: 1rem 1rem 0 0;
}

/* Article: sadece alt köşeler yuvarlatılmış, üst kenarda 1px negatif margin ile seamless birleşim */
details#geo-context > article {
    border-radius: 0 0 1rem 1rem;
    margin-top: -1px;
}

details#geo-context > summary:hover {
    background-color: #f5f7ff !important;
}


