/*
 * HİZMET DETAY STİLLERİ (page-hizmet.css)
 * Sadece hizmet.php şablonu için geçerli kodlar.
*/

.breadcrumb-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem 2rem 1rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: rgba(29, 32, 31, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: #1D201F;
}

.breadcrumb-separator {
    color: rgba(29, 32, 31, 0.4);
}

.breadcrumb-current {
    color: #1D201F;
    font-weight: 500;
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(29, 32, 31, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1D201F;
    color: #FBFAF8;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-cta:hover {
    background-color: rgba(29, 32, 31, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 32, 31, 0.2);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.content-section {
    background-color: #FBFAF8;
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.main-content h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

.main-content p {
    font-size: 1.1rem;
    color: rgba(29, 32, 31, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(29, 32, 31, 0.12);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.benefits-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
    margin: 2rem 0;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(29, 32, 31, 0.1);
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(29, 32, 31, 0.8);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    color: #1D201F;
    font-weight: 700;
    margin-right: 1rem;
}

.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #1D201F;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-text strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cta-box {
    background: #1D201F;
    color: #FBFAF8;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cta-box-button {
    display: inline-block;
    background: #FBFAF8;
    color: #1D201F;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-box-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 250, 248, 0.3);
}

.process-section {
    padding: 6rem 2rem;
    background: white;
}

.process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(29, 32, 31, 0.2);
    margin-bottom: 1rem;
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card-description {
    font-size: 0.95rem;
    color: rgba(29, 32, 31, 0.7);
    line-height: 1.6;
}

.final-cta-section {
    padding: 6rem 2rem;
    background: #1D201F;
    color: #FBFAF8;
    text-align: center;
}

.final-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #FBFAF8;
    border: 2px solid #FBFAF8;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.final-cta-button:hover {
    background: #FBFAF8;
    color: #1D201F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 250, 248, 0.3);
}

.final-cta-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .final-cta-buttons {
        flex-direction: column;
    }
}