.page-hero{
  background:
    linear-gradient(90deg,rgba(7,31,73,.92),rgba(11,61,145,.84)),
    url("../img/page-hero.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:75px 0;
}

.page-hero span{
  color:#93c5fd;
  font-weight:800;
  letter-spacing:1px;
}

.page-hero h1{
  font-size:46px;
  font-weight:900;
  margin:10px 0;
}

.page-hero p{
  max-width:720px;
  color:#e2e8f0;
  font-size:18px;
}

.page-hero .breadcrumb a{
  color:#bfdbfe;
}

.page-hero .breadcrumb-item.active{
  color:#fff;
}

.mini-info-box{
  display:flex;
  gap:14px;
  align-items:center;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:16px;
  height:100%;
}

.mini-info-box i{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex:0 0 46px;
}

.mini-info-box h6{
  font-weight:800;
  margin:0;
}

.mini-info-box small{
  color:var(--muted);
}

.counter-box{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:30px 15px;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.counter-box h3{
  font-size:38px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:5px;
}

.counter-box p{
  color:var(--muted);
  margin:0;
  font-weight:700;
}

.nav-link.active{
  color:var(--primary) !important;
}

@media(max-width:575px){
  .page-hero{
    padding:55px 0;
  }

  .page-hero h1{
    font-size:34px;
  }
}

.gallery-filter{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-btn{
  border:1px solid #dbe3ef;
  background:#fff;
  color:var(--dark);
  padding:11px 20px;
  border-radius:999px;
  font-weight:800;
  transition:.25s;
}

.gallery-btn:hover,
.gallery-btn.active{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  border-color:transparent;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 14px 35px rgba(15,23,42,.12);
  background:#000;
}

.gallery-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.35s;
  display:block;
}

.gallery-card:hover img{
  transform:scale(1.08);
  opacity:.55;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  color:#fff;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
  opacity:0;
  transition:.3s;
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

.gallery-overlay h5{
  font-weight:900;
  margin-bottom:5px;
}

.gallery-overlay p{
  margin-bottom:15px;
  color:#e2e8f0;
}

.gallery-view{
  width:46px;
  height:46px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:var(--primary);
  font-size:18px;
}

@media(max-width:575px){
  .gallery-card img{
    height:230px;
  }

  .gallery-overlay{
    opacity:1;
  }
}

.contact-info-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  height:100%;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
  transition:.25s;
}

.contact-info-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.contact-info-card i{
  width:62px;
  height:62px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  margin-bottom:18px;
}

.contact-info-card h5{
  font-weight:900;
  margin-bottom:8px;
}

.contact-info-card p{
  color:var(--muted);
  margin-bottom:12px;
}

.contact-info-card a{
  color:var(--primary);
  font-weight:800;
}

.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-list li{
  display:flex;
  gap:15px;
  align-items:flex-start;
  margin-bottom:20px;
}

.contact-list li i{
  width:45px;
  height:45px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 45px;
}

.contact-list strong{
  display:block;
  color:var(--dark);
  font-weight:900;
}

.contact-list span{
  color:var(--muted);
}

.map-box{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,.14);
}

/* MEGA MENU */
.mega-location{
  position:relative;
}

.location-menu{
  width:780px;
  padding:0;
  border:0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
  margin-top:12px;
}

.location-layout{
  display:grid;
  grid-template-columns:250px 265px 265px;
  background:#fff;
  min-height:310px;
}

.location-col{
  padding:14px;
}

.location-cities{
  background:#f8fafc;
  border-right:1px solid #e5e7eb;
}

.location-districts{
  background:#fff;
  border-right:1px solid #e5e7eb;
}

.location-neighborhoods{
  background:#f8fafc;
}

.location-title{
  font-size:12px;
  font-weight:950;
  color:#0b3d91;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:10px;
  padding:0 8px 8px;
  border-bottom:1px solid #e5e7eb;
}

.location-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:12px;
  color:#0f172a;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:5px;
  transition:.2s;
}

.location-link:hover,
.location-link.active{
  background:#0b3d91;
  color:#fff;
}

.location-link i{
  font-size:11px;
  opacity:.75;
}

