/* ===========================================
   LINGADA - Kahramanmaraş Kültür ve Şehir Rehberi
   Canlı Yeşil & Beyaz Tema
   =========================================== */

:root {
    /* Ana Renk Paleti - Canlı yeşil & beyaz */
    --color-primary: #1f7a3a;
    --color-primary-light: #2ea155;
    --color-primary-dark: #145528;
    --color-accent: #4ade80;
    --color-accent-dark: #16a34a;
    --color-accent-light: #bbf7d0;
    --color-cream: #f0fdf4;
    --color-cream-dark: #dcfce7;
    --color-ink: #052e16;
    --color-text: #1a3a23;
    --color-text-muted: #5a7a64;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-soft: #f7fdf9;
    --color-border: rgba(31, 122, 58, 0.12);
    --color-success: #16a34a;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;
    --color-yellow: #fbbf24;
    
    /* Tipografi */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Ölçüler */
    --container: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(31, 122, 58, 0.08);
    --shadow-md: 0 8px 24px rgba(31, 122, 58, 0.12);
    --shadow-lg: 0 16px 48px rgba(31, 122, 58, 0.18);
    
    /* Geçişler */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-ink);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-accent { background: var(--color-accent); color: var(--color-ink); border-color: var(--color-accent); }
.btn-accent:hover { background: var(--color-accent-dark); color: var(--color-white); }
.btn-whatsapp { background: var(--color-whatsapp); color: var(--color-white); border-color: var(--color-whatsapp); }
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); color: var(--color-white); transform: translateY(-2px); }

/* Main Header */
.main-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo { display: flex; align-items: center; gap: 10px; color: var(--color-primary); text-decoration: none; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-tagline {
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.25em;
    color: var(--color-primary-light);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.main-nav a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
    position: relative;
    letter-spacing: 0.02em;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: calc(100% - 32px); }
.main-nav a.active { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
}
.nav-close { display: none; }
.nav-cta-mobile { display: none; }

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 30l15-15v30zM15 30l15 15V15z' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.page-banner h1 { color: var(--color-white); position: relative; margin-bottom: 12px; }
.page-banner p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; opacity: 0.95; position: relative; }
.breadcrumb {
    display: flex; justify-content: center; align-items: center;
    gap: 10px; margin-top: 20px; font-size: 13px;
    color: var(--color-accent-light); position: relative;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb i { font-size: 10px; opacity: 0.6; }

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
    overflow: hidden;
    color: var(--color-white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 222, 128, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(187, 247, 208, 0.25), transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0l50 50-50 50L0 50z' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
    background-size: cover, cover, 100px 100px;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}
/* Slider yokken sadece metin görünsün — sağda boş kart kalmasın */
.hero-content-text-only {
    grid-template-columns: 1fr;
    max-width: 820px;
}
.hero-text .tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.18);
    border: 1px solid rgba(187, 247, 208, 0.35);
    color: var(--color-accent-light);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
    font-weight: 600;
}
.hero-text .tagline i { color: var(--color-yellow); }
.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-text h1 em { color: var(--color-accent-light); font-style: italic; }
.hero-text p { font-size: 1.15rem; opacity: 0.95; max-width: 540px; margin-bottom: 36px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn-primary { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.hero-ctas .btn-primary:hover { background: var(--color-accent-light); color: var(--color-primary-dark); }
.hero-ctas .btn-outline { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.hero-ctas .btn-outline:hover { background: var(--color-white); color: var(--color-primary); }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(187, 247, 208, 0.25);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-accent-light);
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 700;
}
.hero-stat span { font-size: 13px; opacity: 0.85; letter-spacing: 0.05em; }

.hero-visual {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    opacity: 0.95;
}
.hero-visual::after {
    content: '🎭';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    opacity: 0.35;
}
.hero-visual-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(5, 46, 22, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: var(--radius);
    color: var(--color-white);
}
.hero-visual-card small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--color-accent-light);
}
.hero-visual-card strong { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; color: var(--color-white); }

/* Yaklaşan etkinliğin görseli yüklenmişse: maske emojisi/gradient'i gizle */
.hero-visual:has(.hero-visual-card-image)::before,
.hero-visual:has(.hero-visual-card-image)::after { display: none; }

.hero-visual-card-image {
    position: absolute;
    inset: 0;
    display: block;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: inherit;
}
.hero-visual-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(5,46,22,0.92) 100%);
}
.hero-visual-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--color-white);
    z-index: 1;
}
.hero-visual-overlay small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.9;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--color-accent-light);
}
.hero-visual-overlay strong { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; color: var(--color-white); display: block; }

