/* =========================================================
   MAYDER - Ana Stil Dosyası
   ========================================================= */

:root {
    --navy: #333373;
    --navy-dark: #282859;
    --green: #21925C;
    --bg-light: #EEF0F7;
    --text: #4A4A5A;
    --white: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-top: 0;
}

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

a:hover {
    text-decoration: underline;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   Üst ince bilgi barı
   --------------------------------------------------------- */
.top-bar {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 1rem;
    flex-wrap: wrap;
}

.top-bar__info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.top-bar__item:hover {
    color: var(--white);
    text-decoration: none;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar__social a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    text-decoration: none;
}

.top-bar__social a:hover {
    color: var(--green);
}

/* ---------------------------------------------------------
   Ana Header
   --------------------------------------------------------- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(51, 51, 115, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
}

.site-header__logo img {
    height: 52px;
    width: auto;
}

/* --- Ana menü --- */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.9rem 0.85rem;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--green);
    text-decoration: none;
}

.main-nav li.active > a {
    color: var(--green);
}

.main-nav li.active > a::after,
.main-nav > ul > li:not(.has-dropdown):hover > a::after {
    content: '';
}

/* Aktif/hover alt çizgi */
.main-nav > ul > li > a {
    position: relative;
}

.main-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.55rem;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav > ul > li.active > a::before,
.main-nav > ul > li:hover > a::before {
    transform: scaleX(1);
}

/* --- Açılır alt menü (Faaliyetlerimiz) --- */
.has-dropdown .dropdown {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-top: 3px solid var(--green);
    box-shadow: 0 12px 24px rgba(51, 51, 115, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 0.6rem 1.1rem;
    color: var(--text);
    font-weight: 400;
    font-family: var(--font-body);
    white-space: normal;
}

.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--green);
}

/* --- "Bizi Arayın" butonu --- */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.btn-call strong {
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.btn-call:hover {
    background: var(--navy);
    text-decoration: none;
    color: var(--white);
}

/* --- Mobil hamburger --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 0.4rem;
}

/* ---------------------------------------------------------
   Main / Sayfa içerikleri
   --------------------------------------------------------- */
.site-main {
    min-height: 60vh;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 2rem;
    padding: 3.5rem 1rem 2.5rem;
}

.footer__col h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer__about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer__contact,
.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.footer__contact li a {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer__contact li a:hover {
    color: var(--green);
}

.footer__contact .icon {
    margin-top: 0.15rem;
    color: var(--green);
}

.footer__links li {
    margin-bottom: 0.6rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--green);
}

.footer__map-embed {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.footer__map-embed iframe {
    width: 100%;
    height: 160px;
    border: 0;
    display: block;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.1rem 0;
}

.footer__bottom p {
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer__credit {
    margin-top: 0.45rem !important;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.42);
}

.footer__credit a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-weight: 500;
}

.footer__credit a:hover {
    color: var(--green);
}

/* --- Sabit WhatsApp butonu --- */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 200;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    text-decoration: none;
}

/* ---------------------------------------------------------
   Butonlar
   --------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

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

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

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

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

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* ---------------------------------------------------------
   Bölüm yardımcı sınıfları
   --------------------------------------------------------- */
.section {
    padding: 4.5rem 0;
}

.section--white {
    background: var(--white);
}

.section--bg {
    background: var(--bg-light);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.section-heading h2 {
    font-size: 1.9rem;
    margin-bottom: 0;
}

.section-heading--center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---------------------------------------------------------
   1) Hero Slider
   --------------------------------------------------------- */
.hero-slider {
    position: relative;
    height: min(78vh, 640px);
    min-height: 420px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(40, 40, 89, 0.88) 0%, rgba(51, 51, 115, 0.72) 45%, rgba(33, 146, 92, 0.62) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-slide__content h1 {
    color: var(--white);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.25;
    margin-bottom: 1.1rem;
}

.hero-slide__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-slide__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.15);
}

/* ---------------------------------------------------------
   2) Dernek Başkanı
   --------------------------------------------------------- */
.president__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.president__photo img {
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(51, 51, 115, 0.15);
}

.president__content p {
    margin: 1.1rem 0 1.6rem;
}

/* ---------------------------------------------------------
   3) 3'lü Özet Kart
   --------------------------------------------------------- */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(51, 51, 115, 0.08);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.92rem;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(33, 146, 92, 0.15);
    border-color: var(--green);
}

