/* Kale Uzman Çilingir - özel tasarım (WordPress temasından bağımsız) */

:root {
    --navy: #101a2c;
    --navy-2: #16233b;
    --gold: #d4a640;
    --gold-light: #f0cf82;
    --ink: #1c2534;
    --muted: #5a6577;
    --bg: #f6f7fa;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(16, 26, 44, 0.08);
    --shadow-lg: 0 20px 50px rgba(16, 26, 44, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    margin: 0 0 .5em;
    color: var(--navy);
    line-height: 1.25;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 16px;
    z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.icon {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.2em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: none;
    cursor: pointer;
}
.btn-call {
    background: var(--gold);
    color: var(--navy);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy {
    background: var(--navy);
    color: #fff;
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 26, 44, 0.97);
    backdrop-filter: blur(6px);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 96px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    margin-right: auto;
}
.brand-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
}
.brand-footer .brand-logo { height: 84px; }

.main-nav ul {
    display: flex;
    gap: 6px;
}
.main-nav a {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,.82);
    font-weight: 500;
    font-size: .95rem;
    border-radius: 8px;
}
.main-nav a:hover, .main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,.08);
}
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-mega {
    left: 50%;
    transform: translate(-50%, 6px);
    width: 620px;
    max-width: calc(100vw - 40px);
    padding: 14px;
    overflow: hidden;
}
.has-dropdown:hover .dropdown-mega,
.has-dropdown:focus-within .dropdown-mega {
    transform: translate(-50%, 0);
}
.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.dropdown-grid li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    height: 100%;
}
.dropdown-grid li a:hover { background: var(--bg); }
.dropdown-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}
.dropdown-icon .icon { width: 19px; height: 19px; }
.dropdown-text { display: flex; flex-direction: column; gap: 3px; }
.dropdown-text strong { color: var(--ink); font-size: .92rem; font-family: 'Poppins', sans-serif; }
.dropdown-text span { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.dropdown-mega .dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background: var(--bg);
    color: var(--navy);
    font-weight: 600;
    font-size: .88rem;
}
.dropdown-footer .icon { width: 16px; height: 16px; transition: transform .15s ease; }
.dropdown-mega .dropdown-footer:hover { background: var(--gold-light); color: var(--navy); }
.dropdown-footer:hover .icon { transform: translateX(3px); }

.header-call { white-space: nowrap; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Hero */
.hero {
    background: radial-gradient(circle at 20% 20%, var(--navy-2), var(--navy) 65%);
    color: #fff;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='2' cy='2' r='1.4' fill='%23ffffff14'/%3E%3C/svg%3E");
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
}
.hero .eyebrow {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    font-size: .8rem;
}
.hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
}
.hero p.lead {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-badges {
    display: flex;
    gap: 22px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-badge { display: flex; align-items: center; gap: 10px; color: #fff; }
.hero-badge .icon { color: var(--gold-light); width: 26px; height: 26px; }
.hero-badge strong { display: block; font-family: 'Poppins', sans-serif; font-size: .95rem; }
.hero-badge span { color: rgba(255,255,255,.6); font-size: .8rem; }

.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(4px);
}
.hero-card h3 { color: #fff; }
.hero-card ul { display: grid; gap: 12px; margin-top: 14px; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: .93rem; }
.hero-card .icon { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

/* Sections */
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}
.section-head h2 { text-wrap: balance; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 12px;
}
.bg-alt { background: var(--white); }

/* Cards grid */
.grid {
    display: grid;
    gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #eef0f4;
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.card .icon-badge .icon { width: 26px; height: 26px; }
.card h3 { font-size: 1.1rem; }
.card p { margin-bottom: 0; font-size: .95rem; }
.card .more { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 600; font-size: .9rem; }

/* Service card with thumbnail image */
.card-media { position: relative; padding: 0; overflow: hidden; }
.card-media .card-media-img-wrap { overflow: hidden; height: 170px; }
.card-media .card-media-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.card-media:hover .card-media-img-wrap img { transform: scale(1.08); }
.card-media .icon-badge {
    position: absolute;
    top: 170px;
    left: 24px;
    transform: translateY(-50%);
    margin-bottom: 0;
    border: 4px solid #fff;
}
.card-media .card-body { padding: 34px 26px 26px; }

/* Regions chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    transition: all .15s ease;
}
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* CTA band */
.cta-band {
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.7); margin: 0; }

/* Page header (inner pages) */
.page-hero {
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 60px 0;
}
.page-hero .eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 700; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.65); }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--gold-light); }

