/* ==============================================
   İÇ SAYFALAR — ORTAK STİL (inner.css)
   Tüm iç sayfalarda style.css ile birlikte kullanılır
   ============================================== */

/* ---------- SAYFA HEROsu ---------- */
.page-hero {
    background: linear-gradient(140deg, var(--blue) 0%, var(--blue-d) 50%, var(--blue-dd) 100%);
    color: var(--white);
    padding: 52px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.page-hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.page-hero-c1 { width: 400px; height: 400px; top: -160px; right: -80px; }
.page-hero-c2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }

.page-hero-inner { position: relative; z-index: 1; }
.page-hero-content { max-width: 640px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 9px; opacity: .6; }
.breadcrumb span { color: var(--white); font-weight: 500; }

.page-hero h1 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 16px;
    opacity: .85;
}

/* ---------- HAKKIMIZDA SAYFASI ---------- */
.about-section { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Metin bloğu */
.about-text .section-tag { margin-bottom: 12px; }
.about-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.25;
}
.about-text p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text p strong { color: var(--text); font-weight: 700; }
.about-text p:last-of-type { margin-bottom: 28px; }

.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-blue-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-blue-outline:hover {
    background: var(--blue);
    color: var(--white);
}

/* Özellik kartları */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-feat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 20px;
    transition: all var(--ease);
}
.about-feat-card:hover {
    box-shadow: var(--shadow-m);
    border-color: var(--blue-light);
    transform: translateX(4px);
}
.about-feat-main {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
    border-color: transparent;
    color: var(--white);
}
.about-feat-main strong { color: var(--white); font-size: 16px; }
.about-feat-main p { color: rgba(255,255,255,.85); font-size: 13px; }
.about-feat-main:hover { border-color: transparent; transform: translateX(4px); box-shadow: 0 6px 24px rgba(0,157,226,.3); }

.about-feat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feat-icon i { color: var(--white); font-size: 22px; }
.about-feat-icon-sm {
    width: 42px;
    height: 42px;
    background: var(--blue-light);
    border-radius: 11px;
}
.about-feat-icon-sm i { color: var(--blue); font-size: 17px; }
.about-feat-card:not(.about-feat-main) strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.about-feat-card:not(.about-feat-main) p {
    font-size: 13px;
    color: var(--text-3);
    margin: 0;
}

/* ---------- HİZMETLER GRID (hakkımızda) ---------- */
.about-services-section { background: var(--bg); }
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.about-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 18px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--ease);
}
.about-service-item i {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: all var(--ease);
}
.about-service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
    border-color: var(--blue-light);
    color: var(--blue);
}
.about-service-item:hover i {
    background: var(--blue);
    color: var(--white);
}

/* ---------- HİZMET SAYFASI — ADIMLAR ---------- */
.service-steps-section { background: var(--bg); }

.service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.service-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.service-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.service-step-num {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 18px;
    transition: all var(--ease);
    position: relative;
    z-index: 1;
}
.service-step:hover .service-step-num {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0,157,226,.25);
}
.service-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.service-step p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

/* 5 adım için */
.service-steps.steps-5 { grid-template-columns: repeat(5, 1fr); }
.service-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- HİZMET SAYFASI — HIGHLIGHTS LISTE ---------- */
.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
}
.service-highlights li i {
    color: var(--blue);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.service-highlights li strong { color: var(--text); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .service-steps::before { display: none; }
    .service-steps.steps-5 { grid-template-columns: repeat(3, 1fr); }
    .service-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 40px 0 44px; }
    .about-services-grid { grid-template-columns: 1fr; }
    .about-ctas { flex-direction: column; }
    .about-ctas .btn { justify-content: center; }
    .service-steps.steps-3 { grid-template-columns: 1fr; }
    .service-steps.steps-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .about-feat-card { padding: 14px 16px; }
    .service-steps { grid-template-columns: 1fr; }
}