.feature-card:hover .feature-card__icon {
    background: var(--green);
    color: var(--white);
}

/* ---------------------------------------------------------
   4) & 5) Kart Grid (Faaliyetler / Haberler)
   --------------------------------------------------------- */
.card-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(51, 51, 115, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(51, 51, 115, 0.14);
}

.card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.card:hover .card__image img {
    transform: scale(1.06);
}

.card__body {
    padding: 1.4rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card__body h3 {
    font-size: 1.08rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.card__body h3 a {
    color: var(--navy);
    text-decoration: none;
}

.card__body h3 a:hover {
    color: var(--green);
}

.card__body p {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    flex: 1;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green);
    text-decoration: none;
}

.card__link:hover {
    color: var(--navy);
    text-decoration: none;
}

.card__link:hover .icon {
    transform: translateX(3px);
}

.card__link .icon {
    transition: transform 0.2s ease;
}

/* ---------------------------------------------------------
   6) İletişim Şeridi
   --------------------------------------------------------- */
.contact-strip {
    background: linear-gradient(120deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 3rem 0;
}

.contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-strip__text h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.contact-strip__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
}

.contact-strip__info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.contact-strip__info a,
.contact-strip__info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contact-strip__info a:hover {
    color: var(--green);
}

/* ---------------------------------------------------------
   Sayfa Banner'ı (iç sayfalar)
   --------------------------------------------------------- */
.page-banner {
    background: linear-gradient(120deg, var(--navy-dark), var(--navy));
    padding: 2.75rem 0 3.25rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.6rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

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

.breadcrumb .is-current {
    color: var(--white);
}

.page-banner h1 {
    color: var(--white);
    margin: 0;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

/* ---------------------------------------------------------
   Metin blokları (Hakkımızda tanıtım)
   --------------------------------------------------------- */
.intro-text {
    max-width: 860px;
    margin: 0 auto;
}

.intro-text.text-center {
    text-align: center;
}

.intro-text p {
    text-align: left;
    margin-bottom: 1.1rem;
}

.section-heading__lead {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
    font-family: var(--font-body);
}

.intro-subheading {
    font-size: 1.15rem;
    margin: 1.8rem 0 0.9rem;
}

.intro-text.text-center p {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-quote {
    margin: 1.8rem auto 1.6rem;
    padding: 1.2rem 1.6rem;
    max-width: 520px;
    border-left: 4px solid var(--green);
    background: var(--bg-light);
    border-radius: 0 10px 10px 0;
}

.slogan-quote p {
    margin: 0 !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
    text-align: center;
}

.aims-list {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
}

.aims-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.7rem;
    font-size: 0.98rem;
}

.aims-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.aims-list--compact {
    margin-bottom: 0;
}

.aims-list--compact li {
    font-size: 0.92rem;
}

.mv-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mv-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.15rem;
    font-size: 0.95rem;
}

.mv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.roadmap-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.7rem;
    box-shadow: 0 8px 20px rgba(51, 51, 115, 0.08);
}

.roadmap-card__stage {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.7rem;
}

.roadmap-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.roadmap-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.roadmap-card li {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.project-panel {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 2.4rem;
}

.project-panel h3 {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
}

.project-panel p {
    margin: 0 0 1.4rem;
    font-size: 0.95rem;
}

.project-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.6rem;
}

.project-panel__results {
    padding-top: 0.4rem;
    border-top: 1px solid rgba(51, 51, 115, 0.1);
}

.ethics-cta,
.ethics-result {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.ethics-cta h2,
.ethics-result h2 {
    margin-bottom: 0.8rem;
}

.ethics-cta p,
.ethics-result p {
    margin-bottom: 1.6rem;
}

.ethics-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.ethics-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem 1.4rem;
}

.ethics-item__num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--green);
    line-height: 1.3;
}

.ethics-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.ethics-item p {
    margin: 0 0 0.45rem;
    font-size: 0.9rem;
}

.ethics-item p:last-child {
    margin-bottom: 0;
}

.doc-list {
    list-style: none;
    margin: 0 auto 1.6rem;
    padding: 0;
    max-width: 860px;
    display: grid;
    gap: 0.75rem;
}

.doc-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    background: var(--white);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    box-shadow: 0 6px 16px rgba(51, 51, 115, 0.06);
}

