/*=========================
GENEL
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
}
#menu{
    display:flex;
    justify-content:flex-end;
    gap:35px;
    border-bottom:2px solid #E30613;
    padding-bottom:15px;
}
a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================
TOPBAR
=========================*/

.topbar{
    background:#E30613;
    color:#fff;
    height:80px;
    display:flex;
    align-items:center;
}

.topbar .container{
    width:100%;
    max-width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 25px; /* Sağ ve soldan 25px boşluk */
    box-sizing:border-box;
}
.topbar .left{
    display:flex;
    gap:25px;
}

.topbar .left a{
    color:white;
    font-size:20px;
    transition:.3s;
}

.topbar .left a:hover{
    color:#ffd54f;
}

.topbar .left i{
    margin-right:5px;
}

.topbar .right{
    display:flex;
    gap:10px;
}

.topbar .right a{
    width:35px;
    height:35px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgb(255, 255, 255);
    color:rgb(254, 3, 3);
    transition:.3s;
}

.topbar .right a:hover{
    background:#fff;
    color:#e51e1e;
    transform:translateY(-3px);
}

/*=========================
HEADER
=========================*/

header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    
    
}

.header{
    height:150px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
 
.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-slogan{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo-slogan span{
    display:block;
    font-size:18px;
    color:#e30613;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:6px;
}

.logo-slogan h3{
    margin:3px 0 0;
    font-size:18px;
    color:#003366;
    font-weight:700;
    line-height:1.3;
}

/* Tablet */
@media (max-width:992px){

    .logo-area{
        gap:10px;
    }

    .logo-slogan span{
        font-size:10px;
        letter-spacing:1px;
    }

    .logo-slogan h3{
        font-size:14px;
    }

}

/* Telefon */
@media (max-width:768px){

    .logo-area{
        gap:8px;
    }

    .logo img{
        width:60px;
    }

    .logo-slogan span{
        font-size:9px;
        letter-spacing:0.5px;
    }

    .logo-slogan h3{
        font-size:11px;
        line-height:1.2;
    }

}




.logo a{
    display:inline-block;
}

.logo img{
    height:150px;
    width:auto;
    transition:transform .3s ease;
    margin-left:-130px;
}

.logo:hover img{
    transform:scale(1.05);
}
/* Mobil */
@media (max-width: 768px) {
    .logo img {
        height: 200px;      /* İsteğe göre ayarla */
        margin-left: 0;    /* Negatif boşluğu kaldır */
    }
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li a{
    color:#333;
    font-weight:500;
    position:relative;
    transition:.3s;
}

nav ul li a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#e51e1e;
    transition:.4s;

}

nav ul li a:hover::after{

    width:100%;

}

nav ul li a:hover{

    color:#e51e1e;

}

/*=========================
MENÜ BUTONU
=========================*/

.menu-btn{

display:none;
font-size:28px;
cursor:pointer;
color:#1e88e5;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.topbar{

display:none;

}

.menu-btn{

display:block;

}

nav{

position:absolute;

left:0;
top:90px;

background:#fff;

width:100%;

overflow:hidden;

max-height:0;

transition:.4s;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

nav.active{

max-height:450px;

}

nav ul{

flex-direction:column;

padding:25px;

gap:20px;

}

.header{

height:80px;

}

.logo img{

height:50px;

}

}

/*=========================
ANİMASYON
=========================*/

header{

animation:fadeDown .8s;

}

@keyframes fadeDown{

from{

opacity:0;
transform:translateY(-40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/*======================
SLIDER
======================*/

.slider{

    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;

}


.slides{

    position:relative;
    width:100%;
    height:100%;

}

.slide{

    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease;

}

.slide.active{

    opacity:1;
    z-index:1;

}

.slide img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.caption{

    position:absolute;

    top:50%;
    left:10%;

    transform:translateY(-50%);

    color:white;

    max-width:600px;

    animation:slideText 1s;

}

.caption h1{

    font-size:55px;
    margin-bottom:20px;

}

.caption p{

    font-size:20px;
    margin-bottom:35px;
    line-height:1.7;

}

.caption a{

    display:inline-block;

    background:#e51e1e;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    transition:.4s;

}

.caption a:hover{

    background:#c01515;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;

    cursor:pointer;

    background:rgba(0,0,0,.4);

    color:white;

    font-size:24px;

    border-radius:50%;

    transition:.4s;

    z-index:5;

}

.prev:hover,
.next:hover{

    background:#e51e1e;

}

.prev{

left:20px;

}

.next{

right:20px;

}

.dots{

position:absolute;

bottom:25px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:10px;

z-index:10;

}

.dot{

width:14px;
height:14px;

border-radius:50%;

background:white;

opacity:.4;

cursor:pointer;

transition:.3s;

}

.dot.active{

opacity:1;
background:#e51e1e;

}

@keyframes slideText{

from{

opacity:0;
transform:translateY(-30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@media(max-width:768px){

.slider{

height:420px;

}

.caption{

left:7%;
right:7%;

}

.caption h1{

font-size:34px;

}

.caption p{

font-size:17px;

}

}


/*=========================
HİZMETLER
==========================*/



.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#1e88e5;
    font-weight:600;
    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;
    margin:15px 0;
    color:#222;

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#777;
    line-height:1.8;

}




/*======================
BLOG
======================*/

/*==================
GOOGLE YORUMLARI
===================*/

.reviews{

    padding:100px 0;

    background:#f8fbff;

}

.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:white;

    padding:30px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-top{

    display:flex;

    align-items:center;

    gap:15px;

}

.review-top img{

    width:60px;

    height:60px;

    border-radius:50%;

}

.review-top h4{

    margin-bottom:5px;

}

.stars{

    color:#FFC107;

    margin:15px 0;

    font-size:18px;

}

.review-card p{

    color:#666;

    line-height:1.8;

}

.google{

    margin-top:20px;

    color:#e51e1e;

    font-size:14px;

    font-weight:600;

}

@media(max-width:992px){

.review-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.review-grid{

grid-template-columns:1fr;

}

}

/*======================
İLETİŞİM
======================*/

.contact{

    padding:100px 0;

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.info-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    border-radius:18px;

    background:#f8fbff;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.info-card:hover{

    transform:translateX(10px);

    background:#e51e1e;

    color:white;

}

.info-card i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:white;

    color:#e51e1e;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#e51e1e;

}

.contact-form button{

    border:none;

    background:#e51e1e;

    color:white;

    padding:18px;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.contact-form button:hover{

    background:#c01515;

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

/*=========================
FOOTER
==========================*/

.footer{

    background:#0f172a;

    color:white;

    padding:80px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:45px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-box p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box h3{

    margin-bottom:25px;

    font-size:22px;

    position:relative;

}

.footer-box h3::after{

    content:'';

    width:55px;

    height:3px;

    background:#e51e1e;

    position:absolute;

    left:0;

    bottom:-10px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

    color:#cbd5e1;

}

.footer-box ul li a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#FF5A5F;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#E30613;

    color:white;

    transition:.3s;

}

.footer-social a:hover{

    background:#000000;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    color:#94a3b8;

}

/*==================
YUKARI ÇIK
==================*/

#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#1e88e5;

    color:white;

    cursor:pointer;

    font-size:20px;

    display:none;

    transition:.3s;

    z-index:999;

}

#topBtn:hover{

    transform:translateY(-5px);

    background:#1565c0;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-box h3::after{

left:50%;
transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

}

/*=========================
MEGA MENU
=========================*/
/* Menü Yazı Rengi */
#menu > li > a{
    color:#003366;
    font-weight:600;
    transition:.3s;
}

/* Üzerine gelince */
#menu > li > a:hover{
    color:#e30613;
}
/*=========================
MEGA MENU
=========================*/

.dropdown{
    position:relative;
}

.dropdown > a i{
    margin-left:6px;
    font-size:12px;
}

.mega-menu{

    position:absolute;
    top:100%;
    left:0;

    display:inline-flex;
    flex-wrap:nowrap;
    gap:20px;

    width:auto;
    min-width:300px;

    background:#fff;
    padding:25px;

    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:999;
}

.dropdown:hover .mega-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.mega-column{

    flex:none;
    width:280px;

}

.mega-column h3{

    color:#e51e1e;
    margin-bottom:20px;
    font-size:20px;
    border-bottom:2px solid #e51e1e;
    padding-bottom:10px;

}

.mega-column ul{
    display:block;
}

.mega-column ul li{
    margin-bottom:12px;
}

.mega-column ul li a{

    color:#003366;
    font-size:15px;
    transition:.3s;

}

.mega-column ul li a:hover{

    color:#1e88e5;
    padding-left:8px;

}

@media (max-width:991px){

.mega-menu{
    position:static;
    width:100%;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    padding:10px 0;
    box-shadow:none;
    background:transparent;
}

.dropdown.active .mega-menu{
    display:block;
}

.mega-column{
    width:100%;
    margin-bottom:0;
}

}