/*
Theme Name: Usta Muhendis Teknik Hizmetler
*/

body{
margin:0;
font-family:Arial,sans-serif;
background:#05070d;
color:#fff;
overflow-x:hidden;
}

/* HEADER */
header{
min-height:100vh;
height:auto;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:radial-gradient(circle,#00E5FF22,#000);
}

/* BAŞLIK */
h1{
font-size: clamp(1.5rem, 6vw, 3.5rem);
background: linear-gradient(90deg,#00E5FF,#FF6B00);
-webkit-background-clip: text;
color: transparent;
animation: glow 2s infinite alternate;
white-space: normal;
border-right: none;
line-height:1.2;
word-break: break-word;
}

/* SADECE DESKTOP TYPING */
@media (min-width: 769px){
h1{
white-space: nowrap;
overflow: hidden;
border-right:2px solid #00E5FF;
animation: typing 3s steps(40,end), glow 2s infinite alternate;
}
}

/* MOBİL */
@media (max-width: 768px){
h1{
font-size: clamp(1.3rem, 8vw, 2.2rem);
padding: 0 10px;
}
}

/* ANİMASYONLAR */
@keyframes typing{
from{width:0}
to{width:100%}
}

@keyframes glow{
from{text-shadow:0 0 10px #00E5FF}
to{text-shadow:0 0 30px #FF6B00}
}

/* SECTIONS */
.section{padding:80px 20px}

/* CARDS */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:15px;
cursor:pointer;
transition:.4s;
}

.card:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 0 40px #00E5FF;
}

/* MODAL (DÜZELTİLDİ) */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
justify-content:center;
align-items:center;
z-index:999;
}

.modal-box{
pointer-events:auto;
background:rgba(20,20,20,0.95);
padding:30px;
border-radius:20px;
max-width:600px;
width:90%;
animation:zoomIn .3s forwards;
}

@keyframes zoomIn{
from{transform:scale(.8);opacity:0}
to{transform:scale(1);opacity:1}
}

.close-btn{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:22px;
}

/* BUTONLAR */
.btns{
position:fixed;
bottom:10px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
}

.btn{
position:relative;
background:#00E5FF;
padding:12px 18px;
border-radius:30px;
color:#000;
font-weight:bold;
text-decoration:none;
overflow:hidden;
transition:.3s;
box-shadow:0 0 10px #00E5FF55;
}

/* hover */
.btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 0 25px #00E5FF, 0 0 50px #00E5FF55;
}

/* ışık efekti */
.btn::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,#ffffff55,transparent);
transition:.6s;
}

.btn:hover::before{
left:100%;
}

/* ripple */
.ripple{
position:absolute;
width:10px;
height:10px;
background:#fff;
border-radius:50%;
transform:scale(0);
animation:rippleAnim .6s linear;
opacity:0.7;
pointer-events:none;
}

@keyframes rippleAnim{
to{
transform:scale(15);
opacity:0;
}
}

/* GRID */
.seo-container{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:40px;
max-width:1100px;
margin:80px auto;
padding:0 20px;
}

/* KUTULAR */
.seo-box{
display:flex;
flex-direction:column;
justify-content:center;

min-height:180px;
padding:30px;

border-radius:20px;

background:linear-gradient(145deg, rgba(0,229,255,0.08), rgba(255,107,0,0.05));
border:1px solid rgba(0,229,255,0.15);

text-align:center;

transition:.4s;
}

/* HOVER */
.seo-box:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,229,255,0.2);
}

/* BAŞLIK */
.seo-box strong{
font-size:18px;
color:#00E5FF;
margin-bottom:10px;
}

/* TEXT */
.seo-box p{
font-size:14.5px;
color:#ccc;
line-height:1.6;
margin:0;
}

/* MOBİL */
@media(max-width:768px){
.seo-container{
grid-template-columns:1fr;
gap:25px;
}

.seo-box{
min-height:auto;
padding:20px;
}
}





/* FOOTER */
.footer{
background:linear-gradient(to top, #000, #020a12);
padding:50px 20px 80px;
margin-top:80px;
border-top:1px solid rgba(0,229,255,0.1);
}

.footer-container{
max-width:1100px;
margin:auto;
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:20px;
}

/* BAŞLIK */
.footer-info h3{
color:#00E5FF;
font-size:22px;
margin-bottom:5px;
}

.footer-info p{
color:#aaa;
font-size:14px;
}

/* İLETİŞİM */
.footer-contact p{
margin:3px 0;
font-size:14px;
color:#ccc;
}

/* BUTONLAR */
.footer-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
}

/* BUTONLARIN DAHA ŞIK HALİ */
.footer .btn{
background:linear-gradient(135deg,#00E5FF,#00bcd4);
color:#000;
padding:10px 16px;
border-radius:30px;
font-size:14px;
box-shadow:0 0 15px #00E5FF55;
transition:.3s;
}

.footer .btn:hover{
transform:translateY(-3px);
box-shadow:0 0 25px #00E5FF;
}

/* MOBİL */
@media(max-width:768px){
.seo-container{
grid-template-columns:1fr !important;
}
}


.seo-container{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:40px;
justify-content:center;
}

/* SON KUTU ORTAYA */
.seo-container .seo-box:last-child{
grid-column: 1 / -1; /* ortala */
max-width:500px;
margin:0 auto;
}





