/* =============================================
   Hizmet Detay Sayfası Stilleri
   ============================================= */

/* Breadcrumb */
.hd-breadcrumb {
    padding: 100px 0 0;
    background: var(--white);
}

.hd-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gray);
}

.hd-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.hd-breadcrumb a:hover {
    color: var(--fuchsia);
}

.hd-breadcrumb span {
    color: rgba(0, 0, 0, 0.2);
}

.hd-breadcrumb .current {
    color: var(--dark);
    font-weight: 500;
}

/* Hero */
.hd-hero {
    padding: 60px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hd-hero-bg {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hd-hero-content {
    max-width: 720px;
}

.hd-hero-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    color: var(--fuchsia);
    border-radius: 20px;
    margin-bottom: 28px;
}

.hd-hero .section-tag {
    margin-bottom: 16px;
}

.hd-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hd-title em {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hd-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray);
    max-width: 600px;
}

/* Intro */
.hd-intro {
    padding: 60px 0 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hd-intro-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.hd-intro-text {
    flex: 1;
}

.hd-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 400;
}

.hd-intro-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 40px;
    background: var(--gray-light);
    border-radius: 20px;
    gap: 6px;
}

.hd-badge-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fuchsia);
}

.hd-badge-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Content Blocks */
.hd-content {
    padding: 40px 0 100px;
}

.hd-block {
    display: flex;
    gap: 48px;
    padding: 56px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hd-block:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hd-block-num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    width: 80px;
}

.hd-block-body {
    flex: 1;
}

.hd-block-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fuchsia);
    background: rgba(233, 30, 99, 0.06);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hd-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hd-block h2 em {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hd-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.hd-block p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hd-hero {
        padding: 40px 0 60px;
    }

    .hd-intro-grid {
        flex-direction: column;
        gap: 32px;
    }

    .hd-intro-badge {
        align-self: flex-start;
    }

    .hd-block {
        flex-direction: column;
        gap: 16px;
        padding: 40px 0;
    }

    .hd-block-num {
        font-size: 2.5rem;
        width: auto;
    }
}
