/* =========================================
   HİZMETLER BÖLÜMÜ
========================================= */

.services-section {
    width: 100%;
    padding: 70px 0;
    background-color: #f7f8fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 14px;
    color: #1e3c72;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.2;
}

.services-intro p {
    color: #555555;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* =========================================
   HİZMET KARTLARI
========================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.service-card {
    min-width: 0;
    padding: 34px 30px;
    background-color: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 26px rgba(0, 0, 0, 0.13);
}

.service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(33, 150, 211, 0.12);
    border-radius: 50%;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 13px;
    color: #1e3c72;
    font-size: 1.55rem;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 20px;
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    color: #1e3c72;
    font-size: 0.98rem;
    font-weight: 700;
}

.service-card a::after {
    margin-left: 7px;
    content: "→";
    transition: transform 0.25s ease;
}

.service-card a:hover {
    color: #2196d3;
}

.service-card a:hover::after {
    transform: translateX(4px);
}

/* =========================================
   ÇALIŞMA SÜRECİ
========================================= */

.working-process {
    width: 100%;
    padding: 70px 0;
    background-color: #ffffff;
}

.process-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.process-heading h2 {
    margin-bottom: 14px;
    color: #1e3c72;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.2;
}

.process-heading p {
    color: #555555;
    font-size: 1.08rem;
    line-height: 1.75;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-item {
    min-width: 0;
    padding: 28px 22px;
    text-align: center;
    background-color: #f7f8fa;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
}

.process-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #1e3c72;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 750;
}

.process-item h3 {
    margin-bottom: 11px;
    color: #1e3c72;
    font-size: 1.3rem;
    line-height: 1.3;
}

.process-item p {
    color: #606060;
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================================
   İLETİŞİM ÇAĞRISI
========================================= */

.services-contact {
    width: 100%;
    padding: 55px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #1e3c72 0%,
            #2a5298 100%
        );
}

.services-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.services-contact h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.25;
}

.services-contact p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.65;
}

.services-contact-button {
    flex-shrink: 0;
    min-height: 50px;
    padding: 13px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    background-color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.services-contact-button:hover,
.services-contact-button:focus {
    color: #1e3c72;
    background-color: #ffea4d;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.25);
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 950px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-contact-inner {
        flex-direction: column;
        text-align: center;
    }

    .services-contact p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   TELEFON
========================================= */

@media screen and (max-width: 768px) {
    .services-section,
    .working-process {
        padding: 50px 0;
    }

    .services-intro,
    .process-heading {
        margin-bottom: 30px;
    }

    .services-intro h2,
    .process-heading h2 {
        font-size: 2rem;
    }

    .services-intro p,
    .process-heading p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-item {
        padding: 25px 20px;
    }

    .services-contact {
        padding: 45px 0;
    }

    .services-contact-inner {
        gap: 24px;
    }

    .services-contact h2 {
        font-size: 1.9rem;
    }

    .services-contact p {
        font-size: 1rem;
    }

    .services-contact-button {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================================
   KÜÇÜK TELEFON
========================================= */

@media screen and (max-width: 480px) {
    .services-section,
    .working-process {
        padding: 42px 0;
    }

    .services-intro h2,
    .process-heading h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 24px 18px;
    }

    .process-number {
        width: 48px;
        height: 48px;
    }

    .services-contact h2 {
        font-size: 1.7rem;
    }
}