/* ═══════════════════════════════════════════════════════
   SERVICES PAGE STYLES
   NextCore Theme - Hizmetlerimiz Sayfası Stilleri
═══════════════════════════════════════════════════════ */

:root {
    --services-primary: #2c9440;
    --services-primary-dark: #1e7a30;
    --services-primary-darker: #165a23;
    --services-accent: #82cb30;
    --services-accent-light: #a3e055;
    --services-white: #FFFFFF;
    --services-off-white: #F8FAF6;
    --services-light-green: #EFF7E8;
    --services-gray-50: #F9FAFB;
    --services-gray-100: #F3F4F6;
    --services-gray-200: #E5E7EB;
    --services-gray-300: #D1D5DB;
    --services-gray-500: #6B7280;
    --services-gray-600: #4B5563;
    --services-gray-700: #374151;
    --services-gray-800: #1F2937;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .services-container {
        padding: 0 20px;
    }
}

/* ═══════════════════════════════════════════════════════
   ANASAYFA — HİZMETLERİMİZ BÖLÜMÜ (tasarim/index.html ile aynı)
═══════════════════════════════════════════════════════ */
.services-section {
    position: relative;
    padding: 120px 0 140px;
    background: #FBF9F5;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(44, 148, 64, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(130, 203, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .services-bg-dots {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(44, 148, 64, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.7;
}

.services-section .services-bg-dots-2 {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, rgba(44, 148, 64, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.5;
}

.services-section .services-leaf {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    opacity: 0.025;
    pointer-events: none;
}

.services-section .services-leaf--1 {
    top: -60px; left: -80px;
    background: var(--primary);
}

.services-section .services-leaf--2 {
    bottom: -40px; right: -60px;
    background: var(--accent);
}

.services-section .services-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-section .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.services-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    color: var(--primary);
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.services-section .section-label .line {
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
}

.services-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.services-section .section-title .highlight {
    color: var(--primary);
}

.services-section .section-desc {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Kartlar — tasarim ile aynı */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-section .service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px 36px;
    border: 1px solid rgba(44, 148, 64, 0.06);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section .service-card::after {
    content: '';
    position: absolute;
    bottom: -60%; right: -40%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130, 203, 48, 0.06) 0%, transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(44, 148, 64, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(44, 148, 64, 0.12);
}

.services-section .service-card:hover::before { transform: scaleX(1); }
.services-section .service-card:hover::after { bottom: -40%; right: -20%; }

.services-section .service-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 52px;
    color: rgba(44, 148, 64, 0.04);
    line-height: 1;
    transition: color 0.4s ease;
    pointer-events: none;
}

.services-section .service-card:hover .service-number {
    color: rgba(44, 148, 64, 0.08);
}

.services-section .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section .service-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
}

