/* ===== SERVİS SAYFALARI — servis.css ===== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(145deg, var(--navy) 0%, #0f2251 55%, var(--navy-light) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb svg {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.breadcrumb span {
    color: var(--gold-light);
    font-weight: 500;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold-light);
}

.page-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.page-hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Intro */
.sp-intro {
    background: var(--off-white);
    padding: 90px 0;
}

.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
}

.sp-intro-text .section-tag {
    margin-bottom: 14px;
    display: inline-flex;
}

.sp-intro-text .section-title {
    margin-bottom: 20px;
}

.sp-intro-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sp-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.sp-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.sp-stat-card {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xl);
}

.sp-stat {
    text-align: center;
}

.sp-stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.sp-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.sp-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.12);
}

.sp-info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.sp-info-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8a6b10;
}

.sp-info-box strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 6px;
}

.sp-info-box p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sp-cta-btn {
    font-size: 14px;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13,27,62,0.25);
}

.sp-cta-btn:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, #243d7a 100%);
    color: var(--white);
    transform: translateY(-1px);
}

/* Services Detail */
.sp-services {
    background: var(--white);
    padding: 90px 0;
}

.sp-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-detail-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.sp-detail-card:hover {
    border-color: rgba(201,162,39,0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--white);
}

.sp-detail-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.sp-detail-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sp-detail-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.sp-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.sp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* Process */
.sp-process {
    background: var(--off-white);
    padding: 90px 0;
}

.sp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sp-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
}

.sp-step:hover {
    border-color: rgba(201,162,39,0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sp-step-num {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.sp-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.sp-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.sp-step-arrow {
    color: rgba(201,162,39,0.5);
    flex-shrink: 0;
    padding: 0 8px;
}

/* CTA */
.sp-cta {
    background: var(--white);
    padding: 90px 0;
}

.sp-cta-box {
    position: relative;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sp-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.sp-cta-content {
    position: relative;
    z-index: 2;
}

.sp-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sp-cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

.sp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: var(--white);
    transform: translateY(-2px);
}

/* Other Services */
.sp-other {
    background: var(--off-white);
    padding: 90px 0;
}

.sp-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sp-other-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.sp-other-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: var(--navy);
}

.sp-other-icon {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    transition: all 0.25s ease;
}

.sp-other-card:hover .sp-other-icon {
    background: var(--gold-pale);
    color: #8a6b10;
}

.sp-other-arrow {
    margin-left: auto;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.sp-other-card:hover .sp-other-arrow {
    transform: translateX(4px);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .sp-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sp-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 80px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .sp-detail-grid {
        grid-template-columns: 1fr;
    }

    .sp-steps {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .sp-step {
        max-width: 100%;
    }

    .sp-step-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    .sp-cta-box {
        padding: 48px 28px;
    }

    .sp-cta-content h2 {
        font-size: 28px;
    }

    .sp-other-grid {
        grid-template-columns: 1fr 1fr;
    }
}
