/* ==========================================================================
   Gülen Yüz Temizlik - Services Page Stylesheet (our-services.css)
   Contains styles specific to our-services.html (Page Banner, Detailed Grid, Process)
   ========================================================================== */

/* ==========================================
   1. PAGE BANNER (HERO / BREADCRUMB)
   ========================================== */
.page-banner {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #153e68 100%);
    padding: 60px 0;
    color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 30%, rgba(35, 155, 65, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.page-banner-content {
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbdbee;
    margin-bottom: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: #cbdbee;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb .current {
    color: var(--accent-yellow);
    font-weight: 600;
}

.page-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 15px;
    color: #cbdbee;
    line-height: 1.6;
    font-weight: 400;
}


/* ==========================================
   2. DETAILED SERVICES SECTION
   ========================================== */
.services-detail-section {
    padding: 70px 0 30px 0;
    background-color: #fbfcfd;
    width: 100%;
}

.services-detail-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-block;
    background-color: rgba(35, 155, 65, 0.1);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-main-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 3-Card Detailed Grid */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 26px;
    margin-bottom: 40px;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(11, 49, 84, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(11, 49, 84, 0.12);
    border-color: #d6e2ee;
}

.service-card-media {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-detail-card:hover .service-card-media img {
    transform: scale(1.06);
}

.service-card-badge-icon {
    position: absolute;
    top: 155px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.service-card-badge-icon.icon-blue {
    background-color: var(--brand-blue);
}

.service-card-badge-icon.icon-green {
    background-color: var(--brand-green);
}

.service-card-badge-icon.icon-yellow {
    background-color: var(--accent-yellow);
    color: #111111;
}

.service-card-badge-icon.icon-purple {
    background-color: #8e44ad;
}

.service-card-badge-icon.icon-light-green {
    background-color: #2ecc71;
}

.service-card-body {
    padding: 38px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.service-card-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex-grow: 1;
    border-top: 1px solid #f1f4f8;
    padding-top: 16px;
}

.service-features-list li {
    font-size: 12px;
    color: #444444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.service-features-list li i {
    color: var(--brand-green);
    font-size: 11px;
    flex-shrink: 0;
    background: rgba(35, 155, 65, 0.12);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-cta {
    margin-top: auto;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 42px;
    background-color: #f0f6fc;
    color: var(--brand-blue);
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #d4e2f0;
    transition: all 0.25s ease;
}

.service-btn:hover {
    background-color: var(--brand-green);
    color: #ffffff;
    border-color: var(--brand-green);
    box-shadow: 0 4px 12px rgba(35, 155, 65, 0.25);
}

.service-btn i {
    font-size: 15px;
}


/* ==========================================
   3. PROCESS SECTION
   ========================================== */
.process-section {
    padding: 70px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.process-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    background: #ffffff;
    border: 1px solid #eaf0f6;
    border-radius: 14px;
    padding: 35px 22px 25px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 49, 84, 0.08);
    border-color: var(--brand-blue);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background-color: var(--brand-green);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(35, 155, 65, 0.3);
}

.step-icon {
    font-size: 32px;
    color: var(--brand-blue);
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}


/* ==========================================
   4. RESPONSIVE SERVICES PAGE STYLES
   ========================================== */

/* Tablet Screens (<= 1024px) */
@media (max-width: 1024px) {
    .page-banner-container,
    .services-detail-container,
    .process-container {
        margin: 0 3%;
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .page-banner {
        padding: 45px 0;
    }
    
    .page-banner-container,
    .services-detail-container,
    .process-container {
        margin: 0 16px;
    }
    
    .page-banner-title {
        font-size: 28px;
    }
    
    .section-main-title {
        font-size: 26px;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 30px auto;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        gap: 30px;
    }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    .page-banner {
        padding: 35px 0;
    }
    
    .page-banner-container,
    .services-detail-container,
    .process-container {
        margin: 0 10px;
    }
    
    .page-banner-title {
        font-size: 24px;
    }
    
    .section-main-title {
        font-size: 22px;
    }
    
    .service-card-media {
        height: 180px;
    }
}
