/* Hizmet Sayfaları CSS */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    color: var(--white-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-icon {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Service Description Section */
.service-description-section {
    padding: 80px 0;
}

.service-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.service-image-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image-main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.service-image-main:hover img {
    transform: scale(1.05);
}

.service-image-decoration {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid var(--hizmet-renk);
    border-radius: 10px;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.service-icon-bg {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hizmet-renk-acik);
    border-radius: 10px;
}

.service-icon-bg i {
    font-size: 120px;
    color: var(--hizmet-renk);
}

.service-description {
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--hizmet-renk);
    border-radius: 2px;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-icon {
    width: 60px;
    height: 60px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--hizmet-renk);
}

.meta-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-700);
}

.meta-content p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

/* Types Section */
.types-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.type-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--hizmet-renk);
    z-index: -1;
}

.type-card:hover {
    transform: translateY(-10px);
}

.type-icon {
    width: 80px;
    height: 80px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--hizmet-renk);
    margin-bottom: 1.5rem;
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.type-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.type-features li i {
    color: var(--hizmet-renk);
    font-size: 1rem;
}

.combination-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-left: 5px solid var(--hizmet-renk);
}

.combination-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--hizmet-renk);
}

.combination-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.combination-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 90%;
}

.combination-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--hizmet-renk);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
}

.advantage-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--hizmet-renk);
    margin: 0 auto 1.5rem;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background-color: var(--hizmet-renk-acik);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 15px;
    left: 47px;
    width: 10px;
    height: 10px;
    background-color: var(--hizmet-renk);
    border-radius: 50%;
    z-index: 1;
}

.timeline-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--hizmet-renk);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
}

.timeline-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    transform: rotate(45deg);
}

.timeline-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--hizmet-renk);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
    padding-right: 60px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

/* Care Section */
.care-section {
    padding: 80px 0;
}

.care-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.care-icon {
    width: 70px;
    height: 70px;
    background-color: var(--hizmet-renk-acik);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    color: var(--hizmet-renk);
    margin-bottom: 1.5rem;
}

.care-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.care-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.care-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.care-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.care-list li i {
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    background-color: var(--white-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--hizmet-renk);
    background-color: var(--white-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-300);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--hizmet-renk);
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--white-color);
    color: var(--hizmet-renk);
    border: none;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .service-icon-bg {
        width: 250px;
        height: 250px;
        font-size: 7rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 100px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-icon-wrapper {
        margin-top: 2rem;
    }
    
    .service-image-wrapper {
        margin-bottom: 3rem;
    }
    
    .service-description {
        padding: 0;
    }
    
    .combination-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-item {
        min-width: auto;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 27px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-icon {
        width: 180px;
        height: 180px;
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-icon-bg {
        width: 200px;
        height: 200px;
        font-size: 6rem;
    }
    
    .type-card, 
    .combination-card, 
    .advantage-card, 
    .care-card {
        padding: 1.5rem;
    }
    
    .type-icon, 
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .type-title, 
    .advantage-title, 
    .care-title {
        font-size: 1.25rem;
    }
    
    .combination-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .combination-title {
        font-size: 1.5rem;
    }
    
    .combination-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .description-content {
        font-size: 1rem;
    }
    
    .meta-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .meta-icon {
        margin: 0 auto;
    }
    
    .process-timeline {
        padding: 1rem 0;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -15px;
        right: 15px;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
} 