/* ============================================================
   Service Detail Page - Premium UI/UX Design
   Kapsamlı, profesyonel ve modern tasarım
   ============================================================ */

:root {
    --sd-accent: #c9a227;
    --sd-accent-light: #e8d48a;
    --sd-dark: #0a0a0a;
    --sd-light: #fafaf8;
    --sd-gray: #6b6b6b;
}

/* ============================================================
   Hero Section V2
   ============================================================ */

.service-detail-hero-v2 {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 100px;
    background: var(--sd-dark);
    overflow: hidden;
}

.service-detail-hero-v2[style*="--hero-bg"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.service-detail-hero-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.service-detail-hero-v2__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.service-detail-hero-v2__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.service-detail-hero-v2__back:hover {
    color: var(--sd-accent);
}

.service-detail-hero-v2__icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--sd-accent) 0%, var(--sd-accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.service-detail-hero-v2__icon i {
    font-size: 36px;
    color: #fff;
}

.service-detail-hero-v2__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sd-accent);
    margin-bottom: 16px;
}

.service-detail-hero-v2__title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.service-detail-hero-v2__tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0 0 24px;
}

.service-detail-hero-v2__description {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   Features Section
   ============================================================ */

.service-features-section {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: var(--sd-light);
}

.service-features-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.service-features-section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.service-features-section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sd-accent);
    margin-bottom: 12px;
}

.service-features-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0;
    color: var(--sd-dark);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.service-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--sd-accent);
    transition: all 0.4s ease;
}

.service-feature-card:hover .service-feature-card__icon {
    background: linear-gradient(135deg, var(--sd-accent) 0%, var(--sd-accent-light) 100%);
    color: #fff;
}

.service-feature-card__icon i {
    font-size: 28px;
}

.service-feature-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-feature-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--sd-dark);
}

.service-feature-card__description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sd-gray);
    margin: 0;
}

/* ============================================================
   Content Section
   ============================================================ */

.service-content-section {
    padding: clamp(60px, 10vw, 100px) 24px;
    background: #fff;
}

.service-content-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.service-content-section__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.service-content-prose {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
}

.service-content-prose h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 48px 0 20px;
    color: var(--sd-dark);
}

.service-content-prose h2:first-child {
    margin-top: 0;
}

.service-content-prose h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--sd-dark);
}

.service-content-prose h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--sd-dark);
}

.service-content-prose p {
    margin: 0 0 20px;
}

.service-content-prose ul,
.service-content-prose ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.service-content-prose li {
    margin-bottom: 10px;
}

.service-content-prose .lead {
    font-size: 20px;
    color: var(--sd-gray);
    border-left: 4px solid var(--sd-accent);
    padding-left: 24px;
    margin-bottom: 32px;
}

/* Sidebar */
.service-sidebar-card {
    background: var(--sd-light);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
}

.service-sidebar-card--primary {
    background: linear-gradient(135deg, var(--sd-dark) 0%, #1a1a1a 100%);
    color: #fff;
}

.service-sidebar-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
}

.service-sidebar-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--sd-dark);
}

.service-sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    opacity: 0.8;
}

.service-sidebar-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--sd-accent) 0%, var(--sd-accent-light) 100%);
    color: var(--sd-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.service-sidebar-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4);
}

.service-sidebar-card__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-sidebar-card__phone:hover {
    color: #fff;
}

.service-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-sidebar-list li {
    margin-bottom: 8px;
}

.service-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    color: var(--sd-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-sidebar-list a:hover {
    background: var(--sd-accent);
    color: #fff;
}

.service-sidebar-list a i {
    font-size: 18px;
    color: var(--sd-accent);
}

.service-sidebar-list a:hover i {
    color: #fff;
}

.service-sidebar-list a span {
    flex: 1;
}

.service-sidebar-list a svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.service-sidebar-list a:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   Process Section
   ============================================================ */

.service-process-section {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: linear-gradient(180deg, var(--sd-light) 0%, #fff 100%);
}

.service-process-section__container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-process-section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.service-process-section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sd-accent);
    margin-bottom: 12px;
}

