*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f5f5;
}

header{
background:#0b1f4d;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:12px;
color:white;
font-size:28px;
font-weight:bold;
}

.logo img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:17px;
transition:0.3s;
}

nav a:hover{
color:#8faeff;
}
.hero-contact{
height:55vh;
background:url("ev11.jpeg") center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-contact{
height:45vh;
background:linear-gradient(135deg,#0b1f4d,#163a8a,#0b1f4d);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
overflow:hidden;
}

.hero-contact::before{
content:"";
position:absolute;
width:350px;
height:350px;
background:rgba(255,255,255,0.06);
border-radius:50%;
top:-80px;
left:-80px;
}

.hero-contact::after{
content:"";
position:absolute;
width:280px;
height:280px;
background:rgba(255,255,255,0.05);
border-radius:50%;
bottom:-70px;
right:-70px;
}

.hero-text{
position:relative;
z-index:2;
color:white;
animation:fadeUp 1.2s ease;
}

.hero-text h1{
font-size:68px;
margin-bottom:12px;
letter-spacing:2px;
}

.hero-text p{
font-size:22px;
opacity:0.95;
}
.contact-area{
padding:80px 60px;
display:flex;
justify-content:center;
gap:35px;
flex-wrap:wrap;
background:#f5f7fc;
}

.info-card{
width:360px;
background:white;
padding:40px;
border-radius:22px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
text-align:center;
transition:0.4s;
animation:fadeUp 1.4s ease;
}

.info-card:hover{
transform:translateY(-10px) scale(1.03);
}

.icon{
font-size:45px;
margin-bottom:15px;
}

.info-card h2{
font-size:30px;
color:#0b1f4d;
margin-bottom:15px;
}

.info-card p,
.info-card a{
font-size:19px;
color:#333;
text-decoration:none;
line-height:1.8;
}

.map-section{
padding:30px 60px 90px;
background:#f5f7fc;
}

.map-card{
max-width:1000px;
margin:auto;
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
animation:fadeUp 1.8s ease;
}

.map-header{
padding:22px;
font-size:26px;
font-weight:bold;
background:#0b1f4d;
color:white;
}

.fake-map{
height:420px;
position:relative;
background:
linear-gradient(90deg,#e6edf7 50%,transparent 50%),
linear-gradient(#e6edf7 50%,transparent 50%);
background-size:80px 80px;
background-color:#dce6f5;
overflow:hidden;
}

.road{
position:absolute;
background:#ffffff;
border-radius:50px;
box-shadow:0 0 10px rgba(0,0,0,0.05);
}

.road1{
width:120%;
height:70px;
top:160px;
left:-10%;
transform:rotate(-8deg);
}

.road2{
width:70px;
height:120%;
left:45%;
top:-10%;
}

.pin{
width:28px;
height:28px;
background:#e53935;
border-radius:50%;
position:absolute;
top:180px;
left:48%;
z-index:3;
box-shadow:0 0 15px rgba(229,57,53,0.5);
}





.phone-link{
text-decoration:none;
color:#333;
font-size:19px;
font-weight:bold;
transition:0.3s;
}

.phone-link:hover{
color:#0b1f4d;
}






.pulse{
width:28px;
height:28px;
border:3px solid #e53935;
border-radius:50%;
position:absolute;
top:180px;
left:48%;
animation:pulse 1.8s infinite;
}

.map-text{
padding:20px;
font-size:18px;
text-align:center;
color:#444;
}

@keyframes pulse{
0%{transform:scale(1);opacity:1;}
100%{transform:scale(4);opacity:0;}
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


.map-card{
text-decoration:none;
display:block;
color:inherit;
cursor:pointer;
}


.fake-map{
height:420px;
position:relative;
overflow:hidden;
background-color:#dce6f5;
background-image:
linear-gradient(90deg,rgba(255,255,255,0.35) 1px,transparent 1px),
linear-gradient(rgba(255,255,255,0.35) 1px,transparent 1px);
background-size:60px 60px;
}



.road-name{
position:absolute;
font-size:16px;
font-weight:bold;
color:#555;
background:rgba(255,255,255,0.75);
padding:6px 10px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.road-name1{
top:210px;
left:58%;
transform:rotate(-8deg);
}

.road-name2{
top:90px;
left:8%;
}

.road-name3{
bottom:70px;
left:8%;
}

.road-name4{
bottom:35px;
right:8%;
}

.building{
position:absolute;
width:55px;
height:40px;
background:#c9d1dc;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}




.footer{
background:#081733;
color:white;
margin-top:80px;
}

.footer-container{
max-width:1400px;
margin:auto;
padding:60px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
}

.footer-box h2{
font-size:32px;
margin-bottom:18px;
color:white;
}

.footer-box h3{
font-size:24px;
margin-bottom:18px;
color:#8faeff;
}

.footer-box p{
font-size:17px;
line-height:1.8;
color:#d6dfff;
margin-bottom:12px;
}

.footer-box a{
display:block;
text-decoration:none;
color:#d6dfff;
margin-bottom:12px;
font-size:17px;
transition:0.3s;
}

.footer-box a:hover{
color:white;
transform:translateX(6px);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.12);
text-align:center;
padding:22px;
font-size:15px;
color:#c7d3ff;
}
@media(max-width:768px){

/* GENEL */
body{
overflow-x:hidden;
}

/* HEADER */

header{
flex-direction:column;
align-items:center;
gap:18px;
padding:20px;
}

.logo{
font-size:22px;
gap:10px;
text-align:center;
}

.logo img{
width:48px;
height:48px;
}

nav{
text-align:center;
width:100%;
}

nav a{
display:inline-block;
margin:8px 10px;
font-size:16px;
}

/* HERO */

.hero-contact{
height:auto;
padding:65px 20px;
}

.hero-text h1{
font-size:42px;
margin-bottom:10px;
letter-spacing:1px;
}

.hero-text p{
font-size:17px;
line-height:1.6;
}

/* İLETİŞİM KARTLARI */

.contact-area{
padding:45px 20px;
gap:20px;
}

.info-card{
width:100%;
max-width:340px;
padding:30px 20px;
border-radius:18px;
}

.info-card h2{
font-size:26px;
}

.info-card p,
.info-card a,
.phone-link{
font-size:17px;
line-height:1.7;
}

.icon{
font-size:38px;
}

/* HARİTA */

.map-section{
padding:20px 20px 55px;
}

.map-card{
border-radius:18px;
}

.map-header{
font-size:22px;
padding:18px;
text-align:center;
}

.fake-map{
height:300px;
background-size:40px 40px;
}

.road-name{
font-size:12px;
padding:4px 7px;
}

.map-text{
font-size:16px;
padding:16px;
line-height:1.6;
}

/* FOOTER */

.footer{
margin-top:55px;
}

.footer-container{
padding:45px 20px;
gap:28px;
text-align:center;
}

.footer-box h2{
font-size:28px;
}

.footer-box h3{
font-size:22px;
}

.footer-box p{
font-size:16px;
line-height:1.7;
}

.footer-box a{
font-size:16px;
}

.footer-box a:hover{
transform:none;
}

.footer-bottom{
font-size:14px;
padding:18px;
}

}














/* =========================
   İLETİŞİM MOBİL EXTRA
========================= */

@media(max-width:768px){

/* HEADER */

header{
padding:16px;
flex-direction:column;
justify-content:center;
align-items:center;
gap:16px;
}

.logo{
font-size:22px;
text-align:center;
}

.logo img{
width:46px;
height:46px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

nav a{
margin:0;
font-size:14px;
}

/* HERO */

.hero-contact{
padding:90px 18px 70px;
min-height:auto;
}

.hero-text h1{
font-size:38px;
line-height:1.2;
}

.hero-text p{
font-size:15px;
line-height:1.8;
max-width:320px;
margin:auto;
}

/* CONTACT */

.contact-area{
padding:40px 18px;
gap:18px;
}

.info-card{
width:100%;
max-width:100%;
padding:28px 22px;
border-radius:22px;
}

.icon{
font-size:36px;
margin-bottom:12px;
}

.info-card h2{
font-size:24px;
margin-bottom:12px;
}

.info-card p,
.info-card a{
font-size:15px;
line-height:1.8;
word-break:break-word;
}

/* HARİTA */

.map-section{
padding:10px 18px 60px;
}

.map-card{
border-radius:22px;
overflow:hidden;
}

.map-header{
font-size:20px;
padding:16px;
text-align:center;
}

.fake-map{
height:240px;
background-size:35px 35px;
}

.road1{
height:50px;
top:100px;
}

.road2{
width:50px;
}

.pin,
.pulse{
width:22px;
height:22px;
top:110px;
left:46%;
}

.road-name{
font-size:10px;
padding:4px 6px;
border-radius:6px;
}

.building{
width:36px;
height:28px;
}

.map-text{
font-size:14px;
padding:15px;
line-height:1.7;
}

/* FOOTER */

.footer{
margin-top:50px;
}

.footer-container{
padding:40px 18px;
gap:26px;
text-align:center;
}

.footer-box{
align-items:center;
}

.footer-box h2{
font-size:27px;
}

.footer-box h3{
font-size:21px;
}

.footer-box p{
font-size:15px;
line-height:1.7;
}

.footer-box a{
font-size:15px;
}

.footer-box a:hover{
transform:none;
}

.footer-bottom{
font-size:13px;
padding:16px;
}

}

/* EXTRA KÜÇÜK TELEFON */

@media(max-width:480px){

.hero-text h1{
font-size:32px;
}

.hero-text p{
font-size:14px;
}

.fake-map{
height:210px;
}

.map-header{
font-size:18px;
}

.info-card h2{
font-size:22px;
}

}