/* =====================================================================
   United Sigorta – Kurumsal Tema
   Renk paleti orijinal siteden alınmıştır.
   ===================================================================== */

:root {
    --c-primary:        #125482;
    --c-primary-dark:   #0b3c60;
    --c-primary-darker: #082c47;
    --c-secondary:      #3f6582;
    --c-accent:         #074368;
    --c-topbar:         #292929;
    --c-heading:        #0e0e0e;
    --c-body:           #383838;
    --c-muted:          #6b7885;
    --c-border:         #e4e9ee;
    --c-bg-soft:        #f4f6f8;
    --c-bg-alt:         #eef2f5;
    --c-white:          #ffffff;
    --c-success:        #1f9254;
    --c-danger:         #c0392b;
    --c-warning:        #b7791f;

    --font-body:    'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    --container: 1200px;
    --radius:    4px;
    --shadow-sm: 0 2px 8px rgba(16, 42, 67, .06);
    --shadow-md: 0 6px 24px rgba(16, 42, 67, .10);
    --shadow-lg: 0 18px 48px rgba(16, 42, 67, .14);
    --header-h:  152px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* --- Sıfırlama --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-body);
    background: var(--c-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--c-heading);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.12rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }

/* --- Yerleşim --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 100px 0; }
.section--sm { padding: 70px 0; }
.section--soft { background: var(--c-bg-soft); }

.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; }

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

.text-center { text-align: center; }

/* --- Bölüm başlığı --- */
.heading { margin-bottom: 48px; }

.heading__sub {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
}

.heading__sub::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--c-primary);
}

.heading__sub--dots::before {
    width: 22px;
    height: 22px;
    background:
        radial-gradient(circle, var(--c-primary) 2px, transparent 2.5px) 0 0/7px 7px;
    opacity: .85;
}

.heading__title { margin-bottom: 14px; }
.heading__text { color: var(--c-muted); max-width: 640px; }
.heading--center { text-align: center; }
.heading--center .heading__text { margin-left: auto; margin-right: auto; }
.heading--light .heading__title,
.heading--light .heading__text { color: var(--c-white); }
.heading--light .heading__sub { color: #8fc4ea; }

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--c-primary);
    color: var(--c-white);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 84, 130, .28);
}

.btn--secondary { background: var(--c-secondary); }
.btn--secondary:hover { background: #33546c; box-shadow: 0 8px 20px rgba(63, 101, 130, .28); }

.btn--outline {
    background: transparent;
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); }

.btn--light { background: var(--c-white); color: var(--c-primary); }
.btn--light:hover { background: var(--c-bg-alt); color: var(--c-primary-dark); }

.btn--lg { padding: 18px 38px; font-size: .95rem; }
.btn--sm { padding: 11px 20px; font-size: .8rem; }
.btn--block { width: 100%; }

/* =====================================================================
   BAŞLIK (HEADER)
   ===================================================================== */

.topbar {
    background: var(--c-topbar);
    color: #dbdbdb;
    font-size: .82rem;
    padding: 11px 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar__address { display: flex; align-items: center; gap: 8px; }

.topbar__info {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar__info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dbdbdb;
}

.topbar__info a:hover { color: var(--c-white); }
.topbar__info svg, .topbar__address svg { width: 15px; height: 15px; flex: 0 0 auto; opacity: .9; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
}

.site-header.is-stuck { box-shadow: 0 4px 22px rgba(16, 42, 67, .12); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}

.brand img { height: 125px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 34px; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__menu > li { position: relative; }

.nav__menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-heading);
    padding: 62px 0;
    position: relative;
}

.nav__menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 38px;
    width: 0;
    height: 3px;
    background: var(--c-primary);
    transition: width var(--transition);
}

.nav__menu > li:hover > a,
.nav__menu > li.current-menu-item > a { color: var(--c-primary); }

.nav__menu > li:hover > a::after,
.nav__menu > li.current-menu-item > a::after { width: 100%; }

.nav__icon { width: 15px; height: 15px; }
.nav__caret { width: 9px; height: 9px; transition: transform var(--transition); }
.nav__menu > li:hover .nav__caret { transform: rotate(180deg); }

/* Alt menü */
.submenu {
    position: absolute;
    top: 100%;
    left: -22px;
    min-width: 262px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--c-primary);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all var(--transition);
}

