/* ============================================================
   ATİDESTEK - Service Pages CSS
   Her kategori için benzersiz layout ve stil sistemi
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --brand-primary: #044E7C;
    --brand-secondary: #066ba8;
    --brand-accent: #0A7DC4;
    --cat-hibe: #044E7C;
    --cat-hibe-light: #066ba8;
    --cat-belge: #044E7C;
    --cat-belge-light: #066ba8;
    --cat-marka: #044E7C;
    --cat-marka-light: #066ba8;
    --cat-yazilim: #044E7C;
    --cat-yazilim-light: #066ba8;
    --cat-dijital: #044E7C;
    --cat-dijital-light: #066ba8;
    --cat-yonetim: #044E7C;
    --cat-yonetim-light: #066ba8;
    --text-dark: #0B111F;
    --text-body: #4B5563;
    --text-muted: #9CA3AF;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    --border-color: #E2E8F0;
    --white: #fff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

/* ============================================================
   SHARED: Breadcrumb
   ============================================================ */
.srv-breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.srv-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
}
.srv-breadcrumb li {
    display: flex;
    align-items: center;
}
.srv-breadcrumb li a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.srv-breadcrumb li a:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}
.srv-breadcrumb li .sep {
    margin: 0 10px;
    color: var(--text-muted);
    font-size: 10px;
}
.srv-breadcrumb li[aria-current="page"] {
    color: var(--text-body);
}

/* ============================================================
   SHARED: Hero Section Base
   ============================================================ */
.srv-hero {
    padding: 130px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.srv-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.srv-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.srv-hero .srv-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.srv-hero .srv-badge i {
    margin-right: 6px;
}
.srv-hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}
.srv-hero .srv-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 540px;
}
.srv-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.srv-hero-btns .btn-hero-primary {
    background: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.srv-hero-btns .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.srv-hero-btns .btn-hero-secondary {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.srv-hero-btns .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.28);
    color: var(--white);
}

/* Hero stat cards */
.srv-hero-stats {
    background: rgba(255,255,255,0.1);
    padding: 28px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.srv-hero-stats h2 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}
.srv-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.srv-stat-card {
    background: rgba(255,255,255,0.14);
    padding: 18px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s;
}
.srv-stat-card:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}
.srv-stat-card .stat-value {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
}
.srv-stat-card .stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* ============================================================
   SHARED: Section Base Styles
   ============================================================ */
.srv-section {
    padding: 80px 0;
}
.srv-section-alt {
    padding: 80px 0;
    background: var(--bg-light);
}
.srv-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.srv-section-header .srv-label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}
.srv-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    line-height: 1.3;
}
.srv-section-header p {
    font-size: 16px;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SHARED: Feature Cards
   ============================================================ */
.srv-feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.35s;
    border: 1px solid transparent;
}
.srv-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.srv-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--white);
}
.srv-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.srv-feature-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SHARED: Info Section (Zigzag image+text)
   ============================================================ */
.srv-info-section {
    padding: 80px 0;
}
.srv-info-section.alt-bg {
    background: var(--bg-light);
}
.srv-info-label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
.srv-info-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-family: 'Lora', serif;
    line-height: 1.3;
}
.srv-info-section p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}
.srv-info-section img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.srv-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
.srv-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.srv-check-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}
.srv-check-item .check-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}
.srv-check-item .check-sub {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   SHARED: FAQ Accordion
   ============================================================ */
.srv-faq {
    padding: 80px 0;
}
.srv-faq.alt-bg {
    background: var(--bg-light);
}
.srv-faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}
.srv-faq-item:hover {
    box-shadow: var(--shadow-md);
}
.srv-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    user-select: none;
    transition: background 0.2s;
}
.srv-faq-question:hover {
    background: var(--bg-light);
}
.srv-faq-question i {
    transition: transform 0.3s;
    font-size: 14px;
    color: var(--text-muted);
}
.srv-faq-item.active .srv-faq-question i {
    transform: rotate(180deg);
}
.srv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.srv-faq-item.active .srv-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}
.srv-faq-answer p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SHARED: CTA + Form Section
   ============================================================ */
.srv-cta-section {
    padding: 80px 0;
    color: var(--white);
}
.srv-cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Lora', serif;
}
.srv-cta-section .cta-desc {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.92;
}
.srv-cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.srv-cta-checklist li {
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.srv-cta-checklist li i {
    font-size: 16px;
    opacity: 0.9;
}
.srv-cta-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.srv-cta-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-dark);
}
.srv-form-group {
    margin-bottom: 16px;
}
.srv-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    color: var(--text-dark);
}
.srv-form-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(4,78,124,0.12);
}
.srv-form-input::placeholder {
    color: var(--text-muted);
}
.srv-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    transition: border-color 0.3s;
    outline: none;
    resize: vertical;
    min-height: 100px;
}
.srv-form-textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(4,78,124,0.12);
}
.srv-form-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Nunito Sans', sans-serif;
}
.srv-form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ============================================================
   SHARED: Timeline (Horizontal)
   ============================================================ */