.services-section .service-icon--1 {
    background: linear-gradient(135deg, #EFF7E8 0%, #E2F0D5 100%);
}
.services-section .service-icon--1 svg { color: var(--primary); }

.services-section .service-icon--2 {
    background: linear-gradient(135deg, #E8F4EF 0%, #D4EDE0 100%);
}
.services-section .service-icon--2 svg { color: #1a8a5a; }

.services-section .service-icon--3 {
    background: linear-gradient(135deg, #FFF8E8 0%, #FFF0CC 100%);
}
.services-section .service-icon--3 svg { color: #c4900a; }

.services-section .service-icon--4 {
    background: linear-gradient(135deg, #EBF3FF 0%, #D6E7FF 100%);
}
.services-section .service-icon--4 svg { color: #2b6cb0; }

.services-section .service-icon--5 {
    background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 100%);
}
.services-section .service-icon--5 svg { color: #c53030; }

.services-section .service-icon--6 {
    background: linear-gradient(135deg, #F0EEFF 0%, #E0DCFF 100%);
}
.services-section .service-icon--6 svg { color: #6b46c1; }

.services-section .service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.services-section .service-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.services-section .service-card:hover .service-title { color: var(--primary-dark); }

.services-section .service-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.services-section .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.services-section .service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-section .service-card:hover .service-link { gap: 12px; }
.services-section .service-card:hover .service-link svg { transform: translateX(2px); }

.services-section .service-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section .service-card:hover .service-link::after { width: 100%; }

.services-section .services-cta-wrap {
    text-align: center;
    margin-top: 64px;
}

.services-section .services-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 32px;
    min-width: 280px;
    max-width: 480px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    border-radius: 16px;
    border: 2px solid rgba(44, 148, 64, 0.25);
    box-shadow: 0 2px 12px rgba(44, 148, 64, 0.08);
    transition: all 0.35s ease;
}

.services-section .services-cta span {
    flex: 1;
    min-width: 0;
}

.services-section .services-cta svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.services-section .services-cta:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(44, 148, 64, 0.25);
}

.services-section .services-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-section { padding: 80px 0 100px; }
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-section { padding: 64px 0 80px; }
    .services-section .section-label { font-size: 11px; letter-spacing: 2px; }
    .services-section .section-desc { font-size: 15px; }
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    .services-section .service-card {
        padding: 28px 24px;
    }
    .services-section .services-cta-wrap {
        margin-top: 48px;
    }
    .services-section .services-cta {
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: 18px 24px;
        gap: 16px;
        font-size: 15px;
    }
    .services-section .services-cta svg {
        width: 24px;
        height: 24px;
    }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.services-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--services-primary-darker) 0%, var(--services-primary) 50%, var(--services-primary-dark) 100%);
    overflow: hidden;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--services-accent-light);
}

.services-hero-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: var(--services-white);
    margin-bottom: 20px;
}

.services-hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.services-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 3;
}

.services-hero-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════ */
.services-grid-section {
    padding: 100px 0;
    background: var(--services-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--services-white);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--services-gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--services-primary), var(--services-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 148, 64, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--services-light-green) 0%, rgba(130, 203, 48, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    transform: scale(1.08);
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--services-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-card-icon svg {
    color: var(--services-white);
}

.service-card-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 24px;
    color: var(--services-gray-800);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card:hover .service-card-title {
    color: var(--services-primary);
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--services-gray-600);
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-card-features li {
    font-size: 14px;
    color: var(--services-gray-600);
    padding: 6px 0 6px 20px;
    position: relative;
}

.service-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--services-accent);
    border-radius: 50%;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--services-primary);
    transition: gap 0.3s;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 24px;
    }
}

/* ═══════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════ */
.services-process-section {
    padding: 100px 0;
    background: var(--services-off-white);
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--services-primary);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: var(--services-light-green);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--services-gray-800);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--services-white);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.step-number {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--services-accent);
    line-height: 1;
    margin-bottom: 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--services-gray-600);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════════ */
.services-why-section {
    padding: 100px 0;
    background: var(--services-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-label {
    margin-bottom: 16px;
}

.why-content .section-title {
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
}

.why-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--services-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item-icon svg {
    width: 14px;
    height: 14px;
    color: var(--services-white);
}

.why-item-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 6px;
}

.why-item-content p {
    font-size: 14px;
    color: var(--services-gray-600);
    line-height: 1.6;
}

.why-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--services-light-green) 0%, var(--services-gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--services-primary);
    opacity: 0.3;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image {
        order: -1;
    }
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.services-cta-section {
    padding: 80px 0 100px;
    background: var(--services-off-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--services-primary-darker) 0%, var(--services-primary) 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(130, 203, 48, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 32px;
    color: var(--services-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--services-white);
    color: var(--services-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    
    .cta-content h3 {
        font-size: 26px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════════════ */
.service-detail-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--services-primary-darker) 0%, var(--services-primary) 100%);
    overflow: hidden;
}

.service-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.service-detail-hero-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--services-white);
    margin-top: 20px;
}

.service-detail-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
}

.service-detail-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 3;
}