.nav__menu > li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.submenu a {
    display: block;
    padding: 11px 24px;
    font-size: .89rem;
    color: var(--c-body);
    border-left: 3px solid transparent;
}

.submenu a:hover {
    color: var(--c-primary);
    background: var(--c-bg-soft);
    border-left-color: var(--c-primary);
    padding-left: 28px;
}

.header__actions { display: flex; align-items: center; gap: 12px; }

/* Menü içindeki düğmeler yalnızca mobil çekmecede görünür */
.nav > .header__actions { display: none; }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-heading);
    transition: all var(--transition);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
    position: relative;
    background: linear-gradient(120deg, #fafcfe 0%, #eef4f9 100%);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: .9;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
    padding: 90px 0;
}

.hero__title { margin-bottom: 18px; }
.hero__lead { font-size: 1.08rem; color: var(--c-muted); margin-bottom: 30px; }
.hero__media { position: relative; }
.hero__media img { margin-left: auto; }

.hero__shape {
    position: absolute;
    pointer-events: none;
    opacity: .9;
    animation: floatY 6s ease-in-out infinite;
}

.hero__shape--1 { top: 12%; right: 38%; width: 52px; animation-delay: .2s; }
.hero__shape--2 { top: 26%; right: 12%; width: 62px; animation-delay: 1.1s; }
.hero__shape--3 { top: 58%; right: 46%; width: 88px; animation-delay: .6s; }
.hero__shape--4 { bottom: 16%; right: 6%; width: 74px; animation-delay: 1.6s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
}

/* =====================================================================
   ÖZELLİK KUTULARI
   ===================================================================== */

.features { margin-top: -80px; position: relative; z-index: 10; }

.feature-card {
    background: var(--c-bg-soft);
    padding: 40px 32px 36px;
    border-bottom: 3px solid transparent;
    height: 100%;
    transition: all var(--transition);
}

.feature-card:hover {
    background: var(--c-white);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--c-primary);
    transform: translateY(-6px);
}

.feature-card__icon {
    width: 46px;
    height: 46px;
    color: var(--c-primary);
    margin-bottom: 22px;
}

.feature-card__title { font-size: 1.28rem; margin-bottom: 14px; }
.feature-card__text { font-size: .93rem; color: var(--c-muted); margin: 0; }

/* =====================================================================
   HAKKINDA / METİN + GÖRSEL
   ===================================================================== */

.about { position: relative; }

.about__inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 60px;
    align-items: center;
}

.about__title span { display: block; }
.about__title span + span { padding-left: 2.4rem; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid var(--c-border);
}

.about-stat__value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat__label { font-size: .85rem; color: var(--c-muted); }

/* =====================================================================
   HİZMET KARTLARI
   ===================================================================== */

.services-section {
    position: relative;
    background: var(--c-white);
}

.services-section__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 78%;
    opacity: .75;
    pointer-events: none;
}

.services-section > .container { position: relative; z-index: 2; }

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 44px 30px 38px;
    height: 100%;
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-8px);
}

.service-card__icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-bg-alt);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card__icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card:hover .service-card__icon { transform: scale(1.08); }

.service-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.service-card__title a { color: inherit; }
.service-card:hover .service-card__title a { color: var(--c-primary); }
.service-card__text { font-size: .9rem; color: var(--c-muted); margin: 0 0 20px; }

.service-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--c-primary);
}

.service-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Renk varyantları (orijinal sitedeki ikon halkaları) */
.service-card:nth-child(6n+1) .service-card__icon { background: #fdeef0; }
.service-card:nth-child(6n+2) .service-card__icon { background: #fff6e6; }
.service-card:nth-child(6n+3) .service-card__icon { background: #e8f6ee; }
.service-card:nth-child(6n+4) .service-card__icon { background: #eaf0fa; }
.service-card:nth-child(6n+5) .service-card__icon { background: #fff3e0; }
.service-card:nth-child(6n+6) .service-card__icon { background: #f0eafa; }

/* =====================================================================
   TEKLİF BÖLÜMÜ
   ===================================================================== */

.quote-section {
    position: relative;
    background: #0d2b45;
    color: var(--c-white);
    overflow: hidden;
}

.quote-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .28;
}

.quote-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 34, 56, .94) 0%, rgba(10, 34, 56, .72) 55%, rgba(10, 34, 56, .35) 100%);
}

.quote-section > .container { position: relative; z-index: 3; }

.quote-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 60px;
    align-items: center;
}

.quote-section__lead { color: #cfdce6; margin-bottom: 26px; }

.quote-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--c-white);
}

