/* === HIZMET_DETAY_STYLE.CSS (Detailed Service Pages Styling) === */

/* Hero Section Styling */
.hizmet-hero-section {
    padding: 80px 0;
    background-color: var(--clr-card-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hizmet-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(var(--clr-primary-rgb), 0.1) 0%, transparent 40%),
                      radial-gradient(circle at 75% 75%, rgba(var(--clr-primary-rgb), 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hizmet-hero-section h1 {
    font-size: var(--h1-size);
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--clr-white);
}

.hizmet-hero-section .highlight-koyu {
    color: var(--clr-primary);
}

.hizmet-hero-section p {
    font-size: var(--p-size);
    color: var(--clr-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Description Section */
.hizmet-aciklama-section {
    padding: 80px 0;
    background-color: var(--clr-bg);
}

.hizmet-aciklama-section .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hizmet-aciklama-section .col-content {
    flex: 1.2;
}

.hizmet-aciklama-section .col-image {
    flex: 0.8;
}

.hizmet-aciklama-section h2 {
    font-size: var(--h2-size);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.hizmet-aciklama-section h3 {
    font-size: var(--h3-size);
    color: var(--clr-primary);
    margin: 2rem 0 1rem;
}

.hizmet-aciklama-section p {
    color: var(--clr-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hizmet-aciklama-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmet-aciklama-section .feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.hizmet-aciklama-section .feature-list li i {
    color: var(--clr-primary);
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

.hizmet-aciklama-section .rounded-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow-dark-strong);
}

/* Features Section */
.hizmet-ozellikler-section {
    padding: 80px 0;
    background-color: var(--clr-card-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--clr-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--box-shadow-dark-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark-strong);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: var(--h3-size);
    color: var(--clr-white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--clr-text-secondary);
    line-height: 1.7;
}

/* Process Timeline */
.hizmet-surec-section {
    padding: 80px 0;
    background-color: var(--clr-bg);
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--clr-primary);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--box-shadow-dark-soft);
}

.step-content {
    width: 45%;
    background-color: var(--clr-card-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-dark-soft);
}

.step-content h3 {
    font-size: var(--h3-size);
    color: var(--clr-white);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--clr-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--clr-card-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background-color: var(--clr-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-dark-soft);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-details {
    padding: 20px;
}

.portfolio-details h3 {
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.portfolio-details p {
    color: var(--clr-text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.portfolio-category {
    display: inline-block;
    background-color: rgba(var(--clr-primary-rgb), 0.1);
    color: var(--clr-primary);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--clr-bg);
}

.testimonials-slider {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--clr-card-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-dark-soft);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(var(--clr-primary-rgb), 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: var(--clr-text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 5px;
}

.author-company {
    color: var(--clr-primary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--clr-card-bg);
}

.faq-accordion {
    margin-top: 50px;
}

.faq-item {
    background-color: var(--clr-bg);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--clr-bg);
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(var(--clr-primary-rgb), 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--clr-white);
    margin: 0;
}

.faq-question i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    color: var(--clr-text-secondary);
    padding-bottom: 20px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--clr-bg);
    text-align: center;
}

.cta-icon {
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: var(--h2-size);
    color: var(--clr-white);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--clr-text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hizmet-aciklama-section .row {
        flex-direction: column;
    }
    
    .hizmet-aciklama-section .col-content,
    .hizmet-aciklama-section .col-image {
        flex: 1;
        width: 100%;
    }
    
    .features-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step,
    .process-step:nth-child(odd) {
        flex-direction: row;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-content {
        width: auto;
        margin-left: 60px;
        flex: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hizmet-hero-section,
    .hizmet-aciklama-section,
    .hizmet-ozellikler-section,
    .hizmet-surec-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .hizmet-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hizmet-hero-section,
    .hizmet-aciklama-section,
    .hizmet-ozellikler-section,
    .hizmet-surec-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .hizmet-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hizmet-aciklama-section h2 {
        font-size: 1.6rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 15px;
    }
    
    .step-content {
        margin-left: 0;
        width: 100%;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
} 