
:root{
    --primary:#0d6efd;
    --dark:#031b4e;
}

body{
    font-family:Segoe UI,Arial,sans-serif;
}

.navbar-nav .nav-link:hover{
    background:#0d6efd;
    color:#fff !important;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(13,110,253,.25);
}
.logo{
    height:55px;
}

.hero{
    background:linear-gradient(rgba(3,27,78,.92),rgba(3,27,78,.92)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1920&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:100px 0;
}

.hero h1{
    font-size:3.5rem;
    font-weight:700;
}

.hero p{
    font-size:1.2rem;
}

.hero-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.section-title{
    font-weight:700;
}

.service-card{
    background:linear-gradient(135deg,#edf4ff,#dbeafe);
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    border:1px solid rgba(13,110,253,.15);
}

.service-card:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    color:#fff;
    box-shadow:0 20px 40px rgba(13,110,253,.25);
}

.icon-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
}

.icon-circle i{
    font-size:38px;
    color:var(--primary);
}

.features{
    background:#f8f9fa;
}

.feature-box{
    text-align:center;
    padding:20px;
}

.feature-box i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.contact-section{
    background:linear-gradient(135deg,#02143d,#052c65);
    color:#fff;
}

.contact-card{
    background:#fff;
    color:#111;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    height:100%;
}

.contact-card i{
    font-size:38px;
    color:var(--primary);
}

.contact-card a{
    text-decoration:none;
}

.form-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
}

.footer{
    background:#011336;
    color:#fff;
}

.footer a{
    color:#d6e4ff;
    text-decoration:none;
}
.footer ul li{
    margin-bottom:10px;
}

.footer .contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.footer .contact-item i{
    color:#0d6efd;
    font-size:18px;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
}

.whatsapp i{
    margin-right:8px;
}

/* efekt */
.contact-card{
    transition:all .35s ease;
    border:2px solid transparent;
}

.contact-card:hover{
    transform:translateY(-10px) scale(1.03);
    border-color:#0d6efd;
    box-shadow:0 20px 40px rgba(13,110,253,.25);
}

.contact-card i{
    transition:all .35s ease;
}

.contact-card:hover i{
    transform:scale(1.2) rotate(8deg);
}

/* KVKK Çubuğu */
.cookie-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#011336;
    color:#fff;
    padding:15px 20px;
    z-index:9999;
    box-shadow:0 -5px 20px rgba(0,0,0,.2);
    display:none;
}

.cookie-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.cookie-content p{
    margin:0;
    font-size:14px;
}

.cookie-content a{
    color:#66b2ff;
    text-decoration:none;
}

.cookie-buttons{
    display:flex;
    gap:10px;
}

.cookie-btn{
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

.cookie-accept{
    background:#0d6efd;
    color:#fff;
}

.cookie-accept:hover{
    background:#0b5ed7;
}

.cookie-settings{
    background:#fff;
    color:#011336;
}

@media(max-width:768px){
    .cookie-content{
        flex-direction:column;
        text-align:center;
    }
}

/* Destek Talep Butonu */
.support-tab{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    border-radius:0 15px 15px 0;
    display:flex;
    align-items:center;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    z-index:9999;
    transition:all .35s ease;
    box-shadow:0 10px 25px rgba(13,110,253,.35);
}

.support-tab:hover{
    width:220px;
    color:#fff;
}

.support-icon{
    min-width:60px;
    text-align:center;
    font-size:24px;
}

.support-text{
    white-space:nowrap;
    opacity:0;
    transition:.3s;
    font-weight:600;
    font-size:17px;
}

.support-tab:hover .support-text{
    opacity:1;
}