.quote-phone svg { width: 34px; height: 34px; color: #7fc4f0; }

.quote-note { font-size: .93rem; color: #b9cad8; margin-bottom: 10px; }

/* =====================================================================
   FORMLAR
   ===================================================================== */

.form-card {
    background: var(--c-white);
    border-radius: 6px;
    padding: 42px 38px;
    box-shadow: var(--shadow-lg);
    color: var(--c-body);
}

.form-card__title { font-size: 1.35rem; margin-bottom: 6px; }
.form-card__sub { font-size: .88rem; color: var(--c-muted); margin-bottom: 26px; }

.form-group { margin-bottom: 24px; }

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-muted);
    margin-bottom: 8px;
}

.form-label .req { color: var(--c-danger); }

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: .94rem;
    color: var(--c-body);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--c-border);
    padding: 10px 2px 10px 30px;
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus { outline: none; border-bottom-color: var(--c-primary); }
.form-control::placeholder { color: #a9b4bf; }
.form-control.is-invalid { border-bottom-color: var(--c-danger); }

textarea.form-control { min-height: 96px; resize: vertical; line-height: 1.7; }

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7885' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 11px;
    padding-right: 24px;
    cursor: pointer;
}

.form-field { position: relative; }

.form-field__icon {
    position: absolute;
    left: 2px;
    top: 12px;
    width: 17px;
    height: 17px;
    color: var(--c-secondary);
    pointer-events: none;
}

.form-field--textarea .form-field__icon { top: 12px; }

.form-error {
    display: block;
    font-size: .8rem;
    color: var(--c-danger);
    margin-top: 6px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Radyo grubu (teklif konusu) */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 10px;
    margin-top: 4px;
}

.radio-item { position: relative; }

.radio-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--c-muted);
    cursor: pointer;
    line-height: 1.35;
    padding: 4px 0;
}

.radio-item label::before {
    content: '';
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border: 1px solid #c4ccd4;
    border-radius: 50%;
    transition: all var(--transition);
}

.radio-item input:checked + label { color: var(--c-primary); font-weight: 500; }

.radio-item input:checked + label::before {
    border-color: var(--c-primary);
    border-width: 5px;
}

.radio-item input:focus-visible + label::before {
    box-shadow: 0 0 0 3px rgba(18, 84, 130, .2);
}

/* Koşullu alanlar */
.conditional-fields { display: none; }
.conditional-fields.is-visible { display: block; }

/* Dosya alanı */
.file-field {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px dashed var(--c-border);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: .85rem;
    color: var(--c-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.file-field:hover { border-color: var(--c-primary); background: var(--c-bg-soft); }
.file-field input { display: none; }
.file-field svg { width: 19px; height: 19px; color: var(--c-secondary); flex: 0 0 auto; }
.file-field__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Honeypot */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden;
}

/* Bildirimler */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    border-radius: var(--radius);
    font-size: .9rem;
    margin-bottom: 22px;
    border-left: 3px solid;
}

.alert svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; }
.alert--success { background: #e8f6ee; color: #14683c; border-color: var(--c-success); }
.alert--danger  { background: #fdecea; color: #922b21; border-color: var(--c-danger); }
.alert--warning { background: #fff8e6; color: #8a6116; border-color: var(--c-warning); }
.alert--info    { background: #e9f2f9; color: #10496f; border-color: var(--c-primary); }

/* =====================================================================
   SAYFA BANNERI
   ===================================================================== */

.page-banner {
    position: relative;
    padding: 108px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--c-white);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 30, 48, .82), rgba(10, 30, 48, .72));
}

.page-banner__inner { position: relative; z-index: 2; }
.page-banner__title { color: var(--c-white); margin-bottom: 12px; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .87rem;
    color: #c9d6e1;
}

.breadcrumb a { color: #c9d6e1; }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb li + li::before { content: '-'; margin-right: 10px; opacity: .6; }

/* =====================================================================
   HİZMET DETAY
   ===================================================================== */

.service-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }

.info-card {
    background: var(--c-bg-soft);
    padding: 38px 28px 34px;
    text-align: center;
    border-radius: 4px;
    transition: all var(--transition);
}

.info-card:hover { background: var(--c-white); box-shadow: var(--shadow-md); transform: translateY(-5px); }

.info-card__icon { width: 48px; height: 48px; color: var(--c-primary); margin: 0 auto 20px; }
.info-card__title { font-size: 1.18rem; margin-bottom: 12px; }
.info-card__text { font-size: .88rem; color: var(--c-muted); margin-bottom: 22px; }

.risk-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 60px;
    align-items: center;
}

