﻿@font-face {
    font-family: 'PKF Global Sans';
    src: url('../theme/Content/fonts/PKFGlobalSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PKF Global Sans';
    src: url('../theme/Content/fonts/PKFGlobalSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --pkf-blue: #003594;
    --pkf-navy: #0a2555;
    --pkf-sky: #00b5e2;
    --pkf-orange: #d24e12;
    --pkf-purple: #390c42;
    --pkf-ink: #1d2b44;
    --pkf-light: #f5f7fb;
    --pkf-white: #ffffff;
    --pkf-border: rgba(0, 53, 148, 0.12);
    --pkf-shadow: 0 18px 40px rgba(10, 37, 85, 0.12);
    --pkf-radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pkf-body {
    margin: 0;
    color: var(--pkf-ink);
    background:
        radial-gradient(circle at top left, rgba(0, 181, 226, 0.12), transparent 28%),
        radial-gradient(circle at right 15%, rgba(210, 78, 18, 0.08), transparent 22%),
        linear-gradient(180deg, #f9fbff 0%, #f3f6fb 100%);
    font-family: 'PKF Global Sans', 'Segoe UI', sans-serif;
}
img { max-width: 100%; display: block; }
body a { color: var(--pkf-blue); text-decoration: none; }
body a:hover { color: var(--pkf-sky); text-decoration: none; }
.utility-strip { background: var(--pkf-navy); color: rgba(255,255,255,.85); font-size: 14px; }
.utility-inner, .site-header-inner, .footer-bottom, .hero-split, .cards-grid, .footer-grid, .cta-band, .form-grid { display: flex; gap: 24px; }
.utility-inner { justify-content: space-between; align-items: center; padding: 10px 0; }
.utility-links { display: flex; gap: 18px; flex-wrap: wrap; }
.utility-links a { color: rgba(255,255,255,.85); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,53,148,.08); }
.site-header-inner { align-items: center; justify-content: space-between; padding: 18px 0; }
.site-logo img, .footer-logo { width: 176px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.nav-menu { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: inline-flex; align-items: center; padding: 12px 14px; color: var(--pkf-ink); border-radius: 999px; font-size: 15px; }
.nav-menu > li > a:hover, .nav-menu > li.open > a { background: rgba(0,53,148,.06); }
.submenu-toggle, .nav-toggle { display: none; border: 0; background: transparent; }
.submenu-panel { position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; padding: 14px; background: var(--pkf-white); border: 1px solid var(--pkf-border); border-radius: 20px; box-shadow: var(--pkf-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.submenu-panel.wide { min-width: 340px; }
.has-submenu:hover .submenu-panel, .has-submenu.open .submenu-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu-panel a { display: block; padding: 10px 12px; border-radius: 14px; color: var(--pkf-ink); }
.submenu-panel a:hover { background: var(--pkf-light); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: .2s ease; }
.button-primary { color: var(--pkf-white); background: linear-gradient(135deg, var(--pkf-blue), var(--pkf-sky)); }
.button-primary:hover { color: var(--pkf-white); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,53,148,.18); }
.button-secondary { color: var(--pkf-blue); border-color: rgba(0,53,148,.18); background: rgba(255,255,255,.92); }
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }
.page-hero, .home-hero { position: relative; overflow: hidden; padding: 88px 0 72px; }
.home-hero { background: linear-gradient(135deg, rgba(10,37,85,.96), rgba(0,53,148,.92)), url('../images/starburst.png') right top / 420px no-repeat; color: var(--pkf-white); }
.home-hero-slider {
    --slide-bg-rgb: 9,155,191;
    padding-bottom: 52px;
    background:
        linear-gradient(135deg, rgba(var(--slide-bg-rgb), .92), rgba(10,37,85,.84)),
        url('../../dokumanlar/slider/pkf-index-img.jpg') center / cover no-repeat;
}
.home-hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../dokumanlar/slider/starburst.png') right -20px top -10px / min(48vw, 720px) no-repeat;
    opacity: .7;
    pointer-events: none;
}
.hero-slider { position: relative; z-index: 1; }
.hero-slide { display: none; animation: heroFade .45s ease; }
.hero-slide.is-active { display: block; }
@keyframes heroFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-slider-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.hero-slider-button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: var(--pkf-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.hero-slider-button:hover { background: rgba(255,255,255,.24); }
.hero-slider-dots { display: flex; align-items: center; gap: 10px; }
.hero-slider-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
}
.hero-slider-dot.is-active { background: var(--pkf-white); transform: scale(1.1); }
.page-hero { background: linear-gradient(135deg, rgba(0,53,148,.94), rgba(57,12,66,.92)), url('../images/starburst.png') right -40px top -30px / 300px no-repeat; color: var(--pkf-white); padding: 72px 0 56px; }
.hero-copy, .hero-visual { flex: 1; }
.hero-copy h1, .page-hero h1, .section-heading h2, .content-card h2, .content-card h3 { margin: 0 0 18px; font-weight: 700; line-height: 1.05; }
.hero-copy h1, .page-hero h1 { font-size: clamp(38px, 5vw, 66px); }
.hero-copy p, .page-hero p, .lead-text { font-size: 18px; line-height: 1.75; }
.hero-badges, .meta-pills, .contact-list, .check-list, .side-nav, .cookie-actions, .footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span, .meta-pills span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16); }
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-badges-vertical { width: min(100%, 420px); flex-direction: column; align-items: stretch; }
.hero-badges-vertical span { display: block; padding: 18px 22px; border-radius: 20px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.28); color: var(--pkf-blue); font-weight: 700; box-shadow: 0 14px 30px rgba(10,37,85,.12); }
.hero-badges-inline { width: 100%; margin-bottom: 24px; flex-direction: row; align-items: stretch; }
.hero-badges-inline span { flex: 1 1 0; text-align: center; }
.content-card, .stat-card, .service-card, .info-card, .office-card, .timeline-card, .job-card, .table-card, .form-card, .sidebar-card {
    background: rgba(255,255,255,.96); border: 1px solid var(--pkf-border); border-radius: var(--pkf-radius); box-shadow: var(--pkf-shadow); padding: 28px;
}
.section-block, main section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(28px, 4vw, 46px); }
.section-heading p { font-size: 17px; line-height: 1.8; }
.cards-grid { flex-wrap: wrap; }
.cards-grid > * { flex: 1 1 calc(33.333% - 16px); min-width: 250px; }
.stats-grid > * { flex: 0 0 calc(25% - 18px); min-width: 0; }
.mission-grid > * { flex: 0 0 calc(25% - 18px); min-width: 0; }
.text-center { text-align: center; }
.service-card img, .info-card img, .stat-card img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 20px; }
.service-card h3, .info-card h3, .office-card h3, .job-card h3, .content-card h3 { font-size: 25px; margin-bottom: 14px; }
.service-card p, .info-card p, .office-card p, .job-card p, .content-card p, .content-card li { line-height: 1.8; font-size: 16px; }
.service-card .button, .job-card .button, .office-card .button { margin-top: 16px; }
.office-map { margin: -28px -28px 22px; overflow: hidden; border-radius: 24px 24px 0 0; }
.office-map iframe { display: block; width: 100%; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 42px; color: var(--pkf-blue); line-height: 1; margin-bottom: 10px; }
.pkf-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
}
.pkf-stat-card img {
    margin-left: auto;
    margin-right: auto;
}
.pkf-stat-card p {
    min-height: 3.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.alt-background { background: linear-gradient(180deg, rgba(0,181,226,.05), rgba(0,53,148,.02)); }
.dark-band { background: linear-gradient(135deg, var(--pkf-navy), var(--pkf-blue)); color: var(--pkf-white); }
.dark-band .section-heading p, .dark-band p, .dark-band li, .dark-band a { color: rgba(255,255,255,.92); }
.dark-band .button-secondary { color: var(--pkf-blue); }
.dark-band .button-secondary:hover { color: var(--pkf-blue); }
.cta-band { align-items: center; justify-content: space-between; padding: 34px; background: linear-gradient(135deg, rgba(0,53,148,.98), rgba(0,181,226,.88)); border-radius: 30px; color: var(--pkf-white); }
.cta-band h3 { margin: 0 0 10px; font-size: 34px; }
.article-layout { display: grid; grid-template-columns: minmax(0,1.8fr) minmax(280px,.8fr); gap: 28px; }
.side-nav { flex-direction: column; }
.side-nav a { display: block; padding: 12px 14px; border-radius: 16px; background: var(--pkf-light); color: var(--pkf-ink); width: 100%; }
.check-list, .contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li, .contact-list li { position: relative; padding-left: 22px; }
.check-list li::before, .contact-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--pkf-sky); }
.notice-box { margin-top: 22px; padding: 18px 20px; border-left: 4px solid var(--pkf-orange); border-radius: 0 18px 18px 0; background: rgba(210,78,18,.08); }
.table-shell { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; min-width: 720px; }
table.data-table th, table.data-table td { padding: 16px 14px; border-bottom: 1px solid rgba(0,53,148,.1); text-align: left; vertical-align: top; }
table.data-table th { color: var(--pkf-blue); font-weight: 700; background: rgba(0,53,148,.04); }
.form-grid { flex-wrap: wrap; }
.form-grid > div { flex: 1 1 calc(50% - 12px); min-width: 240px; }
.form-grid .full { flex-basis: 100%; }
.form-card label { display: block; margin-bottom: 8px; font-weight: 700; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1px solid rgba(0,53,148,.16); border-radius: 16px; padding: 14px 16px; font-size: 15px; background: #fff; }
.form-card textarea { min-height: 150px; resize: vertical; }
.form-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.service-checkbox-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.checkbox-item { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 18px; background: var(--pkf-light); }
.checkbox-item input { width: auto; margin-top: 5px; }
.site-footer { background: linear-gradient(135deg, var(--pkf-navy), #132c61); color: rgba(255,255,255,.88); margin-top: 72px; padding-top: 56px; }
.footer-grid { align-items: flex-start; justify-content: space-between; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid > * { flex: 1 1 22%; min-width: 220px; }
.site-footer h4 { color: #fff; margin-bottom: 18px; }
.site-footer a, .site-footer p, .footer-bottom span { color: rgba(255,255,255,.82); }
.site-footer a { display: block; margin-bottom: 10px; }
.footer-bottom { align-items: center; justify-content: space-between; padding: 18px 0 24px; }
.cookie-banner { position: fixed; right: 20px; bottom: 20px; width: min(420px, calc(100% - 40px)); padding: 20px; border-radius: 24px; background: rgba(10,37,85,.98); color: var(--pkf-white); box-shadow: var(--pkf-shadow); z-index: 120; }
.cookie-banner p { margin: 8px 0 0; color: rgba(255,255,255,.86); }
.spacer-24 { height: 24px; }
@media (max-width: 1100px) {
    .site-nav { position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: var(--pkf-white); border: 1px solid var(--pkf-border); border-radius: 24px; box-shadow: var(--pkf-shadow); }
    .site-nav.open { display: flex; }
    .nav-menu { width: 100%; flex-direction: column; align-items: stretch; }
    .nav-menu > li > a { width: 100%; justify-content: space-between; padding-right: 44px; }
    .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
    .nav-toggle span { width: 26px; height: 2px; background: var(--pkf-blue); border-radius: 999px; }
    .submenu-toggle { position: absolute; top: 10px; right: 6px; display: inline-flex; width: 36px; height: 36px; }
    .submenu-toggle::before, .submenu-toggle::after { content: ''; position: absolute; top: 17px; left: 10px; width: 14px; height: 2px; background: var(--pkf-blue); }
    .submenu-toggle::after { transform: rotate(90deg); transition: .2s ease; }
    .has-submenu.open .submenu-toggle::after { transform: rotate(0deg); }
    .submenu-panel { position: static; min-width: 100%; margin-top: 8px; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; }
    .has-submenu.open .submenu-panel { display: block; }
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }
    .article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .utility-inner, .hero-split, .footer-bottom, .cta-band, .footer-grid { flex-direction: column; }
    .home-hero, .page-hero, .section-block, main section { padding-top: 56px; padding-bottom: 48px; }
    .hero-copy h1, .page-hero h1 { font-size: 38px; }
    .home-hero-slider { padding-bottom: 40px; }
    .home-hero-slider::before { background-size: min(88vw, 420px); background-position: right -10px top 0; opacity: .55; }
    .hero-slider-controls { margin-top: 12px; }
    .hero-slider-button { width: 38px; height: 38px; font-size: 24px; }
    .cta-band h3 { font-size: 28px; }
    .cookie-banner { right: 12px; left: 12px; width: auto; bottom: 12px; }
    .stats-grid { flex-direction: row; }
    .stats-grid > * { flex: 0 0 calc(50% - 12px); }
    .mission-grid { flex-direction: row; }
    .mission-grid > * { flex: 0 0 calc(50% - 12px); }
    .service-checkbox-grid { grid-template-columns: 1fr; }
}