.district-group,
.neighborhood-group{
  display:none;
}

.district-group.active,
.neighborhood-group.active{
  display:block;
}

.empty-location{
  display:block;
  padding:11px 13px;
  color:#94a3b8;
  font-size:13px;
  font-weight:700;
}

@media(min-width:992px){
  .mega-location:hover > .dropdown-menu{
    display:block;
  }
}

@media(max-width:991px){
  .location-menu{
    width:100%;
    box-shadow:none;
    border-radius:14px;
  }

  .location-layout{
    grid-template-columns:1fr;
  }

  .district-group,
  .neighborhood-group{
    display:block;
  }

  .location-title{
    margin-top:10px;
  }
}

/* =========================================
   NAVBAR DÜZELTME
========================================= */

.custom-navbar{
  background:#fff;
  box-shadow:0 5px 25px rgba(15,23,42,.08);
  z-index:999;
}

.custom-navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.custom-navbar .navbar-brand{
  margin-right:18px;
  flex:0 0 auto;
}

.custom-navbar .navbar-brand img{
  height:54px !important;
  width:auto;
  max-width:180px;
  object-fit:contain;
}

.custom-navbar .navbar-collapse{
  flex-grow:0;
}

.custom-navbar .navbar-nav{
  align-items:center;
  gap:2px;
}

.custom-navbar .nav-item{
  position:relative;
}

.custom-navbar .nav-link{
  padding:14px 12px !important;
  font-size:14px;
  font-weight:800;
  line-height:1.2;
  white-space:nowrap;
  color:#0f172a !important;
  display:block;
  transition:.2s;
}

.custom-navbar .nav-link:hover{
  color:#0b3d91 !important;
}

.custom-navbar .dropdown-toggle::after{
  margin-left:6px;
  vertical-align:middle;
}

.custom-navbar .btn-main{
  padding:12px 18px;
  font-size:14px;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
}

/* TABLET */
@media(max-width:1200px){

  .custom-navbar .nav-link{
    font-size:13px;
    padding:14px 8px !important;
  }

  .custom-navbar .btn-main{
    padding:11px 14px;
    font-size:13px;
  }

  .custom-navbar .navbar-brand img{
    height:50px !important;
    max-width:165px;
  }
}

/* MOBİL */
@media(max-width:991px){

  .custom-navbar .navbar-collapse{
    margin-top:14px;
  }

  .custom-navbar .navbar-nav{
    align-items:stretch;
    gap:0;
  }

  .custom-navbar .nav-link{
    padding:12px 0 !important;
    font-size:15px;
    white-space:normal;
  }

  .custom-navbar .btn-main{
    width:100%;
    margin-top:10px;
    justify-content:center;
  }

  .custom-navbar .navbar-brand img{
    height:48px !important;
  }
}
.service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:26px;
    height:100%;
    transition:.25s;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
    border-color:#bfdbfe;
}

.quote-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 20px 50px rgba(15,23,42,.14);
}

.quote-card .form-control,
.quote-card .form-select{
    padding:12px;
    border-radius:10px;
    border:1px solid #dbe3ef;
    min-height:48px;
}

.quote-card textarea.form-control{
    min-height:120px;
}

.form-label{
    font-weight:700;
    color:#334155;
}

.why-box{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    height:100%;
}

.check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.check-list li{
    margin-bottom:13px;
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.check-list i{
    color:var(--primary);
    margin-top:4px;
}

.city-badge{
    display:inline-block;
    padding:9px 18px;
    border:1px solid #dbe3ef;
    border-radius:8px;
    background:#fff;
    margin:5px;
    font-weight:600;
    color:#334155;
}

.process-card{
    text-align:center;
    padding:28px 18px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e5e7eb;
    height:100%;
}

.process-card .num{
    width:42px;
    height:42px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    margin-bottom:12px;
}

.gallery img{
    height:210px;
    width:100%;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(15,23,42,.12);
}

footer{
    background:#061936;
    color:#cbd5e1;
    padding:60px 0 20px;
}

footer h5{
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

footer ul li{
    margin-bottom:9px;
}

footer a{
    color:#cbd5e1;
}

footer a:hover{
    color:#fff;
}