/* Tekli Hizmet Sayfaları İçin Ek CSS Stilleri */
/* Bu kodları bolgesel-zayiflama-complete.css dosyasının SONUNA ekleyin */

/* Service Hero Section - Tekli hizmet sayfaları için özel hero */
.service-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-section h2:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.content-section p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-pink);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Body Areas Detailed */
.body-areas-detailed {
    margin: 40px 0;
}

.area-category {
    margin-bottom: 40px;
}

.area-category h3 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-category h3 i {
    color: var(--primary-pink);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.area-list .area-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.area-list .area-item:hover {
    background: var(--lavender);
    transform: translateX(5px);
}

.area-list .area-item i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    margin-top: 3px;
}

.area-list .area-item h4 {
    color: var(--primary-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.area-list .area-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Treatment Timeline */
.treatment-timeline {
    margin: 40px 0;
    position: relative;
}

.treatment-timeline:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    background: var(--white);
    border: 3px solid var(--primary-pink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-icon i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

.timeline-content h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-duration {
    background: var(--gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Suitability Grid */
.suitability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.suitable-card,
.unsuitable-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.suitable-card {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-left: 5px solid #4caf50;
}

.unsuitable-card {
    background: linear-gradient(135deg, #ffeaea, #fff5f5);
    border-left: 5px solid #f44336;
}

.suitable-card i {
    color: #4caf50;
    font-size: 2rem;
    margin-bottom: 15px;
}

.unsuitable-card i {
    color: #f44336;
    font-size: 2rem;
    margin-bottom: 15px;
}

.suitable-card h3,
.unsuitable-card h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.suitable-card ul,
.unsuitable-card ul {
    list-style: none;
}

.suitable-card ul li,
.unsuitable-card ul li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.suitable-card ul li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.unsuitable-card ul li:before {
    content: "✗";
    color: #f44336;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Results Timeline */
.results-timeline {
    margin: 40px 0;
}

.result-phase {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.phase-time {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.phase-content {
    flex: 1;
}

.phase-content h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.phase-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Ek Kartları */
.tech-specs-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.tech-specs-card h4 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
}

.related-services {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.related-services h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.related-services ul {
    list-style: none;
}

.related-services ul li {
    margin-bottom: 8px;
}

.related-services ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.related-services ul li a:hover {
    color: var(--primary-pink);
    padding-left: 10px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 15px;
    }
    
    .feature-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .treatment-timeline:before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-content:before {
        display: none;
    }
    
    .suitability-grid {
        grid-template-columns: 1fr;
    }
    
    .result-phase {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .phase-time {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .suitable-card,
    .unsuitable-card {
        padding: 20px;
    }
}