.srv-timeline-h {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}
.srv-timeline-h::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--border-color);
    z-index: 0;
}
.srv-timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 10px;
}
.srv-timeline-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
}
.srv-timeline-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.srv-timeline-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   SHARED: Timeline (Vertical)
   ============================================================ */
.srv-timeline-v {
    position: relative;
    padding-left: 40px;
}
.srv-timeline-v::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}
.srv-timeline-v-step {
    position: relative;
    padding-bottom: 35px;
    padding-left: 30px;
}
.srv-timeline-v-step:last-child {
    padding-bottom: 0;
}
.srv-timeline-v-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    left: -38px;
    top: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.srv-timeline-v-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.srv-timeline-v-step p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================================
   SHARED: City Links Grid
   ============================================================ */
.srv-city-grid {
    padding: 80px 0;
    background: var(--bg-light);
}
.srv-city-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.srv-city-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
    border: 1px solid var(--border-color);
}
.srv-city-link:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}
.srv-city-link i {
    font-size: 12px;
    opacity: 0.5;
}

/* ============================================================
   SHARED: Cross-Link Section (İlgili Hizmetler)
   ============================================================ */
.srv-related {
    padding: 80px 0;
}
.srv-related-card {
    display: block;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
}
.srv-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.srv-related-card .related-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 14px;
}
.srv-related-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.srv-related-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CATEGORY: Hibe & Teşvik Hero
   ============================================================ */
.srv-hero-hibe {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-hibe .btn-hero-primary {
    color: var(--brand-primary);
}

/* ============================================================
   CATEGORY: Belgelendirme Hero + Styles
   ============================================================ */
.srv-hero-belge {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-belge .btn-hero-primary {
    color: var(--brand-primary);
}
.belge-cert-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    font-size: 48px;
    margin: 0 auto 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
.belge-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.belge-comparison-table th {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}
.belge-comparison-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}
.belge-comparison-table tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   CATEGORY: Marka & Patent Hero + Styles
   ============================================================ */
.srv-hero-marka {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-marka .btn-hero-primary {
    color: var(--brand-primary);
}
.marka-search-box {
    background: rgba(255,255,255,0.12);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.marka-search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}
.marka-search-input::placeholder {
    color: rgba(255,255,255,0.6);
}
.marka-search-input:focus {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.2);
}
.marka-pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}
.marka-pricing-card.featured {
    border-color: var(--brand-primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.marka-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   CATEGORY: Yazılım Hero + Styles
   ============================================================ */
.srv-hero-yazilim {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-yazilim .btn-hero-primary {
    color: var(--brand-primary);
}
.yazilim-mockup {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.yazilim-mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}
.yazilim-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.yazilim-module-hex {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}
.yazilim-module-hex:hover {
    border-color: var(--brand-secondary);
    transform: translateY(-3px);
}
.yazilim-pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================================
   CATEGORY: Dijital Hizmetler Hero + Styles
   ============================================================ */
.srv-hero-dijital {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-dijital .btn-hero-primary {
    color: var(--brand-primary);
}
.dijital-metric-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border-top: 4px solid;
}
.dijital-metric-card:hover {
    transform: translateY(-4px);
}
.dijital-metric-card .metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.dijital-metric-card .metric-label {
    font-size: 14px;
    color: var(--text-muted);
}
.dijital-tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.dijital-tech-item {
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    transition: all 0.3s;
}
.dijital-tech-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.dijital-tech-item i {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

/* ============================================================
   CATEGORY: Yönetim Danışmanlık Hero
   ============================================================ */
.srv-hero-yonetim {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}
.srv-hero-yonetim .btn-hero-primary {
    color: var(--brand-primary);
}

/* ============================================================
   CITY PAGE: Specific Styles
   ============================================================ */
.city-hero {
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.city-local-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid;
}
.city-local-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.city-local-info .info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.city-local-info .info-row:last-child {
    border-bottom: none;
}
.city-local-info .info-row i {
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}
.city-stat-banner {
    padding: 60px 0;
    color: var(--white);
}
.city-stat-item {
    text-align: center;
    padding: 20px;
}
.city-stat-item .stat-num {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 5px;
}
.city-stat-item .stat-text {
    font-size: 15px;
    opacity: 0.9;
}

/* ============================================================
   PHP TEMPLATE COMPAT: Hero dynamic background via --cat-color
   ============================================================ */
.srv-hero[style*="--cat-color"],
.srv-hero.cat-belge,
.srv-hero.cat-hibe,
.srv-hero.cat-marka,
.srv-hero.cat-yazilim,
.srv-hero.cat-dijital,
.srv-hero.cat-danismanlik {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
}
.srv-hero-content {
    position: relative;
    z-index: 1;
}
.srv-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 540px;
}
.srv-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-primary-srv {
    background: var(--white);
    color: var(--brand-primary);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-primary-srv:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--brand-primary);
    text-decoration: none;
}
.btn-outline-srv {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.btn-outline-srv:hover {
    background: rgba(255,255,255,0.28);
    color: var(--white);
    text-decoration: none;
}
.srv-stats-title {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}
.srv-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ============================================================
   PHP TEMPLATE COMPAT: Info section (.srv-info)
   ============================================================ */
.srv-info {
    padding: 80px 0;
}
.srv-info-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: auto;
}
.srv-info .srv-label,
.srv-features .srv-label,
.srv-timeline .srv-label,
.srv-faq .srv-label,
.srv-related .srv-label,
.srv-section .srv-label,
.srv-section-alt .srv-label,
.srv-city-grid .srv-label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    color: var(--brand-secondary) !important;
}
.srv-section-header .srv-label {
    color: var(--brand-secondary) !important;
}
.srv-info-label {
    color: var(--brand-secondary) !important;
}

/* Unified brand colors for all accent elements */
.feature-icon,
.srv-feature-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important;
}
.step-number,
.srv-timeline-num,
.srv-timeline-v-dot {
    background: var(--brand-primary) !important;
}
.srv-cta-btn,
.srv-form-btn {
    background: var(--brand-primary) !important;
}
.srv-cta-btn:hover,
.srv-form-btn:hover {
    background: var(--brand-secondary) !important;
}
.srv-check-icon {
    background: var(--brand-primary) !important;
}
.srv-check-item > i {
    color: var(--brand-primary) !important;
}
.related-icon {
    background: var(--brand-primary) !important;
}
.srv-city-link:hover {
    color: var(--brand-primary);
    border-color: var(--brand-secondary);
}
.srv-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-family: 'Lora', serif;
    line-height: 1.3;
}
.srv-info p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================================
   PHP TEMPLATE COMPAT: Features section (.srv-features)
   ============================================================ */
