/* =========================================
   insaat-surecimi.css
   ========================================= */

/* HERO */
.surec-hero {
    position: relative;
    background-color: #0d0d0d;
    padding: 185px 0 80px;
    overflow: hidden;
}

.surec-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(183, 138, 89, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.surec-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.surec-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.surec-hero-title span { color: #b78a59; }

.surec-hero-desc {
    color: #999;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* =========================================
   ANA SÜREÇ BÖLÜMÜ
   ========================================= */
.surec-main {
    background-color: #111;
    padding: 80px 0 60px;
}

/* Her adım bloğu */
.surec-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0 20px;
    margin-bottom: 70px;
    position: relative;
}

.surec-item:last-child { margin-bottom: 0; }

/* Numara Kolonu */
.surec-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
}

.surec-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b78a59;
    opacity: 0.5;
    line-height: 1;
    min-width: 70px;
    text-align: center;
}

.surec-vline {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(183, 138, 89, 0.4), transparent);
    margin-top: 15px;
}

/* İçerik Kolonu */
.surec-content-col { flex: 1; }

.surec-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.surec-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(183, 138, 89, 0.35);
    background: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.surec-item:hover .surec-icon {
    background: #b78a59;
    border-color: #b78a59;
}

.surec-item:hover .surec-icon svg { stroke: #fff; }

.surec-title {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
}

/* Body: metin + resim yan yana */
.surec-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 35px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.surec-item:hover .surec-body {
    border-color: rgba(183, 138, 89, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.surec-body-reverse {
    direction: rtl;
}
.surec-body-reverse > * {
    direction: ltr;
}

/* Metin */
.surec-text-col p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
}

.surec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.surec-list li {
    color: #bbb;
    font-size: 0.85rem;
    padding-left: 18px;
    position: relative;
    font-weight: 300;
}

.surec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b78a59;
}

/* Resim */
.surec-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 240px;
}

.surec-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.surec-item:hover .surec-img-wrap img { transform: scale(1.05); }

.surec-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(183, 138, 89, 0.9);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* =========================================
   ALT GÜVEN KUTUSU
   ========================================= */
.surec-bottom {
    background-color: #111;
    padding: 0 0 80px;
}

.surec-bottom-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
    border: 1px solid rgba(183, 138, 89, 0.2);
    border-radius: 14px;
    padding: 35px 40px;
}

.surec-bottom-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(183, 138, 89, 0.3);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.surec-bottom-text { flex: 1; }

.surec-bottom-text h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.surec-bottom-text p {
    color: #888;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.surec-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #b78a59;
    color: #b78a59;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}

.surec-cta-btn:hover {
    background: #b78a59;
    color: #fff;
}

/* =========================================
   ANİMASYONLAR
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSİVE
   ========================================= */
@media (max-width: 900px) {
    .surec-hero { padding-top: 160px; }

    .surec-body,
    .surec-body-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .surec-img-wrap { height: 200px; }
}

@media (max-width: 600px) {
    .surec-hero { padding: 150px 0 50px; }
    .surec-main { padding: 50px 0 40px; }

    .surec-item {
        grid-template-columns: 55px 1fr;
        gap: 0 12px;
        margin-bottom: 50px;
    }

    .surec-big-num { font-size: 2rem; min-width: 50px; }

    .surec-body { padding: 22px; gap: 24px; }

    .surec-bottom-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
    }
}