.service-detail-content {
    padding: 80px 0;
    background: var(--services-white);
    overflow-x: hidden;
}

/* İçerik üstü görsel — metin bloğu ile aynı genişlikte (sol sütun) */
.service-detail-top-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
    background: var(--services-gray-100);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
}

.service-detail-top-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .service-detail-top-image {
        margin-bottom: 24px;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    min-width: 0;
}

.service-detail-grid .service-detail-main {
    min-width: 0;
}

.service-detail-grid .service-detail-sidebar {
    min-width: 0;
}

/* Hizmet detay — yazıların üstündeki resim alanı */
.service-detail-image {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--services-gray-100);
    aspect-ratio: 1200 / 500;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .service-detail-image {
        margin-bottom: 24px;
        border-radius: 12px;
        aspect-ratio: 16 / 10;
    }
}

.service-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--services-gray-700);
    overflow-wrap: break-word;
    word-break: break-word;
}

.service-description h2 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 28px;
    color: var(--services-gray-800);
    margin: 36px 0 18px;
}

.service-description h3 {
    font-size: 22px;
    color: var(--services-gray-800);
    margin: 28px 0 14px;
}

.service-description p {
    margin-bottom: 20px;
}

.service-description ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-description li {
    margin-bottom: 10px;
}

/* Features Box */
.service-features-box {
    margin-top: 48px;
    padding: 32px;
    background: var(--services-off-white);
    border-radius: 20px;
}

.service-features-box h3 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 24px;
    color: var(--services-gray-800);
    margin-bottom: 24px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-feature-item {
    text-align: center;
    padding: 24px;
    background: var(--services-white);
    border-radius: 16px;
}

.service-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--services-light-green) 0%, rgba(130, 203, 48, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--services-primary);
}

.service-feature-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 8px;
}

.service-feature-item p {
    font-size: 14px;
    color: var(--services-gray-600);
    line-height: 1.5;
}

/* Gallery */
.service-gallery {
    margin-top: 48px;
}

.service-gallery h3 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 24px;
    color: var(--services-gray-800);
    margin-bottom: 24px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-gallery-item:hover img {
    transform: scale(1.05);
}

/* FAQ */
.service-faq {
    margin-top: 48px;
}

.service-faq h3 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 24px;
    color: var(--services-gray-800);
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--services-gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--services-gray-800);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--services-gray-600);
    line-height: 1.7;
}

/* Sidebar */
.service-detail-sidebar > div {
    background: var(--services-off-white);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.service-detail-sidebar h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 16px;
}

.sidebar-cta p {
    font-size: 14px;
    color: var(--services-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-primary-dark) 100%);
    color: var(--services-white) !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.sidebar-cta-btn svg {
    width: 18px;
    height: 18px;
}

.sidebar-cta-btn:hover,
.sidebar-cta-btn:focus,
.sidebar-cta-btn:visited {
    color: var(--services-white) !important;
    text-decoration: none !important;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 148, 64, 0.3);
}

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

.sidebar-service-list li {
    border-bottom: 1px solid var(--services-gray-200);
}

.sidebar-service-list li:last-child {
    border-bottom: none;
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 14px;
    color: var(--services-gray-600);
    transition: all 0.3s;
}

.sidebar-service-list a svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: all 0.3s;
}

.sidebar-service-list li.active a,
.sidebar-service-list a:hover {
    color: var(--services-primary);
}

.sidebar-service-list li.active a svg,
.sidebar-service-list a:hover svg {
    opacity: 1;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.sidebar-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--services-primary);
}

.sidebar-contact-item a {
    font-size: 14px;
    color: var(--services-gray-700);
    font-weight: 600;
}

.sidebar-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--services-primary) !important;
    background: transparent;
    border: 2px solid var(--services-primary);
    border-radius: 8px;
    text-decoration: none !important;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.sidebar-contact-btn:hover,
.sidebar-contact-btn:focus {
    color: #fff !important;
    text-decoration: none !important;
    background: var(--services-primary);
}

