/* ============================================
   SİNEKLİK SİTESİ - KLASİK TASARIM
   Fotoğrafsız, temiz, profesyonel
   ============================================ */

:root {
    --primary: #1a5632;
    --primary-dark: #0f3d22;
    --primary-light: #e8f5ec;
    --accent: #2563eb;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8faf9;
    --border: #e5e7eb;
    --wp-green: #25d366;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
}

html { scroll-padding-top: 80px; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.3; color: var(--primary-dark); }
h1 { font-size: 1.8rem; margin-bottom: 16px; }
h2 { font-size: 1.4rem; margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

/* ========== HEADER ========== */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 60px;
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.logo:hover { text-decoration: none; opacity: 0.9; }

.site-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background 0.2s;
}
.site-nav a:hover, .site-nav a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
}

.header-call {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: auto;
    white-space: nowrap;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: var(--radius);
}
.header-call:hover { background: rgba(255,255,255,0.25); text-decoration: none; }

.burger-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

/* ========== BREADCRUMB ========== */
.crumb-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}
.crumb-bar a { color: var(--text-light); }
.crumb-bar span { color: var(--text); font-weight: 500; }

/* ========== HERO (ANA SAYFA) ========== */
.splash-area {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.splash-area h1 { font-size: 2rem; color: var(--primary-dark); }
.splash-slogan { font-size: 1.1rem; color: var(--text-light); margin-bottom: 12px; }
.splash-text { max-width: 700px; margin: 0 auto 24px; color: var(--text); }

/* ========== CTA BUTON ========== */
.call-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    margin: 6px;
}
.call-btn:hover { background: var(--primary-dark); text-decoration: none; color: #fff; }
.call-wp { background: var(--wp-green); }
.call-wp:hover { background: #1da851; }

/* ========== GRID ========== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

/* ========== PRODUCT CARDS ========== */
.items-showcase { margin-bottom: 50px; }
.items-showcase h2 { text-align: center; }

.item-card {
    display: block;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.item-card:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}
.item-card h3 { font-size: 1rem; margin-bottom: 12px; color: var(--primary); }
.item-card:hover h3 { color: #fff; }
.item-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.more-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}
.item-card:hover .more-link { color: rgba(255,255,255,0.9); }

/* ========== İLÇE GRID ========== */
.areas-section { margin-bottom: 50px; }
.areas-section h2 { text-align: center; margin-bottom: 20px; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.area-card {
    display: block;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    color: var(--text);
    transition: all 0.2s;
}
.area-card:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}
.area-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--primary); }
.area-card:hover h3 { color: #fff; }
.area-count { font-size: 0.85rem; color: var(--text-light); }
.area-card:hover .area-count { color: rgba(255,255,255,0.8); }

/* ========== HAKKIMIZDA / FEATURE BOXES ========== */
.company-section { margin-bottom: 50px; }
.company-section h2 { text-align: center; }
.company-text { max-width: 800px; margin: 0 auto 24px; text-align: center; }
.company-text p { margin-bottom: 12px; color: var(--text); font-size: 0.95rem; }
.highlight-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}
.highlight-card h3 { color: var(--primary); margin-bottom: 8px; }
.highlight-card p { font-size: 0.9rem; }

/* ========== CONTENT PAGE ========== */
.detail-page { padding: 40px 0 10px; }
.detail-page h1 { border-bottom: 2px solid var(--primary); padding-bottom: 12px; margin-bottom: 32px; }

.detail-section {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.detail-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.detail-section h2 { color: var(--primary-dark); margin-bottom: 14px; }
.detail-section p { margin-bottom: 12px; }

/* ========== FİYAT ========== */
.price-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.price-box h3 { font-size: 1rem; margin: 0; flex: 1; }
.price-tag {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ========== KEŞİF CTA ========== */
.kesif-action {
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}
.kesif-action h2 { color: var(--primary); }

/* ========== HİZMET BÖLGELERİ ========== */
.hizmet-bolgeleri h3 { margin-top: 20px; margin-bottom: 10px; }
.area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.area-links a {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
}
.area-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    text-decoration: none;
}

/* ========== SSS (FAQ) ========== */
.sss-section { margin-bottom: 20px; margin-top: 10px; }
.sss-section h2 { text-align: center; margin-bottom: 24px; }
.sss-list { max-width: 800px; margin: 0 auto; }
.sss-entry {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.sss-q {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s, color 0.2s;
}
.sss-q::-webkit-details-marker { display: none; }
.sss-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.sss-entry[open] .sss-q::after {
    content: '−';
}
.sss-entry[open] .sss-q {
    background: var(--primary);
    color: #fff;
}
.sss-entry[open] .sss-q::after { color: #fff; }
.sss-a {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    line-height: 1.7;
    color: var(--text-light);
}
.sss-a p { margin: 0; }

/* ========== YORUMLAR ========== */
.feedback-section { margin-bottom: 50px; }
.feedback-section h2 { text-align: center; margin-bottom: 20px; }
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.feedback-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.feedback-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.feedback-name { font-weight: 600; font-size: 0.95rem; }
.feedback-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.feedback-loc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 10px; }
.feedback-text { font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ========== FOOTER ========== */
.page-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 0;
    margin-top: 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    padding-bottom: 30px;
}
.footer-block h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer-block p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-block ul { list-style: none; }
.footer-block li { margin-bottom: 6px; }
.footer-block a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-block a:hover { color: #fff; }
.footer-eval {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
    text-align: center;
}
.footer-star-row {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-right: 8px;
}
.footer-eval-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
}
.footer-end {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ========== FAB BUTONLAR ========== */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.fab-container a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fab-container a:hover { transform: scale(1.1); text-decoration: none; }
.ig-button { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wa-button { background: var(--wp-green); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .header-content { flex-wrap: wrap; height: auto; padding: 10px 20px; }
    .logo { order: 1; }
    .burger-btn { display: block; order: 2; }
    .site-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
        order: 3;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 10px;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 10px 12px; }
    .header-call { display: none; }
    .splash-area h1 { font-size: 1.5rem; }
    h1 { font-size: 1.4rem; }
    .grid-4 { grid-template-columns: 1fr; }
    .price-box { flex-direction: column; text-align: center; }
    .detail-page { padding: 24px 0 40px; }
    .cookie-body { flex-direction: column; text-align: center; }
}

/* ========== ÇEREZ BİLDİRİMİ ========== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #e0e0e0;
    z-index: 9999;
    padding: 14px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-body {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cookie-body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}
.cookie-body a { color: #8fc9a3; }
.cookie-ok {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-ok:hover { background: var(--primary-dark); }
