/* =========================================
   ATÖLYESEL - ANA SAYFA CSS V5.0
   Modern · Açık · Sıcak · Platform Stili
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────── */
:root {
    --white:        #ffffff;
    --bg:           #f7f5f2;
    --bg-card:      #ffffff;
    --primary:      #ff5c35;
    --primary-soft: #fff1ee;
    --primary-dark: #e04520;
    --ink:          #1a1a1a;
    --ink-2:        #444444;
    --ink-3:        #888888;
    --border:       #eae8e4;
    --border-2:     #d8d5d0;
    --gold:         #f0a500;
    --radius-pill:  999px;
    --radius-xl:    24px;
    --radius-lg:    16px;
    --radius-md:    12px;
    --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
    --shadow-sm:    0 4px 16px rgba(0,0,0,.08);
    --shadow-md:    0 12px 32px rgba(0,0,0,.10);
    --shadow-lg:    0 24px 56px rgba(0,0,0,.12);
    --ease:         cubic-bezier(.25,.46,.45,.94);
    --font:         'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
    background: var(--white);
    padding: 72px 0 60px;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-left { animation: fadeUp .7s var(--ease) both; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    font-family: var(--font);
}

.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(.7); }
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.hero-title .highlight { color: var(--primary); }

.hero-desc {
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--ink-2);
    line-height: 1.75;
    font-weight: 400;
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right { animation: fadeUp .7s .15s var(--ease) both; }

.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
}

.hero-photo-grid .photo-a {
    grid-row: span 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-photo-grid .photo-b,
.hero-photo-grid .photo-c {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-photo-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.hero-photo-grid div:hover img { transform: scale(1.04); }

.hero-float-card {
    margin-top: -24px;
    margin-left: auto;
    width: fit-content;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    position: relative;
    z-index: 2;
    animation: floatY 3.5s ease-in-out infinite;
}

.hero-float-card .fc-icon { font-size: 20px; line-height: 1; }
.hero-float-card .fc-sub  { font-size: 11px; font-weight: 400; color: var(--ink-3); margin-top: 2px; }

@keyframes floatY  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════
   STATS BANDI
══════════════════════════════════════════ */
.stats-band {
    background: var(--bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    justify-content: center;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 8px 32px;
    position: relative;
}

.stat-box + .stat-box::before {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 1px;
    background: var(--border-2);
}

.stat-box h3 {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box h3 em { font-style: normal; color: var(--primary); }

.stat-box p {
    font-family: var(--font);
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   VİTRİN
══════════════════════════════════════════ */
.showcase-section {
    padding: 88px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 16px;
}

.section-label {
    display: block;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.025em;
    line-height: 1.15;
}

.section-subtitle {
    font-family: var(--font);
    margin-top: 8px;
    font-size: 14px;
    color: var(--ink-3);
}

.view-all-link {
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
    transition: color .25s, border-color .25s, gap .25s;
}

.view-all-link:hover { color: var(--primary); border-color: var(--primary); gap: 10px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bento-card.featured { grid-column: span 7; }
.bento-card.standard { grid-column: span 5; }

.bento-img-wrap { overflow: hidden; }

.bento-img {
    width: 100%; height: 280px;
    object-fit: cover;
    transition: transform .5s var(--ease);
    display: block;
}

.bento-card.featured .bento-img { height: 340px; }
.bento-card:hover .bento-img { transform: scale(1.04); }

.bento-content {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bento-category {
    font-family: var(--font);
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-soft);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    width: fit-content;
}

.bento-title {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.bento-card.featured .bento-title { font-size: 1.45rem; }

.bento-desc {
    font-family: var(--font);
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.65;
}

.bento-action { margin-top: auto; }

/* ══════════════════════════════════════════
   BUTONLAR
══════════════════════════════════════════ */
.btn {
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s var(--ease);
    white-space: nowrap;
}

.btn-primary { background: var(--primary); color:#fff; border-color: var(--primary); }
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(255,92,53,.35);
    transform: translateY(-1px);
}

.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--bg); }

.btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--border); }

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-featured {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-2);
}
.btn-featured:hover { border-color: var(--ink); background: var(--bg); }

.btn-cta { background:#fff; color:var(--ink); border-color:#fff; font-size:15px; padding:16px 36px; }
.btn-cta:hover { background:var(--primary-soft); border-color:var(--primary-soft); color:var(--primary); }

/* ══════════════════════════════════════════
   NEDEN BİZ
══════════════════════════════════════════ */
.dark-value-section {
    background: var(--bg);
    padding: 88px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header-dark { margin-bottom: 52px; }
.section-header-dark .section-title  { color: var(--ink); }
.section-header-dark .section-subtitle {
    margin-top: 10px; font-family: var(--font);
    font-size: 15px; color: var(--ink-3);
    max-width: 480px; line-height: 1.7;
}

.dark-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.value-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}

.value-title {
    font-family: var(--font);
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}

.value-desc {
    font-family: var(--font);
    font-size: 14px; color: var(--ink-3); line-height: 1.75;
}

/* ══════════════════════════════════════════
   ZİYARETÇİ DEFTERİ
══════════════════════════════════════════ */
.guestbook-section {
    padding: 88px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.section-header-center .section-subtitle {
    max-width: 500px; margin: 10px auto 0;
    font-family: var(--font); font-size: 14px; color: var(--ink-3);
}

.modern-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.modern-review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.modern-review-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-3px); background: var(--white);
}

.m-review-header { display: flex; justify-content: space-between; align-items: center; }
.m-review-stars  { font-size: 14px; letter-spacing: 2px; }

.m-review-badge {
    font-family: var(--font);
    font-size: 10px; font-weight: 700; color: var(--ink-3);
    background: var(--white); border: 1px solid var(--border);
    padding: 4px 10px; border-radius: var(--radius-pill);
    text-transform: uppercase; letter-spacing: .5px;
    max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.m-review-text {
    font-family: var(--font);
    font-size: 15px; color: var(--ink-2); line-height: 1.7; flex-grow: 1;
}

.m-review-footer {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border);
}

.m-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary-soft); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-weight: 800; font-size: 15px; flex-shrink: 0;
}

