/* ============================================================
   OURPROCESS PAGE — override service-detail defaults
============================================================ */
#service-detail-header {
    position: relative !important;
    top: 0 !important;
    z-index: 1 !important;
}

#section-okb-who-we-are.detail-padding-50 {
    padding-top: 40px !important;
    top: 0 !important;
    min-height: auto !important;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process-section {
    padding: 20px 0 60px;
    background: #ffffff;
    position: relative;
    clear: both;
}

/* ============================================================
   TIMELINE CONTAINER
============================================================ */
.timeline-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Dikey çizgi — masaüstünde ortada */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 70px;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #f9b300 0%, #4a4a4a 50%, #f9b300 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.timeline-pulse {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(to bottom, #f9b300 0%, #000 100%);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-moving-dot {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 32px;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
    animation: bounce 1s ease-in-out infinite;
}

/* ============================================================
   TIMELINE DOTS
============================================================ */
.timeline-dot {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
    z-index: 20;
    top: 50%;
    margin-top: -12px;
}

.timeline-dot > div:first-child,
.timeline-dot-green > div:first-child {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f9b300;
    box-shadow: 0 2px 8px rgba(249,179,0,0.5);
    position: relative;
}

.dot-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #f9b300;
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   PROCESS STEPS
============================================================ */
.process-steps {
    display: block;
    padding-top: 20px;
}

/* Her adım: CSS Grid ile iki eşit sütun */
.process-step {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    position: relative;
    min-height: 340px;
    margin-bottom: 70px;
}

/* Sol sütun */
.step-left-col {
    padding-right: 48px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Sağ sütun */
.step-right-col {
    padding-left: 48px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   FOTOĞRAF KARTI
============================================================ */
.step-card {
    width: 100%;
    min-height: 340px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

/* Görsel üzerine koyu overlay — hover'da koyulaşır */
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    transition: background 0.35s ease;
    z-index: 0;
}

.step-card:hover::before {
    background: rgba(0,0,0,0.38);
}

/* Numara rozeti */
.step-number {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f9b300 0%, #d48f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: GilroyExtrabold, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(249,179,0,0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.2) rotate(10deg);
}

/* Gradient & dekoratif elemanlar */
.card-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,179,0,0.08) 0%, transparent 60%);
    border-radius: 16px;
    z-index: 1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.decorative-circle-1 { top: 20px; left: 20px; width: 80px; height: 80px; }
.decorative-circle-2 { bottom: 20px; right: 20px; width: 60px; height: 60px; }

.step-card:hover .decorative-circle { opacity: 1; }
.step-card:hover .decorative-circle-1 { transform: scale(1.4) rotate(45deg); }
.step-card:hover .decorative-circle-2 { transform: scale(1.2) rotate(-45deg); }

.glow-effect {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(249,179,0,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.step-card:hover .glow-effect { opacity: 1; }

/* ============================================================
   METİN SÜTUNU
============================================================ */
.step-title {
    font-family: GilroyBoldItalic, sans-serif;
    font-size: clamp(2.2rem, 2.8vw, 3.6rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}

.step-description {
    font-family: GilroyBoldItalic, sans-serif;
    font-size: 1.7rem;
    color: #4a4a4a;
    text-align: center;
    line-height: 1.75;
    margin: 0;
    padding: 0 8px;
}

.process-intro-descr {
    font-family: GilroyBold, sans-serif;
    font-size: 1.7rem !important;
    color: #4a4a4a;
    line-height: 1.86;
    padding-left: 20px;
}

.process-intro-descr *,
.process-intro-descr p,
.process-intro-descr span,
.process-intro-descr li {
    font-size: 1.7rem !important;
    line-height: 1.86;
}

/* ============================================================
   BOTTOM CTA
============================================================ */
.bottom-cta {
    margin-top: 70px;
    text-align: center;
    padding-bottom: 40px;
}

.bottom-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottom-cta .primary-btn {
    background: #f9b300;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.bottom-cta .primary-btn:hover {
    background: #d8ab66;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216,171,102,0.4);
}

.bottom-cta .btn-arrow { transition: transform 0.3s ease; }
.bottom-cta .cta-btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   ANİMASYONLAR
============================================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* ============================================================
   MOBİL (≤ 767px) — dikey yığın, fotoğraf üstte
============================================================ */
@media (max-width: 767px) {
    .timeline-line { display: none; }
    .timeline-dot  { display: none; }

    .process-step {
        grid-template-columns: 1fr !important;
        min-height: auto;
        margin-bottom: 40px;
    }

    /* Step 1 & 3: image top, text bottom */
    .process-step[data-step="1"] .step-left-col,
    .process-step[data-step="3"] .step-left-col  { order: 1; }
    .process-step[data-step="1"] .step-right-col,
    .process-step[data-step="3"] .step-right-col { order: 2; }

    /* Step 2: image was right col — show it first */
    .process-step[data-step="2"] .step-left-col  { order: 2; }
    .process-step[data-step="2"] .step-right-col { order: 1; }

    .step-left-col,
    .step-right-col {
        padding: 0 0 16px;
        text-align: center;
    }

    .step-card { min-height: 220px; }

    .step-title { font-size: 2.2rem; margin-top: 12px; }
    .step-description { font-size: 1.7rem; padding: 0 8px; line-height: 1.7; }
    .process-intro-descr { font-size: 1.7rem !important; padding-left: 10px; }
    .process-intro-descr *, .process-intro-descr p, .process-intro-descr span { font-size: 1.7rem !important; }

    .bottom-cta { margin-top: 30px; }
    .bottom-cta .cta-btn { padding: 12px 24px; font-size: 14px; }
}

/* Dönen pattern resmi — 1000px altında timeline container'ı bozuyor */
@media (max-width: 1000px) {
    #okb-who-we-are-patt-rotate { display: none !important; }
}