.doc-list__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.doc-list p {
    margin: 0;
    font-size: 0.94rem;
}

.doc-note {
    max-width: 860px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border-left: 4px solid var(--green);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.2rem;
}

.faq-wrap {
    max-width: 800px;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    padding: 1.1rem 1.3rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--green);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    margin: 0;
    padding: 0 1.3rem 1.2rem;
    font-size: 0.95rem;
}

/* ---------------------------------------------------------
   Misyon / Vizyon kartları
   --------------------------------------------------------- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.4rem;
    box-shadow: 0 8px 20px rgba(51, 51, 115, 0.08);
}

.mv-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.mv-card--alt .mv-card__icon {
    background: var(--green);
}

.mv-card h3 {
    margin-bottom: 0.7rem;
}

.mv-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ---------------------------------------------------------
   İletişim Sayfası
   --------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.4rem;
    box-shadow: 0 8px 24px rgba(51, 51, 115, 0.1);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.contact-form-card > p {
    margin-top: 0;
    margin-bottom: 1.8rem;
    font-size: 0.92rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(51, 51, 115, 0.18);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(33, 146, 92, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

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

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.95rem 1.15rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.6rem;
}

.form-message .icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.form-message--success {
    background: rgba(33, 146, 92, 0.12);
    color: #186b42;
    border: 1px solid rgba(33, 146, 92, 0.3);
}

.form-message--error {
    background: rgba(214, 62, 62, 0.1);
    color: #a3212f;
    border: 1px solid rgba(214, 62, 62, 0.3);
}

.form-message ul {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
}

.contact-info-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text);
    text-decoration: none;
}

.contact-info-list a:hover {
    color: var(--green);
}

.contact-info-list .icon {
    color: var(--green);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-social {
    display: flex;
    gap: 0.7rem;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-social a:hover {
    background: var(--green);
    color: var(--white);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

/* ---------------------------------------------------------
   Detay Sayfaları (Faaliyet / Haber)
   --------------------------------------------------------- */
.detail-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.detail-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 24px rgba(51, 51, 115, 0.12);
}

.detail-image img {
    width: 100%;
    display: block;
}

.detail-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.4rem;
}

.detail-content {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text);
}

.detail-content p {
    margin: 0 0 1.2rem;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

.detail-back {
    margin-top: 2.2rem;
}

.related-heading {
    margin: 4.5rem 0 2rem;
    text-align: center;
}

.related-heading h2 {
    font-size: 1.5rem;
}

/* ---------------------------------------------------------
   Bulunamadı (404) bloğu
   --------------------------------------------------------- */
.not-found {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0 2.5rem;
}

.not-found .icon {
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.not-found h2 {
    margin-bottom: 0.7rem;
}

.not-found p {
    margin-bottom: 1.8rem;
}

/* ---------------------------------------------------------
   Sayfalama (Pagination)
   --------------------------------------------------------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.7rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(51, 51, 115, 0.15);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination a:hover {
    background: var(--bg-light);
    text-decoration: none;
}

.pagination .is-active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.pagination .is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ---------------------------------------------------------
   Responsive (mobil uyum)
   --------------------------------------------------------- */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar__info span,
    .top-bar__item {
        font-size: 0.75rem;
    }

    .president__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .president__photo img {
        max-width: 340px;
        margin: 0 auto;
    }

    .president__content {
        text-align: center;
    }

    .feature-cards,
    .card-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-strip__inner {
        justify-content: center;
        text-align: center;
    }

    .contact-strip__info a,
    .contact-strip__info span {
        justify-content: center;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .roadmap,
    .ethics-grid,
    .project-panel__grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: min(320px, 85%);
        background: var(--white);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        padding-top: 4rem;
        z-index: 150;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav a {
        padding: 0.9rem 1.5rem;
        width: 100%;
    }

    .main-nav > ul > li > a::before {
        display: none;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: var(--bg-light);
        display: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .btn-call span {
        display: none;
    }

    .btn-call {
        padding: 0.55rem;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    .top-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar__info {
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-slider {
        height: min(85vh, 560px);
    }

    .hero-slide__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        right: 1rem;
        bottom: 1rem;
    }

    .feature-cards,
    .card-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-strip__inner {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.6rem;
    }

    .project-panel {
        padding: 1.5rem;
    }

    .ethics-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}
