*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#132b43;
    background:#fff;
    line-height:1.55;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}


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

.site-header{
    background:#fff;
    border-bottom:1px solid #e6ebf0;
    position:sticky;
    top:0;
    z-index:50;
}

.nav-wrap{
    min-height:74px;
    display:flex;
    align-items:center;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#102a43;
    min-width:280px;
}

.brand-mark{
    font:62px/1 Georgia,serif;
    color:#d4ad64;
}

.brand strong{
    display:block;
    font:700 22px Georgia,serif;
    letter-spacing:.6px;
}

.brand small{
    display:block;
    font-size:9px;
    letter-spacing:.8px;
}

.nav{
    display:flex;
    align-items:center;
    gap:22px;
    margin-left:auto;
}

.nav a{
    color:#19324b;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    padding:27px 0;
    position:relative;
}

.nav a.active,
.nav a:hover{
    color:#b88c42;
}

.nav a.active:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:16px;
    height:2px;
    background:#d4ad64;
}

.header-call,
.btn{
    background:#0b2942;
    color:#fff;
    border-radius:7px;
    padding:12px 18px;
    text-decoration:none;
    font-weight:700;
    border:0;
    display:inline-block;
}

.header-call{
    white-space:nowrap;
}

.menu-toggle{
    display:none;
    background:none;
    border:0;
    font-size:28px;
}


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

.hero{
    min-height:510px;
    background:
        linear-gradient(
            90deg,
            rgba(5,27,45,.96) 0%,
            rgba(5,27,45,.85) 43%,
            rgba(5,27,45,.18) 100%
        ),
        url('../hero-office.svg') center/cover;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:620px;
    color:#fff;
    padding:72px 0;
}