.risk-list { list-style: none; margin: 26px 0 0; padding: 0; }

.risk-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: .96rem;
}

.risk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(18, 84, 130, .16);
}

.risk-section__media img { border-radius: 6px; box-shadow: var(--shadow-md); }

/* Sık sorulanlar */
.faq { max-width: 860px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--c-white);
    transition: box-shadow var(--transition);
}

.faq-item.is-open { box-shadow: var(--shadow-sm); }

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-heading);
    background: none;
    border: 0;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-item__q:hover { color: var(--c-primary); }

.faq-item__icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-bg-alt);
    color: var(--c-primary);
    font-size: 1.15rem;
    line-height: 1;
    transition: all var(--transition);
}

.faq-item.is-open .faq-item__icon { background: var(--c-primary); color: var(--c-white); transform: rotate(45deg); }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-item__a-inner { padding: 0 24px 22px; color: var(--c-muted); font-size: .94rem; }

/* Hizmet listesi sayfası (akordeon) */
.service-list { display: grid; gap: 16px; }

.service-row {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 26px 30px;
    transition: all var(--transition);
}

.service-row:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateX(6px); }

.service-row__icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg-alt);
    border-radius: 50%;
}

.service-row__icon img { width: 34px; height: 34px; object-fit: contain; }
.service-row__body { flex: 1; min-width: 0; }
.service-row__title { font-size: 1.18rem; margin-bottom: 6px; }
.service-row__text { font-size: .9rem; color: var(--c-muted); margin: 0; }

.service-row__plus {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    color: var(--c-primary);
    font-size: 1.3rem;
    transition: all var(--transition);
}

.service-row:hover .service-row__plus { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }

/* =====================================================================
   İLETİŞİM SAYFASI
   ===================================================================== */

.contact__inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }

.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }

.contact-info__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
}

.contact-info__icon svg { width: 28px; height: 28px; }
.contact-info__title { font-size: 1.12rem; margin-bottom: 6px; }
.contact-info__text { font-size: .91rem; color: var(--c-muted); margin: 0; }
.contact-info__text a { color: var(--c-muted); }
.contact-info__text a:hover { color: var(--c-primary); }

.map-embed {
    height: 420px;
    background: var(--c-bg-alt);
    filter: grayscale(.3);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =====================================================================
   ALT BİLGİ (FOOTER)
   ===================================================================== */

.site-footer {
    position: relative;
    background: #f7f9fb;
    background-size: cover;
    background-position: center;
    padding: 80px 0 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 249, 251, .92);
}

.site-footer > .container { position: relative; z-index: 2; }

.footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) minmax(0, .8fr);
    gap: 50px;
    padding-bottom: 60px;
}

.footer__logo { max-height: 96px; width: auto; margin-bottom: 22px; }
.footer__text { font-size: .93rem; color: var(--c-muted); max-width: 400px; }

.footer__title { font-size: 1.15rem; margin-bottom: 22px; }

.footer-contact { list-style: none; margin: 0; padding: 0; }

.footer-contact li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: .92rem;
    color: var(--c-muted);
}

.footer-contact svg { width: 17px; height: 17px; color: var(--c-primary); flex: 0 0 auto; margin-top: 4px; }
.footer-contact a { color: var(--c-muted); }
.footer-contact a:hover { color: var(--c-primary); }

.footer__hours-title { font-family: var(--font-heading); font-weight: 600; color: var(--c-heading); margin: 26px 0 8px; font-size: .95rem; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .92rem; color: var(--c-muted); display: inline-flex; align-items: center; gap: 9px; }
.footer-links a::before { content: ''; width: 6px; height: 1px; background: var(--c-primary); transition: width var(--transition); }
.footer-links a:hover { color: var(--c-primary); }
.footer-links a:hover::before { width: 12px; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    color: var(--c-secondary);
    background: var(--c-white);
    transition: all var(--transition);
}

