/* ============================================================
   ProWitech Teknoloji - Kurumsal Tema CSS
   Bordo / Kırmızı | Modern Tasarım Akımları
   ============================================================ */

:root {
    --pw-primary: #5c0a1c;
    --pw-primary-dark: #38050f;
    --pw-primary-deep: #1d0309;
    --pw-secondary: #c91533;
    --pw-secondary-light: #e5383b;
    --pw-accent: #ff8fa3;
    --pw-accent-soft: #ffd6de;
    --pw-gold: #d4a24e;
    --pw-cream: #fdf7f8;
    --pw-surface: #ffffff;
    --pw-muted: #7a6a70;
    --pw-border: #f0e3e7;
    --pw-text: #332129;
    --pw-shadow: 0 18px 45px rgba(44, 10, 19, 0.10);
    --pw-shadow-sm: 0 6px 18px rgba(44, 10, 19, 0.08);
    --pw-radius: 18px;
    --pw-radius-sm: 12px;
    --pw-gradient: linear-gradient(135deg, #c91533 0%, #8f1424 55%, #5c0a1c 100%);
    --pw-gradient-soft: linear-gradient(135deg, #ff8fa3 0%, #e5383b 100%);
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--pw-text);
    background: var(--pw-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--pw-primary);
    color: #fff;
    padding: 10px 16px;
    z-index: 200;
}
.skip-link:focus { left: 0; }

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--pw-gradient);
    color: #fff;
    box-shadow: 0 8px 22px rgba(201, 21, 51, 0.32);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(201, 21, 51, 0.42);
}

.btn-outline {
    background: transparent;
    border-color: rgba(92, 10, 28, 0.25);
    color: var(--pw-primary);
}
.btn-outline:hover {
    border-color: var(--pw-secondary);
    background: rgba(201, 21, 51, 0.05);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--pw-primary);
    box-shadow: var(--pw-shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--pw-shadow); }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 11px 18px;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 10px; }

