@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&family=Parisienne&display=swap');

/* ==========================================================
   MASK OPTICA — Hizmetlerimiz Sayfası
   Token sistemi kurumsal / genel-icerik / video ailesiyle aynı:
     --ink-900 / 800   : lacivert zemin katmanları
     --brass-500 / 400 : sıcak pirinç vurgu rengi
     --paper-100        : açık nötr (metin)
     --sky-300           : ortak yumuşak mavi
   Tipografi: Fraunces (başlık) / Manrope (gövde) / Parisienne (vurgu)
   Bağımsız sayfa; sınıflar "hz-" ön ekiyle izole edilmiştir.
   ========================================================== */

.hizmetler {
    --ink-900: #06111f;
    --ink-800: #0d1f38;
    --ink-700: #172c4d;
    --brass-500: #c6a15b;
    --brass-400: #d9bd80;
    --paper-100: #f5f7fa;
    --sky-300: #b8d4f5;

    background: var(--ink-900);
    color: var(--paper-100);
    overflow: hidden;
}

.hizmetler * {
    box-sizing: border-box;
}

.hz-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.hz-section {
    padding: 100px 0;
    position: relative;
}

.hz-section + .hz-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    margin-top: -30px;
    background: linear-gradient(180deg, transparent, rgba(198, 161, 91, 0.5), transparent);
}

/* ---------- Ortak tipografi ---------- */

.hz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass-400);
    margin-bottom: 22px;
}

.hz-eyebrow-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hz-mark {
    color: var(--brass-500);
    width: 34px;
    height: 13px;
    display: inline-flex;
}

.hz-mark svg {
    width: 100%;
    height: 100%;
}

.hz-heading {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 22px;
}

.hz-heading-sm {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 22px;
}

.hz-heading-center {
    text-align: center;
}

.hz-script {
    font-family: 'Parisienne', cursive;
    font-weight: 400;
    font-size: 1.05em;
    color: var(--sky-300);
    letter-spacing: 0.5px;
}

.hz-lead {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--paper-100);
    line-height: 1.7;
    margin: 0;
    max-width: 56ch;
}

.hz-lead-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hz-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--ink-800);
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    margin-top: 12px;
}

.hz-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 32px rgba(0,0,0,0.4);
}

/* ---------- HERO ---------- */

.hz-hero {
    padding: 170px 0 130px;
    text-align: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hz-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hz-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(198, 161, 91, 0.16) 0%, transparent 55%),
        linear-gradient(180deg, rgba(6, 17, 31, 0.78) 0%, rgba(6, 17, 31, 0.72) 45%, rgba(6, 17, 31, 0.92) 100%);
}

.hz-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- HİZMET KARTLARI ---------- */

.hz-service-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.hz-service-card {
    padding: 38px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(23, 44, 77, 0.32);
    transition: background 0.35s ease, transform 0.35s ease;
}

.hz-service-card:hover {
    background: rgba(23, 44, 77, 0.55);
    transform: translateY(-4px);
}

.hz-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(198, 161, 91, 0.4);
    color: var(--brass-400);
    margin-bottom: 20px;
}

.hz-service-icon svg {
    width: 26px;
    height: 26px;
}

.hz-service-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 10px;
}

.hz-service-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(245, 247, 250, 0.68);
    margin: 0;
}

/* ---------- SÜREÇ ---------- */

.hz-process {
    background: var(--ink-800);
}

.hz-process-row {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.hz-process-row::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 161, 91, 0.45), transparent);
}

.hz-process-step {
    position: relative;
    text-align: center;
    padding: 0 12px;
}

.hz-process-num {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--ink-900);
    background: var(--brass-400);
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.hz-process-step h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 10px;
}

.hz-process-step p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(245, 247, 250, 0.68);
    margin: 0;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- CTA ---------- */

.hz-cta {
    background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
    text-align: center;
}

.hz-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- Scroll-Reveal (azaltılmış hareket tercihine saygılı) ----------
   .hz-js sınıfı yalnızca JS çalıştığında eklenir; JS devre dışıysa
   .hz-reveal öğeleri varsayılan (görünür) halde kalır. */

@media (prefers-reduced-motion: no-preference) {
    .hz-js .hz-reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .hz-js .hz-reveal.hz-in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .hz-js .hz-service-grid .hz-service-card:nth-child(1).hz-in-view { transition-delay: 0.02s; }
    .hz-js .hz-service-grid .hz-service-card:nth-child(2).hz-in-view { transition-delay: 0.08s; }
    .hz-js .hz-service-grid .hz-service-card:nth-child(3).hz-in-view { transition-delay: 0.14s; }
    .hz-js .hz-service-grid .hz-service-card:nth-child(4).hz-in-view { transition-delay: 0.20s; }
    .hz-js .hz-service-grid .hz-service-card:nth-child(5).hz-in-view { transition-delay: 0.26s; }
    .hz-js .hz-service-grid .hz-service-card:nth-child(6).hz-in-view { transition-delay: 0.32s; }

    .hz-js .hz-process-row .hz-process-step:nth-child(1).hz-in-view { transition-delay: 0.05s; }
    .hz-js .hz-process-row .hz-process-step:nth-child(2).hz-in-view { transition-delay: 0.15s; }
    .hz-js .hz-process-row .hz-process-step:nth-child(3).hz-in-view { transition-delay: 0.25s; }
}

/* ==========================================================
   Mobil Uyumluluk
   ========================================================== */

@media (max-width: 900px) {
    .hz-section {
        padding: 64px 0;
    }

    .hz-container {
        padding: 0 22px;
    }

    .hz-hero {
        padding: 110px 0 72px;
    }

    .hz-heading {
        font-size: 2.2rem;
    }

    .hz-heading-sm {
        font-size: 1.8rem;
    }

    .hz-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .hz-service-card {
        padding: 28px 22px;
    }

    .hz-process-row {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hz-process-row::before {
        display: none;
    }

    .hz-lead {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hz-heading {
        font-size: 1.8rem;
    }

    .hz-heading-sm {
        font-size: 1.5rem;
    }

    .hz-service-grid {
        grid-template-columns: 1fr;
    }
}