/* ========================================
   SERVICE DETAIL PAGE STYLES
   ======================================== */

.service-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d5a 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-image, url('../images/katalog/hero/nova-teknik-isletme.png'));
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,27,62,0.95) 0%, rgba(13,27,62,0.7) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    width: 100%;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.service-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-base);
}

.service-breadcrumb a:hover {
    color: var(--secondary-teal);
}

.service-breadcrumb span {
    color: var(--secondary-teal);
}

.service-breadcrumb i {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-title i {
    color: var(--secondary-teal);
    margin-right: 20px;
}

.service-hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.8;
}

/* Service Detail Content */
.service-detail {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8,145,178,0.03));
    pointer-events: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.service-main h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.service-main p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.service-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-teal), #0e7490);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.service-feature-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.service-list li {
    margin-bottom: 12px;
}

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius-md);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-list a:hover,
.service-list a.active {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateX(5px);
}

.service-list a i {
    font-size: 0.8rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-dark), #1a2d5a);
    color: var(--white);
    text-align: center;
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
}

.contact-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.contact-card .phone-big {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-teal);
    display: block;
    margin-bottom: 20px;
}

/* Service Gallery */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-base);
}

.service-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* CTA Banner */
.service-cta {
    background: linear-gradient(135deg, var(--secondary-teal), #0e7490);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
    .service-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    .service-hero-title {
        font-size: 2rem;
    }
    .service-gallery {
        grid-template-columns: 1fr;
    }
    .service-hero-title i {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }
}
