/* ===============================
   STTS UI v1
=============================== */

:root{

    --primary:#2563EB;
    --primary-dark:#1D4ED8;

    --success:#22C55E;

    --dark:#0F172A;

    --gray:#64748B;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --radius:18px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--dark);

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

.container{

    max-width:1280px;

}

/* Genel */

body{

    font-family:'Poppins',sans-serif;

    background:#F8FAFC;

    color:#1e293b;

}

.navbar{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    transition:.35s;

    border-bottom:1px solid rgba(0,0,0,.05);

}

.navbar-brand img{

    height:48px;

}

.nav-link{

    font-weight:600;

    margin:0 12px;

    color:#334155 !important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-primary{

    background:var(--primary);

    border:none;

    border-radius:14px;

    padding:12px 28px;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

/* Footer */

.footer{

    background:#0F172A;

    color:#fff;

    padding:70px 0 20px;

    margin-top:80px;

}

.footer h5{

    margin-bottom:20px;

    font-weight:600;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:10px;

}

.footer a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

}

.footer p{

    color:#CBD5E1;

}

.footer hr{

    border-color:#334155;

}

.hero{

    padding-top:150px;

    min-height:100vh;

    background:

    radial-gradient(circle at top right,#DBEAFE,transparent 35%),

    radial-gradient(circle at bottom left,#E0F2FE,transparent 35%),

    #ffffff;

}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    margin-top:25px;

    font-size:20px;

    color:var(--gray);

    line-height:1.9;

    max-width:620px;

}

.hero img{

    width:100%;

    max-width:650px;

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}
.btn-lg{

    padding:16px 35px;

    border-radius:15px;

    font-weight:600;

}


.stats{

    padding:70px 0;

}

.counter{

    font-size:46px;

    font-weight:800;

    color:var(--primary);

}

.stats p{

    color:var(--gray);

    margin-top:8px;

}

.section-badge{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.section-title{

    margin-top:20px;

    font-size:42px;

    font-weight:800;

}

.section-title span{

    color:#2563EB;

}

.section-text{

    color:#64748B;

    margin-top:15px;

    font-size:18px;

}

.feature-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    font-size:45px;

    color:#2563EB;

}

.feature-box h4{

    margin-top:25px;

    font-weight:700;

}

.feature-box p{

    margin-top:15px;

    color:#64748B;

}

.dashboard-preview{

background:#fff;

border-radius:25px;

padding:25px;

box-shadow:0 35px 80px rgba(0,0,0,.08);

}

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.dots span{

display:inline-block;

width:12px;

height:12px;

border-radius:50%;

margin-right:5px;

}

.dots span:nth-child(1){

background:#ef4444;

}

.dots span:nth-child(2){

background:#f59e0b;

}

.dots span:nth-child(3){

background:#22c55e;

}

.mini-card{

background:#f8fafc;

padding:20px;

border-radius:15px;

}

.mini-card h3{

margin-top:10px;

font-weight:700;

}

.warning{

background:#FEF3C7;

}

.success{

background:#DCFCE7;

}

.chart-area{

height:220px;

display:flex;

align-items:flex-end;

gap:15px;

}

.bar{

flex:1;

background:#2563EB;

border-radius:12px 12px 0 0;

}

.pricing{

    background:#f8fafc;

}

.price-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    height:100%;

}

.price-card:hover{

    transform:translateY(-10px);

}

.price{

    font-size:46px;

    font-weight:700;

    color:#2563EB;

    margin:25px 0;

}

.price small{

    font-size:18px;

    color:#64748B;

}

.price-card ul{

    list-style:none;

    padding:0;

}

.price-card li{

    padding:12px 0;

}

.price-card i{

    color:#22C55E;

    margin-right:8px;

}

.active-package{

    border:2px solid #2563EB;

}

.popular-badge{

    position:absolute;

    right:20px;

    top:-15px;

    background:#2563EB;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

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

.inner-hero{

    padding:140px 0 90px;

    background:
    radial-gradient(circle at top right,#DBEAFE,transparent 35%),
    #ffffff;

}


.inner-hero h1{

    font-size:55px;

    font-weight:800;

    margin-top:25px;

}


.inner-hero h1 span{

    color:#2563EB;

}


.inner-hero p{

    color:#64748B;

    font-size:20px;

    max-width:700px;

    margin:20px auto 0;

    line-height:1.8;

}



/* ===============================
   FEATURE BOX
=============================== */


.feature-box{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    height:100%;

    box-shadow:0 20px 50px rgba(15,23,42,.06);

    transition:.35s;

}


.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(15,23,42,.12);

}



.feature-box i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:32px;

}



.feature-box h4{

    margin-top:25px;

    font-size:22px;

    font-weight:700;

}



.feature-box p{

    color:#64748B;

    line-height:1.8;

    margin-top:15px;

}



/* ===============================
   HOW WORK
=============================== */


.how-work{

    background:#F8FAFC;

}



.step-box{

    background:#fff;

    padding:40px;

    border-radius:22px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}



.number{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    background:#2563EB;

    color:#fff;

    border-radius:50%;

    font-size:25px;

    font-weight:700;

}



.step-box h4{

    margin-top:25px;

    font-weight:700;

}


.step-box p{

    color:#64748B;

    line-height:1.8;

}



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


.cta-box{

    margin:80px 0;

}



.cta-box .container{

    background:#0F172A;

    padding:70px 40px;

    border-radius:30px;

    color:#fff;

}



.cta-box h2{

    font-size:42px;

    font-weight:800;

}



.cta-box p{

    color:#CBD5E1;

    font-size:18px;

    margin:20px 0 35px;

}


.comparison{

    padding:90px 0;

}


.comparison-table{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}


.comparison-table th{

    background:#0F172A;

    color:#fff;

    padding:20px;

}


.comparison-table td{

    padding:18px;

    font-weight:500;

}


.comparison-table tr:hover{

    background:#F8FAFC;

}

/* Application */

.application-section{

    padding:80px 0;

}


.application-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.07);

}