.srv-features {
    padding: 80px 0;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--white);
}

/* ============================================================
   PHP TEMPLATE COMPAT: Timeline section (.srv-timeline)
   ============================================================ */
.srv-timeline {
    padding: 80px 0;
}
.srv-timeline-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.srv-timeline-wrap::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}
.srv-timeline-wrap .srv-timeline-step {
    position: relative;
    padding-bottom: 35px;
    padding-left: 30px;
    text-align: left;
    flex: unset;
}
.srv-timeline-wrap .srv-timeline-step:last-child {
    padding-bottom: 0;
}
.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    left: -38px;
    top: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.step-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   PHP TEMPLATE COMPAT: CTA section extras
   ============================================================ */
.srv-cta-section[style*="--cat-color"],
.srv-cta-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
}
.srv-cta-content {
    position: relative;
}
.srv-cta-content p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.92;
}
.srv-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.srv-cta-list li {
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.srv-cta-list li i {
    font-size: 16px;
    opacity: 0.9;
}
.srv-cta-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Nunito Sans', sans-serif;
}
.srv-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Form inputs inside CTA form (no class on inputs) */
.srv-cta-form .form-group {
    margin-bottom: 16px;
}
.srv-cta-form input[type="text"],
.srv-cta-form input[type="email"],
.srv-cta-form input[type="tel"],
.srv-cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    color: var(--text-dark);
}
.srv-cta-form input:focus,
.srv-cta-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(4,78,124,0.12);
}
.srv-cta-form input::placeholder,
.srv-cta-form textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .srv-hero h1 {
        font-size: 34px;
    }
    .srv-hero {
        padding: 120px 0 60px;
    }
    .srv-hero-stats {
        margin-top: 30px;
    }
    .srv-section-header h2,
    .srv-info-section h2,
    .srv-info h2 {
        font-size: 28px;
    }
    .srv-info-img {
        margin-bottom: 30px;
    }
    .srv-timeline-h {
        flex-direction: column;
        gap: 20px;
    }
    .srv-timeline-h::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .srv-timeline-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 0;
    }
    .srv-timeline-num {
        margin: 0;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .srv-check-grid {
        grid-template-columns: 1fr;
    }
    .yazilim-pricing-table {
        grid-template-columns: 1fr;
    }
    .srv-cta-section h2 {
        font-size: 28px;
    }
    .city-hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 575px) {
    .srv-hero h1 {
        font-size: 28px;
    }
    .srv-hero .srv-hero-desc {
        font-size: 16px;
    }
    .srv-hero-btns,
    .srv-hero-buttons {
        flex-direction: column;
    }
    .srv-hero-btns a,
    .srv-hero-buttons a {
        text-align: center;
        justify-content: center;
    }
    .srv-stat-grid,
    .srv-stats-grid {
        grid-template-columns: 1fr;
    }
    .srv-hero-content p {
        font-size: 16px;
    }
    .srv-section-header h2 {
        font-size: 24px;
    }
    .srv-city-links {
        grid-template-columns: 1fr;
    }
    .srv-cta-form {
        padding: 25px;
    }
}