.footer-social a:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }

.copyright {
    position: relative;
    z-index: 2;
    background: #0d2b45;
    color: #a8bdcf;
    text-align: center;
    padding: 20px 0;
    font-size: .85rem;
}

.copyright a { color: #7fc4f0; }

/* Yukarı çık */
.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: var(--c-white);
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all var(--transition);
    z-index: 800;
    box-shadow: var(--shadow-md);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-primary-dark); }
.back-to-top svg { width: 17px; height: 17px; }

/* Sabit iletişim düğmeleri (mobil) */
.floating-cta { display: none; }

/* 404 */
.error-page { padding: 120px 0; text-align: center; }
.error-page__code { font-family: var(--font-heading); font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; color: var(--c-primary); line-height: 1; margin-bottom: 10px; }
.error-page__title { margin-bottom: 14px; }
.error-page__text { color: var(--c-muted); max-width: 520px; margin: 0 auto 32px; }

/* Belirme animasyonu */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* =====================================================================
   DUYARLI TASARIM
   ===================================================================== */

@media (max-width: 1199px) {
    .nav__menu { gap: 22px; }
    .section { padding: 84px 0; }
    .hero__inner { padding: 70px 0; }
}

@media (max-width: 991px) {
    :root { --header-h: 96px; }
    .brand img { height: 78px; }
    .nav-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--c-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 26px 22px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, .14);
        overflow-y: auto;
        transition: right var(--transition);
        z-index: 1000;
    }

    .nav.is-open { right: 0; }

    .nav__menu { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__menu > li > a { padding: 14px 0; border-bottom: 1px solid var(--c-border); justify-content: space-between; }
    .nav__menu > li > a::after { display: none; }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
        border-left: 2px solid var(--c-border);
        border-radius: 0;
        margin: 0 0 6px 10px;
        padding: 4px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }

    .nav__menu > li.is-expanded > .submenu { max-height: 460px; }
    .submenu a { padding: 10px 16px; }

    .nav > .header__actions { display: flex; flex-direction: column; align-items: stretch; margin-top: 22px; gap: 10px; }
    .header__actions--desktop { display: none; }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(8, 24, 40, .5);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
    }

    .nav-backdrop.is-open { opacity: 1; visibility: visible; }

    .hero__inner,
    .about__inner,
    .quote-section__inner,
    .contact__inner,
    .service-intro__inner,
    .risk-section__inner { grid-template-columns: 1fr; gap: 44px; }

    .hero { min-height: auto; }
    .hero__media { display: none; }
    /* Dekoratif balonlar mobilde metinle çakışıyor */
    .hero__shape { display: none; }
    .hero__bg { opacity: .35; background-position: right bottom; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .grid-3, .grid-4, .info-cards { grid-template-columns: repeat(2, 1fr); }
    .features { margin-top: 0; padding-top: 70px; }
    .about__title span + span { padding-left: 0; }
}

@media (max-width: 767px) {
    .section { padding: 62px 0; }
    .topbar__inner { justify-content: center; text-align: center; font-size: .78rem; }
    .topbar__address { display: none; }
    .topbar__info { gap: 18px; }
    .grid-2, .grid-3, .grid-4, .info-cards,
    .about-stats, .contact-info, .footer__inner { grid-template-columns: 1fr; }
    .radio-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 30px 22px; }
    .page-banner { padding: 72px 0; }
    .quote-phone { font-size: 1.45rem; }
    .brand img { height: 62px; }
    .service-row { flex-wrap: wrap; gap: 16px; padding: 22px; }
    .service-row__icon { width: 52px; height: 52px; }
    .about-stats { text-align: center; }

    .floating-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 850;
        box-shadow: 0 -4px 18px rgba(0, 0, 0, .12);
    }

    .floating-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        font-family: var(--font-heading);
        font-size: .85rem;
        font-weight: 600;
        color: var(--c-white);
        background: var(--c-primary);
    }

    .floating-cta a + a { background: var(--c-secondary); }
    .floating-cta svg { width: 16px; height: 16px; }

    body { padding-bottom: 52px; }
    .back-to-top { bottom: 66px; right: 16px; }
}