.application-card label{

    font-weight:600;

    margin-bottom:8px;

}



.application-card .form-control{

    padding:14px 18px;

    border-radius:12px;

    border:1px solid #E2E8F0;

}



.application-card .form-control:focus{

    border-color:#2563EB;

    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);

}


/* CONTACT */


.contact-section{

    padding:80px 0;

}



.contact-info{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}



.contact-item{

    display:flex;

    gap:20px;

    align-items:center;

    margin-bottom:30px;

}



.contact-item i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EFF6FF;

    color:#2563EB;

    border-radius:15px;

    font-size:22px;

}



.contact-item h5{

    margin:0;

    font-weight:700;

}



.contact-item p{

    margin:5px 0 0;

    color:#64748B;

}



.contact-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}



.contact-form h3{

    margin-bottom:30px;

    font-weight:700;

}



.contact-form .form-control{

    padding:15px;

    border-radius:12px;

}



.map-section{

    padding-bottom:80px;

}



.map-box{

    height:350px;

    border-radius:25px;

    background:#F1F5F9;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#64748B;

    font-size:22px;

}


/* FAQ */


.faq-section{

    padding:80px 0;

}



.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:15px!important;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}



.accordion-button{

    padding:22px;

    font-weight:700;

    font-size:18px;

}



.accordion-button:not(.collapsed){

    background:#EFF6FF;

    color:#2563EB;

}



.accordion-body{

    padding:25px;

    color:#64748B;

    line-height:1.8;

}

/* AGENCIES */


.agency-section{

    padding:80px 0;

}



.agency-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.3s;

}



.agency-card:hover{

    transform:translateY(-8px);

}



.agency-logo{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EFF6FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:35px;

    font-weight:800;

}



.agency-card h4{

    font-weight:700;

}



.agency-card p{

    color:#64748B;

}



.agency-card span{

    background:#DCFCE7;

    color:#166534;

    padding:8px 15px;

    border-radius:30px;

    font-size:14px;

}



.stats-section{

    padding:60px 0;

    background:#F8FAFC;

}



.stat-box h2{

    color:#2563EB;

    font-size:45px;

    font-weight:800;

}



.stat-box p{

    color:#64748B;

    font-size:18px;

}

/* CONTENT PAGES */


.content-section{

    padding:80px 0;

}



.content-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}



.content-card h3{

    margin-top:30px;

    margin-bottom:15px;

    font-weight:700;

}



.content-card h3:first-child{

    margin-top:0;

}



.content-card p{

    color:#64748B;

    line-height:1.9;

}

/* 404 */


.error-page{

    min-height:500px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:80px 0;

}


.error-page h1{

    font-size:150px;

    font-weight:900;

    color:#2563EB;

    margin:0;

}


.error-page h2{

    font-weight:700;

}


.error-page p{

    color:#64748B;

    font-size:18px;

    margin:20px 0 35px;

}