.content-block { max-width: 780px; }
.content-block h2 { margin-top: 1.4em; font-size: 1.3rem; }
.content-block p { font-size: 1rem; }

/* Region inner page: content + sidebar */
.region-layout, .page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}
.region-layout .content-block, .page-layout .content-block { max-width: none; }
.sidebar-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.sidebar-contact-btn { width: 100%; justify-content: center; margin-bottom: 16px; }
.sidebar-address { display: flex; gap: 10px; font-size: .88rem; color: var(--muted); }
.sidebar-address .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.sidebar-links { display: grid; gap: 6px; }
.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--ink);
    transition: background .15s ease, color .15s ease;
}
.sidebar-links a:hover { background: var(--bg); color: var(--gold); }
.sidebar-links .icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.sidebar-card .chip-list { gap: 8px; }
.sidebar-card .chip { padding: 8px 12px; font-size: .85rem; }

.content-image-frame {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 24px;
}
.content-image-frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.content-image-frame:hover img { transform: scale(1.06); }
.content-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.content-image-grid .content-image-frame { margin-bottom: 0; }
.content-image-grid .content-image-frame img { height: 220px; }

/* Feature list */
.feature-list { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.feature-list .card { text-align: center; }
.feature-list .icon-badge { margin: 0 auto 16px; }
.page-layout .feature-list, .region-layout .feature-list { grid-column: 1 / -1; }

/* Contact */
.info-card { display: flex; gap: 16px; padding: 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 16px; }
.info-card .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.info-card p { margin: 0; font-size: .93rem; }

/* Region index */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.region-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.region-card .icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}
.region-card .icon-badge .icon { width: 20px; height: 20px; }
.region-card-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.region-card-text h3 { font-size: .98rem; margin: 0; }
.region-card-text span { font-size: .78rem; color: var(--muted); }
.region-card-arrow { color: var(--gold); opacity: 0; transform: translateX(-4px); transition: all .15s ease; flex-shrink: 0; }
.region-card-arrow .icon { width: 16px; height: 16px; }
.region-card:hover .region-card-arrow { opacity: 1; transform: translateX(0); }

/* Floating call button */
.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 90;
}
.floating-call .icon { width: 26px; height: 26px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); margin-top: 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding: 60px 20px 40px;
}
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-col a:hover { color: var(--gold-light); }
.brand-footer { margin-bottom: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-contact .icon { color: var(--gold-light); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; text-align: center; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p + p { margin-top: 6px; }
.footer-bottom a { color: rgba(255,255,255,.65); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .grid-3, .grid-4, .feature-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .region-layout, .page-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .main-nav {
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        background: var(--navy-2);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }
    .main-nav.open { max-height: 900px; }
    .main-nav ul { flex-direction: column; padding: 10px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,.15); display: none; }
    .dropdown-mega { left: 0; width: auto; max-width: none; padding: 8px; transform: none; }
    .has-dropdown:hover .dropdown-mega, .has-dropdown:focus-within .dropdown-mega { transform: none; }
    .dropdown-grid { grid-template-columns: 1fr; }
    .dropdown-grid li a:hover { background: rgba(255,255,255,.06); }
    .dropdown-text strong { color: #fff; }
    .dropdown-text span { color: rgba(255,255,255,.6); }
    .dropdown-mega .dropdown-footer { background: rgba(255,255,255,.06); color: #fff; }
    .has-dropdown.open .dropdown { display: block; }
    .header-call { display: none; }
    .nav-toggle { display: flex; }
    .grid-3, .grid-4, .feature-list, .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 32px; text-align: center; justify-content: center; }
    .content-image-grid { grid-template-columns: 1fr; }
}