.btn-nav { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 247, 248, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--pw-border);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--pw-shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 44px; width: auto; }
.brand-mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--pw-gradient);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 5px 14px rgba(201, 21, 51, 0.4);
}
.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 21px;
    background: var(--pw-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav .nav-list { display: flex; align-items: center; gap: 6px; }

.nav-link {
    position: relative;
    padding: 9px 14px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--pw-text);
    border-radius: 10px;
}
.nav-link:hover { color: var(--pw-secondary); }
.nav-link.active { color: var(--pw-secondary); }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 3px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--pw-gradient-soft);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2.5px;
    background: var(--pw-primary);
    border-radius: 2px;
    transition: all .3s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    background: radial-gradient(1200px 600px at 80% -10%, #8f1424 0%, var(--pw-primary) 45%, var(--pw-primary-deep) 100%);
    color: #fff;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 10% 80%, rgba(255, 143, 163, 0.08), transparent 60%),
        radial-gradient(500px 400px at 90% 20%, rgba(212, 162, 78, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
}
.hero-slide.active { display: flex; animation: heroFade .8s ease; }

.hero-slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(153, 20, 45, 0.45) 0%, rgba(180, 40, 60, 0.28) 50%, rgba(180, 40, 60, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content { max-width: 680px; position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255, 143, 163, 0.15);
    border: 1px solid rgba(255, 143, 163, 0.4);
    color: var(--pw-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-title .accent {
    background: linear-gradient(120deg, #ff8fa3, #ffd6de);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pattern {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 21, 51, 0.55), rgba(56, 5, 15, 0.2) 60%, transparent 70%);
    filter: blur(6px);
    z-index: 1;
    pointer-events: none;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.hero-stat strong {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    display: block;
    color: #fff;
}
.hero-stat span { font-size: 14px; color: rgba(255, 255, 255, 0.75); }

.hero-dots {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 5;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 0;
    cursor: pointer;
    transition: all .3s;
}
.hero-dot.active { background: var(--pw-accent); width: 28px; border-radius: 6px; }

/* ============================================================
   BÖLÜM BAŞLIKLARI
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: #fff; }
.section-dark {
    background: linear-gradient(160deg, var(--pw-primary-deep), var(--pw-primary));
    color: #fff;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(201, 21, 51, 0.08);
    color: var(--pw-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--pw-primary);
    margin-bottom: 16px;
}

.section-dark .section-title { color: #fff; }
.section-dark .section-tag { background: rgba(255, 143, 163, 0.12); color: var(--pw-accent); }

.section-sub { color: var(--pw-muted); font-size: 16px; }

/* ---------- Referanslar ---------- */
.references-section {
    padding: 80px 0;
    background: var(--pw-cream);
    border-top: 1px solid var(--pw-border);
    border-bottom: 1px solid var(--pw-border);
}
.references-section .section-head { margin-bottom: 44px; }
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    align-items: center;
}
.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: 16px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.reference-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--pw-shadow-sm);
    border-color: rgba(201, 21, 51, 0.3);
}
.reference-item img {
    max-height: 52px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter .3s, opacity .3s;
}
.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.reference-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--pw-primary);
}

/* ============================================================
   KARTLAR
   ============================================================ */
.card {
    background: var(--pw-surface);
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    padding: 28px;
    box-shadow: var(--pw-shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--pw-shadow); }

/* ---------- Ürün kartı ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    overflow: hidden;
    box-shadow: var(--pw-shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--pw-shadow); }

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--pw-primary-deep);
}
.product-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.product-card:hover .product-media img { transform: scale(1.06); }

.product-type {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(29, 3, 9, 0.7);
    backdrop-filter: blur(6px);
}

.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.product-cat { font-size: 12.5px; color: var(--pw-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--pw-primary); margin-bottom: 8px; }
.product-desc { font-size: 14px; color: var(--pw-muted); flex: 1; margin-bottom: 18px; }

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--pw-border);
    padding-top: 16px;
}

.product-price { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--pw-secondary); }
.product-price .old { font-size: 13px; font-weight: 500; color: var(--pw-muted); text-decoration: line-through; margin-left: 6px; }

/* ---------- Hizmet kartı ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pw-shadow);
    border-color: rgba(201, 21, 51, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pw-gradient-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 62px; height: 62px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--pw-primary);
    background: linear-gradient(135deg, rgba(201, 21, 51, 0.12), rgba(201, 21, 51, 0.04));
    border: 1px solid rgba(201, 21, 51, 0.15);
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pw-secondary), var(--pw-primary));
    opacity: 0;
    filter: blur(8px);
    z-index: -1;
    transition: opacity .3s;
}
.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--pw-primary);
    background: linear-gradient(135deg, var(--pw-primary), #c91533);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 21, 51, 0.28);
}
.service-icon i { font-size: 26px; line-height: 1; }

/* Koyu arka planlı (section-dark) hizmet kartlarında ikonlar açık renkte görünsün */
.section-dark .service-card .service-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}
.section-dark .service-card:hover .service-icon {
    color: #fff;
    border-color: var(--pw-primary);
    background: linear-gradient(135deg, var(--pw-primary), #c91533);
}
.service-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--pw-primary); margin-bottom: 10px; }
.service-desc { font-size: 14.5px; color: var(--pw-muted); margin-bottom: 18px; }

.service-features li {
    position: relative;
    padding: 5px 0 5px 26px;
    font-size: 14px;
    color: var(--pw-text);
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pw-secondary);
    font-weight: 800;
}

/* Koyu arka planlı (section-dark) hizmet kartlarında yazılar okunur olsun */
.section-dark .service-card .service-features li {
    color: rgba(255, 255, 255, 0.88);
}
.section-dark .service-card .service-features li::before {
    color: var(--pw-accent);
}
.section-dark .service-card .service-desc {
    color: rgba(255, 255, 255, 0.78);
}
.section-dark .service-card .read-more {
    color: var(--pw-accent);
}