.eyebrow{
    font-size:13px;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.eyebrow:before{
    content:"";
    display:inline-block;
    width:22px;
    height:2px;
    background:#d7b36c;
    vertical-align:middle;
    margin-right:9px;
}

.hero h1{
    font:700 48px/1.08 Georgia,serif;
    margin:20px 0 12px;
}

.hero h1 span{
    color:#d9b46c;
}

.hero p{
    font-size:18px;
    max-width:540px;
}

.actions{
    display:flex;
    gap:18px;
    margin-top:26px;
}

.btn.gold{
    background:#e0b86c;
    color:#102a43;
}

.btn.whatsapp{
    background:#25c85a;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
    padding:66px 0;
}

.section-head{
    text-align:center;
    margin-bottom:34px;
}

.section-head h2{
    font:700 32px Georgia,serif;
    margin:7px 0;
}

.section-head p{
    color:#65758a;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.service-card{
    padding:24px 18px;
    border:1px solid #e1e7ee;
    border-radius:8px;
    background:#fff;
    box-shadow:0 6px 18px rgba(18,42,66,.04);
}

.service-card .icon{
    font-size:30px;
}

.service-card h3{
    font-size:15px;
    margin:8px 0;
}

.service-card p{
    font-size:13px;
    color:#637188;
}


/* =========================================================
   WHY
   ========================================================= */

.why{
    background:#092a44;
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:20px;
}

.why-item .big{
    font-size:38px;
    color:#d8b36b;
}

.why-item h3{
    margin:6px 0;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:38px;
    align-items:center;
}

.office-card{
    min-height:330px;
    border-radius:10px;
    background:linear-gradient(135deg,#0b2942,#1f4d6c);
    display:grid;
    place-items:center;
    color:#d8b36b;
    font:42px Georgia,serif;
}


/* =========================================================
   CTA
   ========================================================= */

.cta{
    background:#0b2942;
    color:#fff;
    border-radius:10px;
    padding:30px;
}


/* =========================================================
   ARTICLES
   ========================================================= */

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

.article{
    border:1px solid #e2e7ec;
    border-radius:9px;
    overflow:hidden;
}

.article-img{
    height:150px;
    background:linear-gradient(135deg,#0b2942,#7290a7);
    display:grid;
    place-items:center;
    color:#fff;
    font-size:38px;
}

.article-body{
    padding:18px;
}

.article-body h3{
    font:700 18px Georgia,serif;
    margin:7px 0;
}

.article-body small{
    color:#b78d45;
    font-weight:700;
}


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

.page-hero{
    background:#092a44;
    color:#fff;
    padding:60px 0;
}

.page-hero h1{
    font:700 42px Georgia,serif;
    margin:0;
}


/* =========================================================
   CONTENT
   ========================================================= */

.content{
    padding:55px 0;
}


/* =========================================================
   SERVICES DETAIL
   ========================================================= */

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

.service-detail{
    padding:26px;
    border:1px solid #e0e6ed;
    border-radius:10px;
}

.service-detail h2{
    font:700 22px Georgia,serif;
}


/* =========================================================
   CALCULATORS
   ========================================================= */

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

.calc{
    border:1px solid #dde5ed;
    border-radius:12px;
    padding:22px;
    background:#fff;
    box-shadow:0 8px 22px rgba(20,45,70,.06);
}

.calc h3{
    font:700 20px Georgia,serif;
    margin-top:0;
}

.field{
    margin:12px 0;
}

.field label{
    display:block;
    font-weight:700;
    font-size:13px;
    margin-bottom:5px;
}

.field input,
.field select,
.field textarea{
    width:100%;
    padding:11px;
    border:1px solid #ccd7e1;
    border-radius:6px;
    font:inherit;
}

.result{
    background:#f1f5f8;
    border-radius:7px;
    padding:12px;
    margin-top:12px;
    font-weight:700;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-card{
    border:1px solid #e1e7ed;
    padding:25px;
    border-radius:10px;
}

.contact-row{
    padding:12px 0;
    border-bottom:1px solid #edf0f3;
}

.map{
    width:100%;
    height:360px;
    border:0;
    border-radius:10px;
}


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

.footer{
    background:#08253d;
    color:#fff;
    margin-top:50px;
}


/* FOOTER 4 KOLON */

.footer-grid{
    width:min(1180px,92%);
    margin:0 auto;

    padding:48px 0;

    display:grid;
    grid-template-columns:1.3fr 1fr 1.3fr 1fr;
    gap:35px;

    align-items:start;
}

.footer-column{
    min-width:0;
}


/* FOOTER BAŞLIKLARI */

.footer-column h4{
    margin:0 0 14px;
    color:#d9b46c;
    font-size:15px;
    line-height:1.3;
}


/* FOOTER NORMAL LINKLER */

.footer-column a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:7px 0;
    font-size:14px;
    line-height:1.45;
}

.footer-column a:hover{
    color:#d9b46c;
}


/* FOOTER PARAGRAFLARI */

.footer-column p{
    margin:8px 0;
    font-size:14px;
    color:#dfe8ee;
    line-height:1.55;
}


/* MARKA */

.footer-brand{
    color:#fff;
}

.footer-brand strong{
    color:#fff;
}

.footer-brand small{
    color:#fff;
}


/* SLOGAN */

.footer-slogan,
.signature{
    font:italic 18px Georgia,serif;
    color:#dfe8ee;
    line-height:1.5;
}


/* SOSYAL MEDYA */

.socials{
    display:flex;
    align-items:center;
    gap:9px;
}

.socials a{
    width:34px;
    height:34px;

    border:1px solid #6c8397;
    border-radius:50%;

    display:grid;
    place-items:center;

    margin:0;

    color:#fff;
    text-decoration:none;
}

.socials a:hover{
    border-color:#d9b46c;
    color:#d9b46c;
}


/* YOL TARİFİ */

.small-btn{
    display:inline-block!important;

    border:1px solid #b5c2cd;

    padding:7px 11px;

    border-radius:5px;

    color:#fff!important;
}

.small-btn:hover{
    border-color:#d9b46c;
    color:#d9b46c!important;
}


/* =========================================================
   TASARIM / GELİŞTİRME NOTU
   ========================================================= */

.aa-digital-credit{
    width:min(1180px,92%);
    margin:0 auto;

    padding:15px 0;

    border-top:1px solid #27425a;
    border-bottom:1px solid #27425a;

    text-align:center;

    color:#b8c5cf;

    font-size:11px;
    line-height:1.6;
}

.aa-digital-credit strong{
    color:#d9b46c;
}


/* =========================================================
   FOOTER ALT BAR
   ========================================================= */

.footer-bottom{
    width:min(1180px,92%);
    margin:0 auto;

    border-top:0;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:16px 0;

    font-size:12px;

    color:#b8c5cf;
}

.footer-bottom > div:first-child{
    flex:1;
}


/* KVKK / GİZLİLİK / ÇEREZ */

.footer-legal{
    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:9px;

    white-space:nowrap;
}

.footer-legal a{
    display:inline!important;

    margin:0!important;

    color:#b8c5cf;

    text-decoration:none;

    font-size:12px;
}

.footer-legal a:hover{
    color:#d9b46c;
}

.footer-legal span{
    color:#64798b;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.floating-wa{
    position:fixed;

    right:20px;
    bottom:20px;

    width:58px;
    height:58px;

    border-radius:50%;

    display:grid;
    place-items:center;

    background:#25c85a;

    color:#fff;

    text-decoration:none;

    font-size:28px;

    z-index:40;

    box-shadow:0 8px 20px #0003;
}


/* =========================================================
   NOTICE / SUCCESS / ERROR
   ========================================================= */

.notice{
    padding:14px 18px;
    background:#fff8e9;
    border-left:4px solid #d8b36b;
    border-radius:5px;
}

.success{
    padding:15px;
    background:#eaf8ef;
    border-left:4px solid #2ca65a;
}

.error{
    padding:15px;
    background:#fff0f0;
    border-left:4px solid #d9534f;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:980px){

    .nav{
        gap:12px;
    }

    .nav a{
        font-size:12px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .calc-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:760px){

    .nav{
        display:none;

        position:absolute;

        top:74px;
        left:0;
        right:0;

        background:#fff;

        padding:10px 5%;

        flex-direction:column;

        align-items:flex-start;

        box-shadow:0 10px 20px #0001;
    }

    .nav.open{
        display:flex;
    }

    .nav a{
        padding:9px 0;
    }

    .nav a.active:after{
        bottom:0;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    .header-call{
        display:none;
    }

    .brand{
        min-width:0;
    }

    .brand strong{
        font-size:17px;
    }

    .brand small{
        font-size:7px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-content{
        padding:55px 0;
    }

    .about-split,
    .contact-grid,
    .service-list{
        grid-template-columns:1fr;
    }

    .calc-grid,
    .articles{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr 1fr;
    }


    /* MOBİL FOOTER */

    .footer-grid{
        grid-template-columns:1fr;
        padding:38px 0;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-legal{
        justify-content:flex-start;
        flex-wrap:wrap;
        white-space:normal;
    }

    .aa-digital-credit{
        text-align:center;
        font-size:10px;
    }

    .section{
        padding:48px 0;
    }

}