/* Sections */
.section { padding: 80px 0; }
.section-bg-soft { background: var(--color-bg-soft); }
.section-head { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
    padding: 0 40px;
    position: relative;
}
.section-label::before, .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
}
.section-label::before { left: 0; }
.section-label::after { right: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--color-text-muted); font-size: 1.05rem; }

/* Grid */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--color-cream);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: var(--color-white);
    font-size: 60px;
}
.card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}
.card-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 8px 12px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    line-height: 1;
}
.card-date .day { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; display: block; }
.card-date .month { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 13px; color: var(--color-text-muted); flex-wrap: wrap; }
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.card-meta i { color: var(--color-accent-dark); }
.card-body h3 { margin-bottom: 12px; }
.card-body h3 a { color: var(--color-ink); }
.card-body h3 a:hover { color: var(--color-primary); }
.card-body p { color: var(--color-text-muted); margin-bottom: 18px; flex: 1; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}
.card-link i { transition: transform var(--transition); }
.card-link:hover i { transform: translateX(4px); }

/* About */
.about-section { padding: 80px 0; background: var(--color-bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: var(--shadow-lg);
}
.about-image::after {
    content: '🌿';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 160px;
    opacity: 0.4;
}
.about-image-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
    border: 3px solid var(--color-accent);
}
.about-image-badge strong { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--color-primary); line-height: 1; }
.about-image-badge span { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.about-feature {
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.about-feature:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.about-feature i { font-size: 28px; color: var(--color-primary); margin-bottom: 10px; display: block; }
.about-feature h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 6px; color: var(--color-ink); }
.about-feature p { color: var(--color-text-muted); font-size: 14px; line-height: 1.6; }

/* CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 30l15-15v30zM15 30l15 15V15z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: var(--color-white); margin-bottom: 20px; }
.cta-content h2 em { color: var(--color-accent-light); font-style: italic; }
.cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 30px; }

/* Bize Katıl */
.join-section { padding: 80px 0; background: var(--color-bg-soft); }
.join-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}
.join-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-accent-light), transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}
.join-text .section-label { padding: 0 30px 0 0; }
.join-text .section-label::before { display: none; }
.join-text h2 { margin: 12px 0 16px; color: var(--color-ink); }
.join-text p { color: var(--color-text); margin-bottom: 12px; line-height: 1.7; }
.join-text p strong { color: var(--color-primary); }
.join-text .join-sub { color: var(--color-text-muted); font-size: 0.95rem; }
.join-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.join-actions .btn { width: 100%; }

/* Newsletter */
.newsletter-section { padding: 60px 0; background: var(--color-primary); color: var(--color-white); }
.newsletter-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter-text h3 { color: var(--color-white); font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
.newsletter-text p { opacity: 0.9; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--color-white);
    color: var(--color-ink);
}
.newsletter-form input:focus { outline: 2px solid var(--color-accent); }
.newsletter-form .btn-primary { background: var(--color-accent); color: var(--color-ink); border-color: var(--color-accent); }
.newsletter-form .btn-primary:hover { background: var(--color-accent-light); color: var(--color-ink); }

/* Footer */
.main-footer {
    background: var(--color-ink);
    color: rgba(240, 253, 244, 0.85);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 30l15-15v30zM15 30l15 15V15z' fill='%234ade80' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
}
.footer-about-col p { line-height: 1.8; margin-bottom: 20px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-ink);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}
.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(240, 253, 244, 0.75); font-size: 14px; transition: all var(--transition); }
.footer-col ul a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(240, 253, 244, 0.75);
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact i { color: var(--color-accent); margin-top: 4px; }
.footer-contact a { color: rgba(240, 253, 244, 0.75); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-bottom {
    border-top: 1px solid rgba(74, 222, 128, 0.15);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(240, 253, 244, 0.6);
    position: relative;
}
.footer-bottom-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(240, 253, 244, 0.6); }
.footer-bottom-links a:hover { color: var(--color-accent); }