.m-author-name { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.m-author-date { font-family: var(--font); font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ══════════════════════════════════════════
   SSS
══════════════════════════════════════════ */
.faq-section {
    padding: 88px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.faq-container { max-width: 720px; margin: 0 auto; }
.faq-container > div { text-align: center; }

.faq-subtitle { font-family: var(--font); font-size: 14px; color: var(--ink-3); margin-top: 10px; }

.link-primary { color: var(--primary); font-weight: 600; border-bottom: 1px solid; }
.link-primary:hover { opacity: .8; }

.faq-list { margin-top: 48px; }

.faq-item {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); cursor: pointer;
}

.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item:hover .faq-question { color: var(--primary); }

.faq-question {
    font-family: var(--font);
    font-size: 1rem; font-weight: 600; color: var(--ink);
    line-height: 1.45; transition: color .2s;
}

.faq-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%; border: 1.5px solid var(--border-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 300; color: var(--ink-3);
    transition: all .25s var(--ease);
}

.faq-item:hover .faq-icon {
    background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg);
}

/* ══════════════════════════════════════════
   FİNAL CTA
══════════════════════════════════════════ */
.final-cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

.final-cta-label {
    font-family: var(--font);
    display: block; font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,.6); letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 16px;
}

.final-cta-title {
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px;
}

.final-cta-desc {
    font-family: var(--font);
    font-size: 1.05rem; color: rgba(255,255,255,.75);
    max-width: 520px; margin: 0 auto 40px; line-height: 1.75;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .dark-value-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .bento-card.featured, .bento-card.standard { grid-column: span 12; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .dark-value-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; gap: 28px; }
    .stat-box + .stat-box::before { display: none; }
}

@media (max-width: 640px) {
    .hero-section { padding: 56px 0 40px; }
    .hero-title { font-size: 2rem; }
    .showcase-section, .dark-value-section,
    .guestbook-section, .faq-section, .final-cta-section { padding: 64px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .bento-img, .bento-card.featured .bento-img { height: 220px; }
}