:root{
  --blue:#0b5ed7;
  --blue-dark:#073b82;
  --navy:#06172f;
  --sky:#eaf4ff;
  --soft:#f5f8fc;
  --white:#fff;
  --text:#475569;
  --title:#102033;
  --border:#dbe5f1;
  --shadow:0 20px 55px rgba(6,23,47,.13);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:var(--soft);
  color:var(--text);
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  width:100%;
  display:block;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(219,229,241,.8);
  transition:.3s;
}

.header.scrolled{
  box-shadow:0 12px 35px rgba(6,23,47,.12);
}

.navbar{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-icon{
  width:46px;
  height:46px;
  border-radius:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:22px;
}

.logo-text strong{
  display:block;
  color:var(--title);
  font-size:24px;
  line-height:1.1;
}

.logo-text span{
  color:var(--blue);
  font-size:13px;
  font-weight:700;
  letter-spacing:1.4px;
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.menu a{
  color:var(--title);
  font-weight:600;
  font-size:15px;
}

.menu a:hover{
  color:var(--blue);
}

.header-call{
  background:var(--blue);
  color:white!important;
  padding:12px 22px;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(11,94,215,.25);
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--sky);
  color:var(--blue);
  align-items:center;
  justify-content:center;
  font-size:25px;
  cursor:pointer;
}

/* HERO */

.hero{
  padding:130px 0 70px;
  background:
    radial-gradient(circle at top right,rgba(11,94,215,.16),transparent 35%),
    linear-gradient(180deg,#ffffff 0%,#eef6ff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}

.hero-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:white;
  border:1px solid var(--border);
  color:var(--blue);
  padding:9px 15px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  margin-bottom:22px;
}

.hero-label span{
  width:8px;
  height:8px;
  background:var(--blue);
  border-radius:50%;
}

.hero h1{
  color:var(--title);
  font-size:clamp(39px,5vw,66px);
  line-height:1.05;
  letter-spacing:-1.8px;
  margin-bottom:24px;
}

.hero h1 em{
  color:var(--blue);
  font-style:normal;
}

.hero p{
  font-size:19px;
  color:#52627a;
  max-width:620px;
  margin-bottom:32px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:14px;
  font-weight:800;
  transition:.3s;
}
@keyframes shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
.btn  img{
  width:25px;
  height:25px;
  color:#fff;
    animation: shake 0.8s infinite;
  vertical-align: middle;
  margin-right:10px;
}

.btn-blue{
  background:var(--blue);
  color:white;
  box-shadow:0 16px 35px rgba(11,94,215,.28);
}

.btn-light{
  background:white;
  color:var(--title);
  border:1px solid var(--border);
}

.btn:hover{
  transform:translateY(-3px);
}

.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.hero-mini div{
  background:white;
  border:1px solid var(--border);
  padding:16px;
  border-radius:18px;
  color:var(--title);
  font-weight:800;
  box-shadow:0 8px 20px rgba(6,23,47,.06);
}

.hero-image{
  position:relative;
}

.hero-image img{
  height:620px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.image-note{
  position:absolute;
  left:-28px;
  bottom:34px;
  width:300px;
  background:white;
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.image-note strong{
  color:var(--title);
  display:block;
  margin-bottom:6px;
}

.image-note span{
  color:var(--blue);
  font-weight:900;
}

/* STRIP */

.info-strip{
  background:var(--navy);
  color:white;
}

.strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.strip-item{
  padding:28px;
  border-right:1px solid rgba(255,255,255,.1);
}

.strip-item:last-child{
  border-right:none;
}

.strip-item strong{
  display:block;
  font-size:28px;
}

.strip-item span{
  color:#b8c7dd;
}

/* SECTION */

section{
  padding:90px 0;
}

.section-title{
  max-width:760px;
  margin:0 auto 46px;
  text-align:center;
}

.section-title small{
  color:var(--blue);
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}

.section-title h2{
  margin-top:10px;
  color:var(--title);
  font-size:clamp(31px,4vw,46px);
  line-height:1.16;
}

.section-title p{
  margin-top:15px;
}

/* ABOUT */

.about-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:stretch;
}

.about-side{
  background:var(--blue);
  color:white;
  border-radius:30px;
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:420px;
}

.about-side h2{
  font-size:38px;
  line-height:1.18;
  margin-bottom:20px;
}

.about-side p{
  color:#e9f2ff;
}

.about-boxes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.about-box{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 30px rgba(6,23,47,.07);
}

.about-box h3{
  color:var(--title);
  margin-bottom:10px;
}

/* SERVICES */

.services{
  background:white;
}

.service-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.service-item{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:22px;
  background:#f8fbff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:26px;
  transition:.3s;
}

.service-item:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.service-no{
  width:78px;
  height:78px;
  border-radius:22px;
  background:var(--sky);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:900;
}

.service-item h3{
  color:var(--title);
  margin-bottom:8px;
}

/* PROCESS */

.process-layout{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:36px;
  align-items:start;
}

.process-sticky{
  position:sticky;
  top:110px;
  background:var(--navy);
  color:white;
  border-radius:30px;
  padding:34px;
}

.process-sticky h2{
  font-size:34px;
  line-height:1.2;
  margin-bottom:15px;
}

.process-sticky p{
  color:#c8d6eb;
}

.steps{
  display:grid;
  gap:18px;
}

.step{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  display:grid;
  grid-template-columns:60px 1fr;
  gap:20px;
  box-shadow:0 10px 28px rgba(6,23,47,.06);
}

.step span{
  width:60px;
  height:60px;
  border-radius:18px;
  background:var(--blue);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:22px;
}

.step h3{
  color:var(--title);
  margin-bottom:6px;
}

/* DOCUMENTS */

.docs{
  background:#eef6ff;
}

.doc-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.doc{
  background:white;
  padding:30px;
  border-radius:26px;
  border:1px solid var(--border);
}

.doc h3{
  color:var(--title);
  margin-bottom:10px;
}

.legal-note{
  margin-top:28px;
  background:white;
  border-radius:20px;
  padding:24px;
  border-left:6px solid var(--blue);
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-grid img{
  height:240px;
  object-fit:cover;
  border-radius:22px;
  transition:.3s;
}

.gallery-grid img:nth-child(2){
  grid-column:span 2;
}

.gallery-grid img:hover{
  transform:scale(1.025);
  filter:saturate(1.1) brightness(.92);
}

/* FAQ */

.faq{
  background:white;
}

.faq-list{
  max-width:880px;
  margin:auto;
}

.faq-item{
  border-bottom:1px solid var(--border);
}

.faq-q{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  color:var(--title);
  font-weight:900;
  font-size:18px;
}

.faq-q span{
  color:var(--blue);
  font-size:26px;
}

.faq-a{
  display:none;
  padding-bottom:22px;
}

.faq-item.open .faq-a{
  display:block;
}

/* CONTACT */

.contact{
  background:var(--navy);
  color:white;
}

.contact-card{
  background:white;
  color:var(--text);
  border-radius:34px;
  padding:38px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
}

.contact-info{
  background:var(--sky);
  border-radius:26px;
  padding:30px;
}

.contact-info h2{
  color:var(--title);
  margin-bottom:18px;
}

.contact-info p{
  margin-bottom:12px;
}

.contact-info strong{
  color:var(--blue-dark);
}

.form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

input,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:15px;
  padding:16px;
  font-size:15px;
  outline:none;
	margin-bottom:10px;
}

textarea{
  grid-column:1/-1;
  min-height:135px;
}

button{
  grid-column:1/-1;
  background:var(--blue);
  color:white;
  border:none;
  border-radius:15px;
  padding:17px;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}

/* FOOTER */

.footer{
  background:#030b18;
  color:#aab8cc;
  text-align:center;
  padding:26px;
}

/* MOBILE BAR */


.mobile-bar{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:950;
  background:var(--blue);
  color:white;
  grid-template-columns:repeat(1,1fr);
  box-shadow:0 -10px 30px rgba(0,0,0,.28);
}

.mobile-bar a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:15px 12px;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.phone-number{
    line-height:1;
}

.phone-wave{
    position:relative;
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.phone-wave img{
    width:24px;
    height:24px;
    animation:phoneShake 1.3s infinite;
    position:relative;
    z-index:5;
}

.phone-wave::before,
.phone-wave::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.75);
    animation:phoneRipple 2s infinite;
}

.phone-wave::after{
    animation-delay:1s;
}

@keyframes phoneRipple{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    100%{
        transform:scale(2.1);
        opacity:0;
    }

}

@keyframes phoneShake{

    0%,100%{
        transform:rotate(0deg);
    }

    20%{
        transform:rotate(-18deg);
    }

    40%{
        transform:rotate(18deg);
    }

    60%{
        transform:rotate(-18deg);
    }

    80%{
        transform:rotate(18deg);
    }

}

/* ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:.75s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1000px){
  .hero-grid,
  .about-wrap,
  .process-layout,
  .contact-card{
    grid-template-columns:1fr;
  }

  .hero-image img{
    height:460px;
  }

  .process-sticky{
    position:relative;
    top:auto;
  }

  .strip-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-grid img:nth-child(2){
    grid-column:auto;
  }
}

@media(max-width:820px){
  body{
    padding-bottom:55px;
  }

  .menu-btn{
    display:flex;
  }

  .menu{
    display:none;
    position:absolute;
    top:82px;
    left:4%;
    width:92%;
    background:white;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    border-radius:22px;
    padding:24px;
    flex-direction:column;
    align-items:flex-start;
  }

  .menu.active{
    display:flex;
  }

  .mobile-bar{
    display:grid;
  }

  .image-note{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .about-boxes,
  .service-list,
  .doc-row{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .hero{
    padding-top:115px;
  }

  .hero-mini,
  .strip-grid,
  .gallery-grid,
  .form{
    grid-template-columns:1fr;
  }

  section{
    padding:68px 0;
  }

  .service-item,
  .step{
    grid-template-columns:1fr;
  }

  .contact-card{
    padding:24px;
  }
}
.linkler a{
color:var(--blue);
}
.linkler a:hover{
color:var(--white);
}



.cookie-notice{
  position:fixed;
  right:24px;
  bottom:82px;
  width:430px;
  max-width:calc(100% - 30px);
  background:linear-gradient(135deg,#ffffff,#f0f7ff);
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:0 24px 70px rgba(6,23,47,.22);
  padding:24px;
  z-index:99999;
  display:none;
  animation:cookieSlide .45s ease;
}

.cookie-notice.show{
  display:block;
}

.cookie-head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:12px;
}

.cookie-badge{
  width:48px;
  height:48px;
  border-radius:16px;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  flex-shrink:0;
}

.cookie-head strong{
  color:var(--title);
  font-size:20px;
}

.cookie-notice p{
  font-size:14px;
  color:#52627a;
  margin-bottom:18px;
}

.cookie-notice p a{
  color:var(--blue);
  font-weight:800;
}

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

.cookie-actions button,
.cookie-actions a{
  border:none;
  cursor:pointer;
  padding:12px 17px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
}

.cookie-ok{
  background:var(--blue);
  color:#fff;
}

.cookie-more{
  background:#eaf4ff;
  color:var(--blue-dark);
}

@keyframes cookieSlide{
  from{
    opacity:0;
    transform:translateX(40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@media(max-width:600px){
  .cookie-notice{
    left:12px;
    right:12px;
    width:auto;
    bottom:72px;
  }
}


.metinbaslik{
padding:40px 0;
}

.metinbaslik h2{
margin:0px;
padding:0px;
font-size:22px;
}

.metinaciklama{
width:100%;
height:auto;
margin:0px;
padding:0px;
}

.container2{
    width:96%;
    max-width:1180px;
height:auto;
    margin-left:auto;
    margin-right:auto;
}




/* HİZMET KARTLARI */

.galeri{
    width:min(1180px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.hizmetlerimizdiskatman,
.hizmetlerimizdiskatman2{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(6,23,47,.08);
    transition:.35s;
}

.hizmetlerimizdiskatman:hover,
.hizmetlerimizdiskatman2:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(6,23,47,.15);
}

.hizmetlerimizresim{
    overflow:hidden;
}

.hizmetlerimizresim img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.hizmetlerimizdiskatman:hover img,
.hizmetlerimizdiskatman2:hover img{
    transform:scale(1.08);
}

.hizmetlerimizbaslik{
    padding:22px 24px 10px;
}

.hizmetlerimizbaslik h2{
    margin:0;
    color:var(--title);
    font-size:24px;
    line-height:1.3;
}

.hizmetlerimizyazi{
    padding:0 24px 28px;
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}

@media(max-width:900px){

    .galeri{
        grid-template-columns:1fr;
    }

    .hizmetlerimizresim img{
        height:220px;
    }

}