/* ---------- Yorum kartı ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    padding: 30px;
    box-shadow: var(--pw-shadow-sm);
}
.testimonial-card:hover { box-shadow: var(--pw-shadow); }

.testimonial-stars { color: #f5b301; font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-comment { font-size: 15px; color: var(--pw-text); font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--pw-gradient);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name { font-family: var(--font-head); font-weight: 700; color: var(--pw-primary); }
.testimonial-company { font-size: 13px; color: var(--pw-muted); }

/* ---------- Blog kartı ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    overflow: hidden;
    box-shadow: var(--pw-shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--pw-shadow); }

.blog-media { aspect-ratio: 16 / 9; background: var(--pw-primary-deep); overflow: hidden; position: relative; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-media img { transform: scale(1.06); }

.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--pw-muted); margin-bottom: 10px; }
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-meta span i { color: var(--pw-secondary); font-size: 13px; }
.blog-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--pw-primary); line-height: 1.4; margin-bottom: 10px; }
.blog-title a:hover { color: var(--pw-secondary); }
.blog-excerpt { font-size: 14px; color: var(--pw-muted); flex: 1; margin-bottom: 16px; }

.read-more {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--pw-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.read-more::after { content: '→'; transition: transform .2s; }
.read-more:hover::after { transform: translateX(4px); }

/* ============================================================
   CTA BÖLÜMÜ
   ============================================================ */
.cta-box {
    background: var(--pw-gradient);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-box::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.cta-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cta-desc { color: rgba(255, 255, 255, 0.85); max-width: 520px; margin-bottom: 24px; }

/* ============================================================
   SSS ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--pw-shadow-sm); border-color: rgba(201, 21, 51, 0.35); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 19px 22px;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--pw-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(201, 21, 51, 0.1);
    color: var(--pw-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pw-secondary); color: #fff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 22px 20px; font-size: 15px; color: var(--pw-muted); }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius-sm);
    margin-bottom: 14px;
    transition: box-shadow .3s;
}
.contact-info-item:hover { box-shadow: var(--pw-shadow-sm); }

.contact-info-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(201, 21, 51, 0.08);
    color: var(--pw-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.contact-info-item h4 { font-family: var(--font-head); font-size: 15px; color: var(--pw-primary); }
.contact-info-item p { font-size: 14px; color: var(--pw-muted); margin-top: 2px; }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius);
    padding: 36px;
    box-shadow: var(--pw-shadow-sm);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--pw-primary);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--pw-border);
    border-radius: 11px;
    font-size: 14.5px;
    font-family: var(--font-body);
    color: var(--pw-text);
    background: #fff;
    transition: border .2s, box-shadow .2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--pw-secondary);
    box-shadow: 0 0 0 4px rgba(201, 21, 51, 0.1);
}
textarea.form-control { min-height: 140px; resize: vertical; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ============================================================
   SAYFA BAŞLIĞI (INNER)
   ============================================================ */
.page-hero {
    background: radial-gradient(900px 400px at 70% 0%, #8f1424 0%, var(--pw-primary) 55%, var(--pw-primary-deep) 100%);
    color: #fff;
    padding: 84px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 0 auto; }

.breadcrumb {
    margin-top: 18px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.breadcrumb a { color: var(--pw-accent); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   ÜRÜN DETAY
   ============================================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-media {
    position: sticky;
    top: 100px;
    border-radius: var(--pw-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pw-border);
    aspect-ratio: 4/3;
}
.product-detail-media img { width: 100%; height: 100%; object-fit: contain; }

.product-detail h1 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); color: var(--pw-primary); margin-bottom: 14px; }
.product-detail .product-cat { margin-bottom: 4px; }

.detail-price { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.detail-price .current { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--pw-secondary); }
.detail-price .old { font-size: 18px; color: var(--pw-muted); text-decoration: line-through; }

.detail-desc { color: var(--pw-muted); margin-bottom: 24px; }

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.detail-block {
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius-sm);
    padding: 24px;
    margin-bottom: 20px;
}
.detail-block h3 { font-family: var(--font-head); color: var(--pw-primary); font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

.feature-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    border-bottom: 1px dashed var(--pw-border);
    font-size: 15px;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 4px;
    color: var(--pw-secondary);
    font-weight: 800;
}

.video-frame {
    aspect-ratio: 16/9;
    border-radius: var(--pw-radius-sm);
    overflow: hidden;
    background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.doc-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--pw-cream);
    border: 1px solid var(--pw-border);
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: var(--pw-primary);
    font-weight: 600;
}
.doc-list a:hover { border-color: var(--pw-secondary); color: var(--pw-secondary); }

