/* Hizmet Detay Sayfası Stilleri */ .service-detail-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; } .service-main-content { background-color: white; padding: 30px; border-radius: 8px; box-shadow: var(--shadow); } .service-header { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--light-gray); } .service-header h2 { color: var(--dark-color); margin-bottom: 10px; font-size: 2rem; } .service-subtitle { color: var(--gray-color); font-size: 1.1rem; font-style: italic; } .service-image-large { margin-bottom: 30px; border-radius: 8px; overflow: hidden; } .service-image-large img { width: 100%; height: 400px; object-fit: cover; transition: var(--transition); } .service-image-large img:hover { transform: scale(1.02); } .service-description { margin-bottom: 40px; } .service-description h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.5rem; } .service-description p { line-height: 1.8; margin-bottom: 15px; color: var(--dark-color); } .service-features { margin-bottom: 40px; } .service-features h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .feature-item { text-align: center; padding: 25px 20px; background-color: var(--light-color); border-radius: 8px; transition: var(--transition); border: 1px solid transparent; } .feature-item:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: var(--shadow); } .feature-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; } .feature-item h4 { margin-bottom: 10px; color: var(--dark-color); } .service-types { margin-bottom: 40px; } .service-types h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; } .type-category { margin-bottom: 25px; padding: 20px; background-color: var(--light-color); border-radius: 8px; border-left: 4px solid var(--primary-color); } .type-category h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--dark-color); font-size: 1.2rem; } .type-category h4 i { color: var(--accent-color); } .type-category ul { list-style-type: none; padding-left: 0; } .type-category li { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px dashed var(--light-gray); } .type-category li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .type-category strong { color: var(--primary-color); } .service-process { margin-bottom: 40px; } .service-process h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; } .process-steps { position: relative; padding-left: 30px; } .process-steps::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background-color: var(--primary-color); opacity: 0.3; } .step { display: flex; margin-bottom: 30px; position: relative; } .step:last-child { margin-bottom: 0; } .step-number { width: 50px; height: 50px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; margin-right: 20px; flex-shrink: 0; z-index: 1; } .step-content { flex: 1; padding-top: 10px; } .step-content h4 { margin-bottom: 8px; color: var(--dark-color); } .service-benefits { margin-bottom: 40px; } .service-benefits h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; } .benefits-list { list-style-type: none; padding-left: 0; } .benefits-list li { margin-bottom: 15px; padding: 15px; background-color: var(--light-color); border-radius: 8px; display: flex; align-items: flex-start; gap: 15px; border-left: 4px solid var(--accent-color); } .benefits-list i { color: var(--accent-color); font-size: 1.2rem; margin-top: 2px; } .benefits-list strong { color: var(--primary-color); } /* Sidebar Styles */ .service-sidebar { display: flex; flex-direction: column; gap: 30px; } .sidebar-widget { background-color: white; padding: 25px; border-radius: 8px; box-shadow: var(--shadow); } .sidebar-widget h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; padding-bottom: 10px; border-bottom: 2px solid var(--light-gray); } .sidebar-links { list-style-type: none; padding-left: 0; } .sidebar-links li { margin-bottom: 10px; } .sidebar-links a { display: flex; align-items: center; gap: 10px; padding: 12px 15px; background-color: var(--light-color); border-radius: 4px; transition: var(--transition); color: var(--dark-color); } .sidebar-links a:hover { background-color: var(--primary-color); color: white; padding-left: 20px; } .sidebar-links a i { width: 20px; text-align: center; } .faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--light-gray); } .faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; } .faq-item h4 { color: var(--dark-color); margin-bottom: 8px; font-size: 1rem; } .faq-item p { color: var(--gray-color); font-size: 0.9rem; line-height: 1.6; } /* About Page Styles */ .about-content { background-color: white; padding: 40px; border-radius: 8px; box-shadow: var(--shadow); } .about-header { text-align: center; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 2px solid var(--light-gray); } .about-header h2 { color: var(--dark-color); margin-bottom: 15px; font-size: 2.2rem; } .subtitle { color: var(--gray-color); font-size: 1.2rem; font-style: italic; } .about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 50px; } .about-text h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.5rem; } .about-text p { line-height: 1.8; margin-bottom: 25px; color: var(--dark-color); } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; } .value-item { text-align: center; padding: 25px 20px; background-color: var(--light-color); border-radius: 8px; transition: var(--transition); } .value-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .value-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; } .value-item h4 { margin-bottom: 10px; color: var(--dark-color); } .about-image { text-align: center; } .about-image img { width: 100%; max-width: 300px; margin-bottom: 30px; border-radius: 8px; box-shadow: var(--shadow); } .about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .stat-item { text-align: center; padding: 20px; background-color: var(--light-color); border-radius: 8px; } .stat-item h3 { color: var(--primary-color); font-size: 2rem; margin-bottom: 5px; } .about-history { margin-bottom: 50px; } .about-history h3 { color: var(--primary-color); margin-bottom: 30px; font-size: 1.5rem; } .timeline { position: relative; padding-left: 30px; } .timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background-color: var(--primary-color); } .timeline-item { display: flex; margin-bottom: 40px; position: relative; } .timeline-item:last-child { margin-bottom: 0; } .timeline-year { width: 70px; height: 70px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; margin-right: 20px; flex-shrink: 0; z-index: 1; } .timeline-content { flex: 1; padding: 20px; background-color: var(--light-color); border-radius: 8px; border-left: 4px solid var(--accent-color); } .timeline-content h4 { color: var(--dark-color); margin-bottom: 10px; font-size: 1.2rem; } .team-section { margin-bottom: 50px; } .team-section h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.5rem; } .team-section p { margin-bottom: 30px; line-height: 1.8; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .team-member { text-align: center; padding: 30px 20px; background-color: var(--light-color); border-radius: 8px; transition: var(--transition); } .team-member:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .member-image { width: 100px; height: 100px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2.5rem; } .team-member h4 { margin-bottom: 10px; color: var(--dark-color); } .certificates h3 { color: var(--primary-color); margin-bottom: 30px; font-size: 1.5rem; } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .cert-item { text-align: center; padding: 25px 20px; background-color: var(--light-color); border-radius: 8px; transition: var(--transition); } .cert-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .cert-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; } .cert-item h4 { margin-bottom: 5px; color: var(--dark-color); } /* Responsive Styles */ @media (max-width: 992px) { .service-detail-container, .about-grid { grid-template-columns: 1fr; } .about-content, .service-main-content { padding: 25px; } .service-image-large img { height: 300px; } } @media (max-width: 768px) { .about-content, .service-main-content { padding: 20px; } .service-header h2, .about-header h2 { font-size: 1.8rem; } .features-grid, .values-grid, .team-grid, .cert-grid { grid-template-columns: 1fr; } .process-steps { padding-left: 0; } .process-steps::before { display: none; } .step { flex-direction: column; text-align: center; } .step-number { margin-right: 0; margin-bottom: 15px; } .timeline { padding-left: 0; } .timeline::before { display: none; } .timeline-item { flex-direction: column; text-align: center; } .timeline-year { margin-right: 0; margin-bottom: 15px; } } @media (max-width: 480px) { .about-content, .service-main-content { padding: 15px; } .service-header h2, .about-header h2 { font-size: 1.5rem; } .about-stats { grid-template-columns: 1fr; } .benefits-list li { flex-direction: column; text-align: center; gap: 10px; } }