/* Service Pages Styles - Yaşar Bilişim */

/* Temel Metin Stilleri - Index Sayfasıyla Uyumlu Renkler */
:root {
    --primary-color: #0F52BA; /* Profesyonel koyu mavi */
    --primary-rgb: 15, 82, 186;
    --secondary-color: #00C2FF; /* Parlak mavi */
    --accent-color: #00FF9D; /* Parlak yeşil-turkuaz */
    --tertiary-color: #FFD700; /* Altın sarısı */
    --footer-bg: #0A192F; /* Koyu lacivert */
    --dark-color: #0a192f; /* Koyu lacivert arka plan */
    --light-color: #172a45; /* Orta lacivert arka plan */
    --gray-color: #495670; /* Mavi-gri ton */
    --text-primary: #ccd6f6; /* Açık gri-mavi metin */
    --text-secondary: #8892b0; /* Orta gri-mavi metin */
    --heading-color: #ffffff; /* Başlıklar için beyaz */
    --text-color: #ccd6f6; /* Açık gri-mavi metin */
    --success-color: #00FF9D; /* Parlak yeşil-turkuaz */
    --info-color: #00C2FF; /* Parlak mavi */
    --warning-color: #FFD700; /* Altın sarısı */
    --danger-color: #FF457D; /* Parlak pembe */
    --card-bg: rgba(255, 255, 255, 0.95); /* Beyaz kart arka planı */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Kart gölgesi */
    --neon-glow: 0 0 10px rgba(0, 194, 255, 0.8), 0 0 20px rgba(0, 194, 255, 0.6), 0 0 30px rgba(0, 194, 255, 0.4); /* Neon efekt */
}

p, span, li, .text-content {
    color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

/* Hero Section Styles */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10,25,47,0.9) 0%, rgba(15,82,186,0.8) 100%);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: var(--text-secondary);
}

.btn-hero {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-shape-1, .hero-shape-2 {
    position: absolute;
    background: rgba(0,229,255,0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 50px;
    right: 50px;
    transform: rotate(45deg);
}

/* Service Overview Styles */
.service-overview {
    margin-bottom: 50px;
}

.section-title-sm {
    margin-bottom: 20px;
}

.section-title-sm .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.service-stats {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px;
    background: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-number {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

.service-overview-image {
    position: relative;
    padding: 10px;
}

.image-shape-1, .image-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(0,229,255,0.1);
    z-index: -1;
}

.image-shape-1 {
    top: -20px;
    left: -20px;
}

.image-shape-2 {
    bottom: -20px;
    right: -20px;
    transform: rotate(45deg);
}

/* Feature Cards */
.feature-card {
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-content p {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(0,229,255,0.05) 0%, rgba(0,229,255,0) 100%);
    z-index: 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover .hover-effect {
    opacity: 1;
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card h4 {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-row {
    display: flex;
    margin-bottom: 30px;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.process-number {
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-content {
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.process-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-line {
    position: absolute;
    top: 20px;
    right: 0;
    width: calc(100% - 30px);
    height: 2px;
    background: rgba(0,229,255,0.2);
}

.process-step:last-child .process-line {
    display: none;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
    margin-bottom: 15px;
    border: none;
    background-color: transparent;
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.custom-accordion .accordion-button {
    padding: 20px;
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.98), rgba(23, 42, 69, 0.95));
    text-shadow: 0 0 8px var(--secondary-color);
}

.custom-accordion .accordion-button:focus {
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
    outline: none;
    border: none;
}

.custom-accordion .accordion-button::after {
    background-size: 16px;
}

.custom-accordion .accordion-button i {
    margin-right: 10px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.custom-accordion .accordion-body {
    padding: 20px;
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.9), rgba(23, 42, 69, 0.85));
    border-top: 1px solid rgba(0, 194, 255, 0.2);
}

.custom-accordion .accordion-body p {
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 400;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.form-group label i:root {
    --primary-color: #0F52BA;
    --secondary-color: #00C2FF;
    --accent-color: #00FF9D;
    --tertiary-color: #FF00E4;
    --dark-bg: #0a1128;
    --light-bg: #f8f9fa;
    --text-primary: #e9ecef;
    --text-secondary: #ced4da;
    --text-dark: #212529;
    --transition: all 0.4s ease;
    --neon-glow: 0 0 10px rgba(0, 194, 255, 0.8), 0 0 20px rgba(0, 194, 255, 0.6), 0 0 30px rgba(0, 194, 255, 0.4);
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

textarea.form-control {
    height: auto;
}

.btn-contact {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.btn-contact:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.service-list ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-list ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.service-list ul li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    display: flex;
    margin-bottom: 15px;
}

.contact-info ul li:last-child {
    margin-bottom: 0;
}

.contact-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.contact-info ul li span {
    flex: 1;
}

.contact-info ul li a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info ul li a:hover {
    color: var(--primary-color);
}

.contact-info .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(45deg, rgba(0,229,255,0.1) 0%, rgba(0,229,255,0.05) 100%);
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
}

.cta-box h3 {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-hero {
        padding: 150px 0 80px;
    }
    
    .process-row {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .process-line {
        display: none;
    }
    
    .service-sidebar {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 767px) {
    .service-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .hero-shape-1, .hero-shape-2 {
        display: none;
    }
}

/* Animation Styles */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Modern Service Card Styles */
.service-card-modern {
    background-color: var(--dark-color);
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(23, 42, 69, 0.9));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary-color);
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.2);
}

.service-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: var(--neon-glow);
}

.service-icon-modern i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.service-title-modern {
    color: var(--heading-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px var(--secondary-color);
}

.service-desc-modern {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    background-color: rgba(0, 194, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    transition: all 0.4s ease;
}

.feature-item-modern:hover {
    background-color: rgba(0, 194, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon-modern {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-text-modern {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Özellik Listesi Stilleri */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 194, 255, 0.5));
}

.card-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}