/* ---------- Teklif formu (ürün detay) ---------- */
.quote-form {
    background: linear-gradient(160deg, var(--pw-primary-deep), var(--pw-primary));
    color: #fff;
    border-radius: var(--pw-radius);
    padding: 32px;
}
.quote-form h3 { color: #fff; }
.quote-form .form-group label { color: #e3c0c8; }
.quote-form .form-control { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); color: #fff; }
.quote-form .form-control::placeholder { color: #a17882; }

/* ============================================================
   BLOG DETAY
   ============================================================ */
.blog-detail { max-width: 820px; margin: 0 auto; }
.blog-detail .blog-title-lg { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--pw-primary); line-height: 1.25; margin-bottom: 18px; }
.blog-content { font-size: 16.5px; color: var(--pw-text); }
.blog-content h2, .blog-content h3 { font-family: var(--font-head); color: var(--pw-primary); margin: 30px 0 14px; }
.blog-content h2 { font-size: 26px; }
.blog-content h3 { font-size: 21px; }
.blog-content p { margin-bottom: 18px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-content ul li { list-style: disc; margin-bottom: 8px; }
.blog-content ol li { list-style: decimal; margin-bottom: 8px; }
.blog-content blockquote {
    border-left: 4px solid var(--pw-secondary);
    background: var(--pw-cream);
    padding: 18px 22px;
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    color: var(--pw-primary);
    font-style: italic;
}
.blog-content img { border-radius: var(--pw-radius-sm); margin: 20px 0; }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.tag { background: rgba(201, 21, 51, 0.08); color: var(--pw-secondary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; }

/* ============================================================
   SAYFA İÇERİK
   ============================================================ */
.page-content { max-width: 860px; margin: 0 auto; }
.page-content h2, .page-content h3 { font-family: var(--font-head); color: var(--pw-primary); margin: 26px 0 12px; }
.page-content p { margin-bottom: 16px; color: var(--pw-text); }
.page-content ul { padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { list-style: disc; margin-bottom: 6px; }
.page-content img { border-radius: var(--pw-radius-sm); }

/* ============================================================
   FİLTRE / SEARCH
   ============================================================ */
.filter-bar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border: 1px solid var(--pw-border);
    border-radius: var(--pw-radius-sm);
    padding: 16px 20px;
    margin-bottom: 34px;
    box-shadow: var(--pw-shadow-sm);
}
.filter-bar .form-control { max-width: 240px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--pw-primary-deep);
    color: #d9b6c0;
    padding: 80px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: #fff; }

.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 16px;
    color: #e3c0c8;
    transition: all .25s;
}
.social-link:hover {
    background: var(--pw-secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 3px;
    border-radius: 3px;
    background: var(--pw-gradient-soft);
}

.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; color: #d9b6c0; }
.footer-links a:hover { color: var(--pw-accent); padding-left: 4px; }

.footer-contact li {
    margin-bottom: 13px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d9b6c0;
}
.footer-contact li i {
    color: var(--pw-secondary);
    font-size: 15px;
    margin-top: 2px;
}
.footer-contact a { color: #d9b6c0; }
.footer-contact a:hover { color: var(--pw-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: #a17882;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: #c9a3ad; }
.footer-bottom-links a:hover { color: var(--pw-accent); }

/* ============================================================
   FLOATING
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
    z-index: 90;
    transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.scroll-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 46px; height: 46px;
    border-radius: 12px;
    border: 0;
    background: var(--pw-primary);
    color: #fff;
    font-size: 20px;
    box-shadow: var(--pw-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .3s;
    z-index: 90;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--pw-secondary); }

/* ============================================================
   ALERT / FLASH
   ============================================================ */
.flash {
    max-width: 640px;
    margin: 20px auto 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
}
.flash-success { background: #e8f7ef; border: 1px solid #b9e6cd; color: #1d7a44; }
.flash-error { background: #fdeaea; border: 1px solid #f5c6cb; color: #a71d2a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-detail-media { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 78px;
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--pw-border);
        box-shadow: var(--pw-shadow);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        padding: 20px 24px;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { display: block; padding: 13px 14px; }
    .nav-toggle { display: flex; }
    .btn-whatsapp { display: none; }

    .hero-slide { padding: 80px 0 110px; min-height: 460px; }
    .hero-pattern { display: none; }

    .cta-box { flex-direction: column; text-align: center; padding: 44px 28px; }
    .cta-desc { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
    .section { padding: 68px 0; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .hero-stat strong { font-size: 26px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .btn-nav { display: none; }
}

/* Animasyon */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