.sidebar-contact-btn:visited {
    color: var(--services-primary) !important;
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .service-detail-sidebar > div {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════
   SERVICE PAGE TEMPLATES (Yeni Hizmet Sayfaları)
   4 Çeşit Paketlenmiş Toplu Yemek, 7 Çeşit Premium Menü, vb.
═══════════════════════════════════════════════════════ */

/* Hero Banner */
.service-page-hero {
    position: relative;
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
}

.service-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 90, 35, 0.85) 0%, rgba(44, 148, 64, 0.75) 100%);
    pointer-events: none;
}

.service-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-page-hero-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--services-white);
    margin-top: 20px;
    line-height: 1.2;
}

.service-page-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 3;
}

.service-page-hero-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Content Section */
.service-page-content {
    padding: 80px 0 100px;
    background: var(--services-white);
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.service-page-main {
    min-width: 0;
}

/* Ana İçerik */
.service-content-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--services-gray-700);
}

.service-content-text h2 {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 28px;
    color: var(--services-gray-800);
    margin: 36px 0 18px;
}

.service-content-text h3 {
    font-size: 22px;
    color: var(--services-gray-800);
    margin: 28px 0 14px;
}

.service-content-text p {
    margin-bottom: 20px;
}

.service-content-text ul,
.service-content-text ol {
    margin: 20px 0;
    padding-left: 24px;
}

.service-content-text li {
    margin-bottom: 10px;
}

/* Paketler Bölümü */
.service-packages-section {
    margin-top: 60px;
}

.service-packages-section .section-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 28px;
    color: var(--services-gray-800);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--services-gray-100);
}

.service-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-package-card {
    background: var(--services-white);
    border: 1px solid var(--services-gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--services-primary), var(--services-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 148, 64, 0.2);
}

.service-package-card:hover::before {
    transform: scaleX(1);
}

/* Paket Görseli */
.package-image {
    margin: -32px -32px 20px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--services-gray-100);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-package-card:hover .package-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .package-image {
        margin: -24px -24px 16px;
        aspect-ratio: 16/9;
    }
}

.package-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 12px;
}

.package-desc {
    font-size: 15px;
    color: var(--services-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.package-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--services-primary);
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--services-light-green);
    border-radius: 10px;
    display: inline-block;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    font-size: 14px;
    color: var(--services-gray-600);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid var(--services-gray-100);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--services-accent);
    border-radius: 50%;
}

/* Galeri Bölümü */
.service-gallery-section {
    margin-top: 60px;
}

.service-gallery-section .section-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 28px;
    color: var(--services-gray-800);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--services-gray-100);
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.service-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-gallery-item:hover img {
    transform: scale(1.08);
}

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

.sidebar-cta-box {
    background: var(--services-off-white);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-cta-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 12px;
}

.sidebar-cta-box p {
    font-size: 14px;
    color: var(--services-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-services-list {
    background: var(--services-off-white);
    border-radius: 20px;
    padding: 28px;
}

.sidebar-services-list h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--services-gray-800);
    margin-bottom: 16px;
}

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

.sidebar-services-list li {
    border-bottom: 1px solid var(--services-gray-200);
}

.sidebar-services-list li:last-child {
    border-bottom: none;
}

.sidebar-services-list a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: var(--services-gray-600);
    transition: all 0.3s;
    position: relative;
    padding-left: 16px;
}

.sidebar-services-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--services-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-services-list a:hover {
    color: var(--services-primary);
    padding-left: 20px;
}

.sidebar-services-list a:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-page-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-cta-box,
    .sidebar-services-list {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        padding: 100px 0 80px;
    }
    
    .service-page-hero-content {
        padding: 0 20px;
    }
    
    .service-page-content {
        padding: 60px 0 80px;
    }
    
    .service-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-page-sidebar {
        grid-template-columns: 1fr;
    }
    
    .service-package-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
}