.service-process-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--sd-dark);
}

.service-process-section__description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--sd-gray);
    margin: 0;
}

.service-process-timeline {
    position: relative;
}

.service-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sd-accent) 0%, rgba(201, 162, 39, 0.2) 100%);
}

.service-process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.service-process-step:last-child {
    margin-bottom: 0;
}

.service-process-step__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--sd-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.service-process-step__number span {
    font-size: 24px;
    font-weight: 700;
    color: var(--sd-accent);
}

.service-process-step__content {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.service-process-step__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.service-process-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-accent);
}

.service-process-step__icon i {
    font-size: 22px;
}

.service-process-step__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--sd-dark);
    flex: 1;
}

.service-process-step__duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--sd-light);
    border-radius: 100px;
    font-size: 13px;
    color: var(--sd-gray);
}

.service-process-step__description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sd-gray);
    margin: 0;
}

/* ============================================================
   Related Projects Section
   ============================================================ */

.service-projects-section {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: var(--sd-dark);
}

.service-projects-section__container {
    max-width: 1280px;
    margin: 0 auto;
}

.service-projects-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.service-projects-section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sd-accent);
    margin-bottom: 12px;
}

.service-projects-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.service-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
}

.service-project-card__image {
    position: absolute;
    inset: 0;
}

.service-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-project-card:hover .service-project-card__image img {
    transform: scale(1.08);
}

.service-project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.service-project-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
}

.service-project-card__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    color: antiquewhite;
}

.service-project-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.service-projects-section__action {
    text-align: center;
    margin-top: 48px;
}

.service-projects-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.service-projects-section__btn:hover {
    background: var(--sd-accent);
    border-color: var(--sd-accent);
}

/* ============================================================
   FAQ Section
   ============================================================ */

.service-faq-section {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: #fff;
}

.service-faq-section__container {
    max-width: 800px;
    margin: 0 auto;
}

.service-faq-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.service-faq-section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sd-accent);
    margin-bottom: 12px;
}

.service-faq-section__title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 600;
    margin: 0;
    color: var(--sd-dark);
}

.service-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.service-faq-item__question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--sd-dark);
}

.service-faq-item__question svg {
    flex-shrink: 0;
    color: var(--sd-accent);
    transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-item__question svg {
    transform: rotate(45deg);
}

.service-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-faq-item.active .service-faq-item__answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.service-faq-item__answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sd-gray);
    margin: 0;
}

/* ============================================================
   CTA Section
   ============================================================ */

.service-cta-section {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: linear-gradient(135deg, var(--sd-light) 0%, #f0ede5 100%);
}

.service-cta-section__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--sd-dark);
}

.service-cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--sd-gray);
    margin: 0 0 40px;
}

.service-cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cta-section__btn--primary {
    background: linear-gradient(135deg, var(--sd-accent) 0%, var(--sd-accent-light) 100%);
    color: var(--sd-dark);
}

.service-cta-section__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.35);
}

.service-cta-section__btn--secondary {
    background: var(--sd-dark);
    color: #fff;
}

.service-cta-section__btn--secondary:hover {
    background: #1a1a1a;
}

/* ============================================================
   Responsive Design
   ============================================================ */

@media (max-width: 1100px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-hero-v2 {
        min-height: 70vh;
        padding: 140px 20px 80px;
    }
    
    .service-detail-hero-v2__icon {
        width: 64px;
        height: 64px;
    }
    
    .service-detail-hero-v2__icon i {
        font-size: 28px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-process-timeline::before {
        left: 24px;
    }
    
    .service-process-step {
        gap: 20px;
    }
    
    .service-process-step__number {
        width: 48px;
        height: 48px;
    }
    
    .service-process-step__number span {
        font-size: 18px;
    }
    
    .service-process-step__content {
        padding: 24px;
    }
    
    .service-process-step__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .service-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .service-faq-item__question span {
        font-size: 16px;
    }
    
    .service-cta-section__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-cta-section__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-detail-hero-v2 {
        padding: 120px 16px 60px;
    }
    
    .service-process-step__icon {
        display: none;
    }
}
