/* =========================
   Privacy / Terms Page Styles
   ========================= */

/* Sayfa genel */

#maillink{
    text-decoration: none;
}
#maillink:link{
    color: #D63031;

}
#maillink:hover{
    color: #E6E6E6;
}
#maillink:visited
{
    color: #d75050;
}

body {
  background: inherit;
  color: inherit;
}

/* İçerik alanı (main) */
main.container {
  max-width: 900px;
  padding: 40px 16px;
}

/* Başlıklar */
main.container h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.2;
}

main.container h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Paragraflar */
main.container p {
  margin: 10px 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* Liste görünümü */
main.container ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

main.container li {
  margin: 6px 0;
  line-height: 1.7;
}

/* Metin vurguları */
main.container strong {
  font-weight: 700;
}

main.container em {
  opacity: 0.85;
}

/* Kod/inline (olur da eklersen diye) */
main.container code {
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

/* Footer içindeki linkler sitenin rengiyle uyumlu kalsın */
footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Mobil iyileştirmeler */
@media (max-width: 600px) {
  main.container {
    padding: 28px 14px;
  }
  main.container h1 {
    font-size: 1.6rem;
  }
  main.container h2 {
    font-size: 1.15rem;
  }
}




/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buton disabled durumu */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Başarı mesajı */
.success-message {
    display: none;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

.success-message.active {
    display: block;
}

.success-message h3 {
    color: #27ae60;
    margin-bottom: 8px;
}

/* Hata mesajı */
.error-message {
    display: none;
    background: rgba(214, 48, 49, 0.1);
    border: 1px solid #D63031;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

.error-message.active {
    display: block;
}

.error-message h3 {
    color: #D63031;
    margin-bottom: 8px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
            --bg-1: #0f0f0f;
            --bg-2: #141414;
            --panel: rgba(214, 48, 49, 0.06);
            --panel-border: rgba(214, 48, 49, 0.14);
            --accent: #d63031;
            --muted: #b0b0b0;
            --success-bg: rgba(46, 204, 113, 0.12);
            --container-max: 1200px;
            --space-xs: 8px;
            --space-sm: 12px;
            --space-md: 20px;
            --space-lg: 32px;
            --space-xl: 56px;

            --radius: 12px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html,
        body {
            height: 100%
        }

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
            color: #e6e6e6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            font-size: 16px;
            padding-top: 60px;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(10, 10, 10, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            padding: 0.9rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.4px;
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
            margin-left: 6px;
            font-weight: 900
        }

        nav ul {
            display: flex;
            gap: 14px;
            list-style: none;
            align-items: center;
            flex-wrap: wrap
        }

        nav a {
            color: var(--muted);
            text-decoration: none;
            font-weight: 600;
            font-size: .95rem;
            transition: color .15s
        }

        nav a:hover {
            color: var(--accent)
        }

        section {
            padding: var(--space-xl) 0
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            background: linear-gradient(135deg, rgba(182, 8, 8, 0.774) 0%, rgba(124, 4, 4, 0.616) 40%, rgba(0, 0, 0, 0.61) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.15;
            margin-bottom: var(--space-md);
            color: #fff;
            font-weight: 800;
        }

        .hero h1 span {
            color: var(--accent)
        }

        .hero p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 67px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            color: var(--accent);
            animation: bounce 2s infinite;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-15px);
            }

            60% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap
        }

        .btn {
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform .18s, box-shadow .18s;
            font-size: 1.05rem;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 8px 20px rgba(214, 48, 49, 0.12)
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(214, 48, 49, 0.14)
        }

        .btn-secondary {
            background: rgba(214, 48, 49, 0.1);
            color: #fff;
            border: 1.5px solid rgba(214, 48, 49, 0.4);
        }

        .btn-secondary:hover {
            background: rgba(214, 48, 49, 0.2);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .section-title {
            font-size: 1.6rem;
            margin-bottom: var(--space-md);
            text-align: center;
            color: #fff
        }

        .section-title span {
            color: var(--accent)
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        .features-grid {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
        }

        .feature-card,
        .value-card,
        .team-card,
        .info-card,
        .faq-item {
            background: var(--panel);
            border: 1px solid var(--panel-border);
            padding: 18px;
            border-radius: var(--radius);
            transition: transform .18s, box-shadow .18s, border-color .18s;
        }
        .responsive-img {
            display: block;
            max-width: 100%;
            max-height: 256px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .value-image {
            width: 50%;
            max-width: 120px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .value-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.6rem;
        }

        .value-icon,
        .values-emoji {
            font-size: clamp(2rem, 4.2vw, 3.6rem);
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.25rem;
        }

        .value-card h3 {
            margin-top: 0.15rem;
            font-size: 1.05rem;
        }

        .feature-card:hover,
        .value-card:hover,
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
            border-color: rgba(214, 48, 49, 0.24);
        }

        .feature-icon {
            font-size: 1.6rem;
            margin-bottom: 10px
        }

        .feature-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: #fff
        }

        .feature-card p {
            color: var(--muted);
            font-size: .95rem
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
            margin-bottom: 20px
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        /* Desktop default ayarlar */
        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
        }

        /* Sağ Menü */
        .side-menu {
            position: fixed;
            top: 0;
            right: -260px;
            width: 260px;
            height: 100vh;
            background: #111;
            padding: 20px;
            transition: 0.35s ease;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        /* Sağ Menü Liste Tasarımı */
        .side-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .side-menu ul li a {
            display: block;
            padding: 12px 14px;
            font-size: 1.05rem;
            color: #fff;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;

            /* smooth animasyon */
            transition: 
                background 0.25s ease,
                transform 0.2s ease,
                color 0.25s ease,
                box-shadow 0.25s ease;
        }

        /* Hover efekti */
        .side-menu ul li a:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(6px);
            color: #4da6ff;
            box-shadow: 0 0 12px rgba(77, 166, 255, 0.35);
        }

        /* Aktif tık anı: micro-press effect */
        .side-menu ul li a:active {
            transform: translateX(3px) scale(0.97);
            background: rgba(255, 255, 255, 0.18);
        }

        .close-arrow {
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            align-self: flex-start;
            display: none;
        }

        .side-menu.active {
            right: 0;
        }

        .side-menu.active .close-arrow {
            display: block;
        }

        /* Desktop menü */
        .desktop-menu {
            display: flex;
            gap: 24px;
        }

        /* Mobil durum */
        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }


        /* Responsive breakpoint */
        @media(max-width: 860px) {

            nav ul {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 18px;
            }

            .logo {
                font-size: 1.4rem;
            }

            header .container {
                position: relative;
            }
        }

        .about-text h2 {
            font-size: 1.35rem;
            color: #fff;
            margin-bottom: 10px
        }

        .about-image {
            background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), rgba(214, 48, 49, 0.03));
            padding: 18px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 180px;
            border: 1px solid rgba(255, 255, 255, 0.02)
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px
        }

        .about-reverse {
            direction: ltr
        }

        .about-reverse .about-image {
            order: 1
        }

        .about-reverse .about-text {
            order: 2
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .contact-info h2 {
            margin-bottom: 12px;
        }

        .info-card {
            width: 100%;
            max-width: 400px;
        }

        .contact-form {
            background: var(--panel);
            border: 1px solid var(--panel-border);
            padding: 18px;
            border-radius: var(--radius)
        }

        .form-group {
            margin-bottom: 12px
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #fff;
            font-weight: 700;
            font-size: .95rem
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            resize: vertical
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background: var(--accent);
            color: #fff;
            border-radius: 10px;
            border: none;
            font-weight: 800;
            cursor: pointer
        }

        .success-message {
            background: var(--success-bg);
            border: 1px solid rgba(46, 204, 113, 0.25);
            padding: 12px;
            border-radius: 8px;
            margin-top: 10px;
            display: none;
            color: #e6fff0
        }
        .misyon-vizyon-panel {
            transition: transform .3s ease, background .3s ease, opacity .3s ease;
        }

        .misyon-vizyon-panel:hover {
            transform: translateY(-6px);
            
        }
        img {
            transition: 0.25s ease;
        }

        img:hover {
            transform: scale(1.07);
            filter: brightness(1.2) saturate(1.4) contrast(1.1);
            
        }

        .success-message.active {
            display: block
        }
        .card, .feature-card, .value-card, .team-card {
            transition: all 0.25s cubic-bezier(.25,.46,.45,.94);
        }
        .parallax-bg {
            transform: translateY(var(--scroll-offset, 0));
            transition: transform .15s linear;
        }
        .misyon-vizyon-panel {
            background: linear-gradient(
                135deg,
                rgba(214, 48, 49, 0.15),
                rgba(214, 48, 49, 0.05)
            );
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(214, 48, 49, 0.12);
        }

        .misyon-vizyon-panel img {
            width: 120px;
            height: auto;
            opacity: 0.75;
        }

        .hero {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .9s ease, transform .9s ease;
        }

        .hero.visible {
            opacity: 1;
            transform: translateY(0);
        }
        button, .btn {
            transition: all .25s ease;
        }

        button:hover, .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        html {
            scroll-behavior: smooth;
        }
        :root {
            --transition-global: .35s cubic-bezier(.4,0,.2,1);
        }

        body {
            transition: background var(--transition-global), color var(--transition-global);
        }

        * {
            transition: background-color .25s ease, color .25s ease;
        }

        .section-title {
            opacity: 0;
            transform: translateY(20px);
            transition: all .6s ease-out;
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-toggle {
            transition: transform 0.25s ease;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .card:hover,
        .feature-card:hover,
        .value-card:hover,
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        /* FAQ yeni sistem – liste görünümü + accordion */
        .faq-container {
            display: block;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            display: block;
            border: 1px solid var(--panel-border);
            background: var(--panel);
            border-radius: var(--radius);
            margin-bottom: 12px;
            padding: 0;
            transition: .25s ease;
        }

        .faq-question {
            padding: 14px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: #fff;
        }

        .faq-toggle {
            font-weight: 800;
            font-size: 1.4rem;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 14px;
            transition: max-height .35s ease, opacity .25s ease, padding .2s;
            color: var(--muted);
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            opacity: 1;
            padding: 12px 14px 18px 14px;
        }

        .team-grid {
            display: grid;
            gap: 16px;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            justify-items: center;
        }

        .team-card {
            text-align: center;
            max-width: 300px;
            width: 100%;
        }

        .team-card .team-avatar {
            font-size: 2rem;
            margin-bottom: 10px
        }

        .team-role {
            color: var(--muted);
            font-weight: 600;
            margin-bottom: 8px
        }

        footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            padding: 22px 0;
            text-align: center;
            color: #9a9a9a;
            font-size: .95rem
        }

        @media (max-width:900px) {
            .about-content {
                grid-template-columns: 1fr
            }

            .contact-wrapper {
                grid-template-columns: 1fr
            }

            .hero {
                padding: var(--space-md) 0 var(--space-lg)
            }

            section {
                padding: 36px 0
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width:480px) {
            nav ul {
                gap: 10px;
                font-size: .9rem
            }

            .logo {
                font-size: 1.1rem
            }

            .hero p {
                font-size: .95rem
            }
        }