/* Floating Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--color-whatsapp);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.4); }
}
.fw-tooltip {
    position: absolute;
    right: 75px;
    background: var(--color-ink);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}
.floating-whatsapp:hover .fw-tooltip { opacity: 1; right: 80px; }

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    font-size: 16px;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-primary-dark); transform: translateY(-3px); }

/* Forms */
.contact-form { background: var(--color-white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--color-ink); font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--color-white);
    color: var(--color-ink);
    transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info-card { background: var(--color-primary); color: var(--color-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-info-card h3 { color: var(--color-white); margin-bottom: 24px; font-family: var(--font-display); }
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-list i { color: var(--color-accent-light); font-size: 18px; margin-top: 4px; min-width: 20px; }
.contact-info-list strong { display: block; font-size: 14px; color: var(--color-accent-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 700; }
.contact-info-list span, .contact-info-list a { color: var(--color-white); }
.contact-info-list a:hover { color: var(--color-accent-light); }

/* Article */
.content-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.article-body { background: var(--color-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.article-body h2, .article-body h3 { margin: 24px 0 12px; color: var(--color-ink); }
.article-body p { margin-bottom: 16px; line-height: 1.8; }
.article-body img { border-radius: var(--radius); margin: 20px 0; max-width: 100%; height: auto; }
.article-body a { color: var(--color-primary); text-decoration: underline; }
.article-body a:hover { color: var(--color-accent-dark); }
/* Otomatik paragraf formatlama (format_content çıktısı) */
.post-content p { margin: 0 0 18px; line-height: 1.8; font-size: 1rem; }
.post-content p:last-child { margin-bottom: 0; }
.post-content h2, .post-content h3, .post-content h4 { margin: 28px 0 14px; line-height: 1.3; color: var(--color-ink); font-family: var(--font-display); }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; line-height: 1.8; }
.post-content li { margin-bottom: 6px; }
.post-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 20px 0; }
.post-content a { color: var(--color-primary); text-decoration: underline; }
.post-content a:hover { color: var(--color-accent-dark); }
.post-content blockquote { border-left: 4px solid var(--color-accent); padding: 12px 20px; margin: 20px 0; background: var(--color-cream); font-style: italic; }

.sidebar-card { background: var(--color-white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); margin-bottom: 24px; }
.sidebar-card h4 { font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-accent); }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--color-ink); font-weight: 600; font-size: 14px; }
.sidebar-list a:hover { color: var(--color-primary); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--color-ink);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-decoration: none;
}
.pagination a:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* Helpers */
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }
.text-center { text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .content-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .newsletter-content { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { max-width: 500px; margin: 0 auto; }
    .join-card { grid-template-columns: 1fr; padding: 35px; }
}

@media (max-width: 768px) {
    .header-inner { padding: 14px 20px; }
    .logo-mark { width: 42px; height: 42px; font-size: 26px; }
    .logo-text strong { font-size: 18px; }
    .logo-text em { font-size: 9px; letter-spacing: 0.2em; }
    
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }
    .nav-toggle { display: flex; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 0; width: 100%; align-items: stretch; }
    .main-nav li { border-bottom: 1px solid var(--color-border); }
    .main-nav a { padding: 16px 0; font-size: 16px; display: block; width: 100%; }
    .main-nav a::after { display: none; }
    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        font-size: 24px;
        color: var(--color-primary);
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .nav-cta-mobile { display: block; margin-top: 24px; }
    .nav-cta-mobile .btn { width: 100%; }
    
    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(5, 46, 22, 0.55);
        z-index: 998;
    }
    
    .hero { min-height: auto; padding: 40px 0 60px; }
    .hero-text h1 { font-size: 2.25rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat strong { font-size: 2rem; }
    
    .section { padding: 60px 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .page-banner { padding: 50px 0 40px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    
    .newsletter-form { flex-direction: column; }
    .newsletter-form .btn { width: 100%; }
    
    .about-image-badge { right: 10px; bottom: -20px; padding: 20px; }
    .about-image-badge strong { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
    
    .contact-form { padding: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .article-body { padding: 25px; }
    
    .floating-whatsapp { width: 54px; height: 54px; font-size: 26px; bottom: 20px; right: 20px; }
    .back-to-top { width: 44px; height: 44px; bottom: 20px; left: 20px; font-size: 14px; }
    .fw-tooltip { display: none; }
    
    .grid-4 { grid-template-columns: 1fr; }
    .team-photo { width: 140px; height: 140px; font-size: 50px; }
    
    .section-head { margin-bottom: 40px; }
    .section-label { padding: 0 30px; font-size: 11px; }
    
    .btn { padding: 12px 22px; font-size: 13px; }

    .join-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .logo-text em { display: none; }
    .hero-text h1 { font-size: 1.85rem; }
    .hero-stats { justify-content: space-around; gap: 12px; }
    .hero-stat strong { font-size: 1.6rem; }
    .hero-stat span { font-size: 11px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .join-actions .btn { font-size: 12px; padding: 12px 16px; }
}

/* Animations */
.fade-in { animation: fadeIn 0.8s ease both; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 80px 0 60px;
    text-align: center;
}
.page-hero .breadcrumb {
    display: flex; justify-content: center; gap: 8px;
    font-size: .85rem; margin-bottom: 20px; color: rgba(240,253,244,.75);
}
.page-hero .breadcrumb a { color: var(--color-accent-light); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem; margin: 0 0 10px; color: #fff;
}
.page-subtitle { font-size: 1.1rem; color: rgba(240,253,244,.9); margin: 0 auto; max-width: 600px; }

/* Filter Tabs */
.filter-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; padding: 10px 0;
}
.filter-tab {
    padding: 8px 18px; border: 1px solid var(--color-primary);
    border-radius: 30px; color: var(--color-primary);
    text-decoration: none; font-size: .88rem; font-weight: 600;
    transition: all .2s;
    background: var(--color-white);
}
.filter-tab:hover, .filter-tab.active {
    background: var(--color-primary); color: var(--color-white);
}

/* Section helpers */
.section-sm { padding: 30px 0; }
.section-lg { padding: 100px 0; }
.section-top-0 { padding-top: 0; }

/* Empty state */
.empty-state {
    text-align: center; padding: 60px 20px;
    color: var(--color-text-muted); font-size: 1.05rem;
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(5, 46, 22, .92); z-index: 9999;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 95%; max-height: 95vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: #fff;
    font-size: 2.5rem; cursor: pointer; line-height: 1;
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
    margin: 0; cursor: pointer;
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%; height: 280px; object-fit: cover;
    display: block; transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(5,46,22,.85));
    color: #fff; padding: 30px 16px 14px;
    font-size: .9rem; transform: translateY(100%);
    transition: transform .3s;
}
.gallery-item:hover figcaption { transform: translateY(0); }

/* 404 */
.error-page { padding: 60px 20px; text-align: center; }
.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; font-weight: 700; line-height: 1;
    color: var(--color-primary); margin: 0;
}
.error-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--color-ink); margin: 0 0 10px;
}
.error-text { color: var(--color-text-muted); font-size: 1.05rem; margin: 0 0 30px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .page-title { font-size: 2.2rem; }
    .page-hero { padding: 60px 0 40px; }
    .error-code { font-size: 6rem; }
    .gallery-item img { height: 200px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Logo mobil boyut */
@media (max-width: 480px) {
    .logo-img { height: 40px; }
    .logo-tagline { display: none; }
}

/* ==========================================================
   HERO SLIDER (Anasayfa - admin'den eklenen görseller için)
   ========================================================== */
.hero-slider { padding: 0; min-height: 90vh; position: relative; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; min-height: 90vh; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    min-height: 90vh;
    padding: 80px 0;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slider .hero-content { grid-template-columns: 1fr; max-width: 760px; }
.hero-slider .hero-text { text-align: left; }

/* Dot navigation */
.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
    width: 36px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.4); border: 0; padding: 0;
    cursor: pointer; transition: background 0.3s, width 0.3s;
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--color-white); width: 56px; }

/* Arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; width: 48px; height: 48px;
    border-radius: 50%; cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Mobil — slider */
@media (max-width: 768px) {
    .hero-slider, .hero-slides, .hero-slide { min-height: 75vh; }
    .hero-slide { padding: 50px 0 70px; }
    /* Mobilde sağ taraftan koyu katman yetmez — alttan da koyulaştır ki başlık okunsun */
    .hero-slide {
        background-position: center center !important;
    }
    .hero-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(5,46,22,0.55) 0%, rgba(5,46,22,0.85) 100%);
        z-index: 0;
    }
    .hero-slider .hero-content { position: relative; z-index: 1; }
    .hero-slider .hero-text { text-align: left; }
    .hero-slider .hero-text h1 { font-size: 1.85rem; line-height: 1.2; }
    .hero-slider .hero-text p { font-size: 0.95rem; }
    .hero-slider .tagline { font-size: 12px; }
    .hero-slider .hero-stats { gap: 18px; }
    .hero-slider .hero-stat strong { font-size: 1.6rem; }

    .hero-arrow { width: 38px; height: 38px; }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
    .hero-dots { bottom: 16px; }
    .hero-dot { width: 24px; }
    .hero-dot.active { width: 36px; }
}
@media (max-width: 480px) {
    .hero-arrow { display: none; }
}

/* Hero - alt sorular paragrafı */
.hero-questions {
    margin-top: 18px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border-left: 3px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    backdrop-filter: blur(2px);
}
.hero-questions strong { color: #fff; font-weight: 600; }
@media (max-width: 768px) {
    .hero-questions { font-size: 0.95rem !important; padding: 12px 14px; }
}
