/* ===== Çətir Sığorta Agentliyi — shared styles ===== */

:root {
    --navy: #003399;
    /* ana brend */
    --navy-2: #2D4599;
    --purple: #806699;
    --rose: #D28799;
    --pink: #FF9999;
    --ink: #0a1633;
    --gray: #5b6178;
    --line: #e7e9f2;
    --light: #f5f6fb;
    --white: #ffffff;
    --grad: var(--navy);
    --grad-soft: #eef1f8;
    --radius: 18px;
    --shadow: 0 10px 40px rgba(0, 51, 153, .08);
    --shadow-lg: 0 24px 60px rgba(0, 51, 153, .16);
    --maxw: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Comfortaa', 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img,
svg {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0;
    font-family: 'Comfortaa', 'Manrope', sans-serif
}


/* buttons */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: .25s;
    font-family: inherit
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 51, 153, .3)
}

.btn-primary:hover {
    background: #0a1633;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 51, 153, .4)
}

.btn-grad {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 51, 153, .22)
}

.btn-grad:hover {
    background: #0a1633;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 51, 153, .3)
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--line)
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff
}

.btn-white {
    background: #fff;
    color: var(--navy)
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18)
}


/* generic section */

.section {
    padding: 90px 0
}

.section-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px
}

.tag {
    display: none;
    background: rgba(0, 51, 153, .08);
    color: var(--navy);
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 16px;
    border-radius: 50px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-head h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    margin-bottom: 14px
}

.section-head p {
    color: var(--gray);
    font-size: 17px
}


/* ===== HEADER ===== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .3s
}

header.nav-hidden {
    transform: translateY(-100%)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

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

.brand .mark {
    width: 56px;
    height: 56px;
    flex-shrink: 0
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block
}

.footer-logo {
    height: 64px;
    filter: brightness(0) invert(1);
}

.logo-chip {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.logo-chip .mark {
    width: 44px;
    height: 44px
}

.brand .name {
    font-family: 'Comfortaa', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.05;
    color: var(--navy)
}

.brand .name small {
    display: block;
    font-family: 'Comfortaa', 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--purple);
    letter-spacing: 3px;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: .2s;
    position: relative;
    padding: 4px 0
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy)
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px
}

.phone-link svg {
    flex-shrink: 0
}

.footer-col a.ftico {
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.ftico svg {
    flex-shrink: 0;
    opacity: .9
}

[data-ic-inline] {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none
}

.burger span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: .3s
}


/* ===== PAGE HERO (inner pages) ===== */

.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    top: -180px;
    right: -120px;
    border-radius: 50%
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(30px, 5vw, 46px);
    position: relative;
    margin-bottom: 12px
}

.page-hero p {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    max-width: 620px;
    position: relative
}

.crumbs {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 18px;
    position: relative
}

.crumbs a:hover {
    color: #fff
}


/* ===== FOOTER ===== */

footer {
    background: #001a4d;
    color: rgba(255, 255, 255, .72);
    padding: 70px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-grid .brand .name {
    color: #fff
}

.footer-grid .brand .name small {
    color: var(--pink)
}

.footer-about p {
    font-size: 14px;
    max-width: 300px;
    margin: 18px 0
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    transition: .2s;
    color: #fff;
    font-weight: 700;
    font-size: 14px
}

.socials a:hover {
    background: var(--grad)
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px
}

.footer-col li {
    margin-bottom: 11px
}

.footer-col a {
    font-size: 14px;
    transition: .2s;
    display: inline-block
}

.footer-col a:hover {
    color: var(--pink);
    transform: translateX(3px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px
}

.footer-bottom .credit {
    color: #fff;
    font-weight: 700;
    transition: .2s
}

.footer-bottom .credit:hover {
    color: var(--pink)
}


/* ===== reusable cards / grids ===== */

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

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

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

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: .3s;
    display: flex;
    flex-direction: column
}

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

.product-card .ic {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    transition: .3s
}

.product-card:hover .ic {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px
}

.ph-ic {
    color: var(--navy);
    display: inline-flex;
    flex-shrink: 0
}

.product-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
    flex: 1
}

.product-card .more {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    transition: .2s
}

.product-card:hover .more {
    gap: 11px;
    color: var(--purple)
}

.feature {
    text-align: center;
    padding: 28px 18px
}

.feature .ic {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: var(--navy)
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px
}

.feature p {
    color: var(--gray);
    font-size: 14px
}


/* stats band */

.stats-band {
    background: var(--ink)
}

.stats-band .num {
    font-size: 42px;
    font-weight: 800;
    color: #fff
}

.stats-band .lbl {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    margin-top: 6px
}

.stats-band .grid-4>div {
    text-align: center
}


/* CTA banner */

.cta-banner {
    background: var(--navy);
    border-radius: 28px;
    padding: 56px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-banner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 70%);
    top: -160px;
    right: -110px;
    border-radius: 50%
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 14px;
    position: relative
}

.cta-banner p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    margin-bottom: 28px;
    position: relative
}

.cta-banner .btn {
    position: relative
}

.cta-phone-big {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    transition: .25s
}

.cta-phone-big svg {
    width: 28px;
    height: 28px;
    opacity: .85
}

.cta-phone-big:hover {
    color: var(--pink);
    transform: translateY(-2px)
}


/* ===== RESPONSIVE ===== */

@media(max-width:980px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:680px) {
    .nav-links,
    .phone-link {
        display: none
    }
    .burger {
        display: flex
    }
    .nav-links.show {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--line)
    }
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr
    }
    .section {
        padding: 60px 0
    }
    .cta-banner {
        padding: 40px 24px
    }
}